diff --git a/.travis.yml b/.travis.yml
index f5dd9ec6..c401f889 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,12 +1,7 @@
language: java
jdk:
- - oraclejdk9
-
-addons:
- apt:
- packages:
- - oracle-java9-installer
+ - oraclejdk10
script: ./gradlew build --daemon
@@ -17,4 +12,7 @@ before_cache:
cache:
directories:
- $HOME/.gradle/caches/
- - $HOME/.gradle/wrapper/
\ No newline at end of file
+ - $HOME/.gradle/wrapper/
+
+notifications:
+ email: false
\ No newline at end of file
diff --git a/Commons/build.gradle b/Commons/build.gradle
index d849cc2a..f25e1e29 100644
--- a/Commons/build.gradle
+++ b/Commons/build.gradle
@@ -4,7 +4,7 @@ plugins {
id "eclipse"
}
-version '1.3.0'
+version '1.4'
ext.moduleName = 'com.l2jbr.commons'
@@ -19,9 +19,16 @@ sourceSets {
}
}
+
+
dependencies {
- compile 'com.mchange:c3p0:0.9.5.2'
compile 'org.slf4j:slf4j-api:1.8.0-beta2'
+ compile 'org.springframework.data:spring-data-jdbc:1.0.0.M3'
+ compile 'com.zaxxer:HikariCP:3.2.0'
+
+ runtime ('mysql:mysql-connector-java:8.0.11') {
+ transitive = false
+ }
}
jar {
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/Config.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/Config.java
index bebfa3d0..c1b04313 100644
--- a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/Config.java
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/Config.java
@@ -37,6 +37,8 @@
*/
public final class Config {
protected static final Logger _log = LoggerFactory.getLogger(Config.class.getName());
+
+
/**
* Debug/release mode
*/
@@ -102,6 +104,8 @@ public final class Config {
*/
public static int DATABASE_MAX_CONNECTIONS;
+ public static int DATABASE_MAX_IDLE_TIME;
+
/**
* Maximum number of players allowed to play simultaneously on server
*/
@@ -1466,19 +1470,6 @@ public static enum L2WalkerAllowed {
*/
public static int DUMP_INTERVAL_SECONDS = 60;
- /**
- * Enumeration for type of ID Factory
- */
- public static enum IdFactoryType {
- Compaction,
- BitSet,
- Stack
- }
-
- /**
- * ID Factory type
- */
- public static IdFactoryType IDFACTORY_TYPE;
/**
* Check for bad ID ?
*/
@@ -1908,6 +1899,7 @@ public static void load() {
DATABASE_LOGIN = serverSettings.getProperty("Login", "root");
DATABASE_PASSWORD = serverSettings.getProperty("Password", "");
DATABASE_MAX_CONNECTIONS = Integer.parseInt(serverSettings.getProperty("MaximumDbConnections", "10"));
+ DATABASE_MAX_IDLE_TIME = Integer.parseInt(serverSettings.getProperty("MaximumDbIdleTime", "0"));
DATAPACK_ROOT = new File(serverSettings.getProperty("DatapackRoot", ".")).getCanonicalFile();
@@ -2100,7 +2092,6 @@ public static void load() {
MAP_TYPE = ObjectMapType.valueOf(idSettings.getProperty("L2Map", "WorldObjectMap"));
SET_TYPE = ObjectSetType.valueOf(idSettings.getProperty("L2Set", "WorldObjectSet"));
- IDFACTORY_TYPE = IdFactoryType.valueOf(idSettings.getProperty("IDFactory", "Compaction"));
BAD_ID_CHECKING = Boolean.valueOf(idSettings.getProperty("BadIdChecking", "True"));
} catch (Exception e) {
e.printStackTrace();
@@ -2735,7 +2726,8 @@ public static void load() {
DATABASE_LOGIN = serverSettings.getProperty("Login", "root");
DATABASE_PASSWORD = serverSettings.getProperty("Password", "");
DATABASE_MAX_CONNECTIONS = Integer.parseInt(serverSettings.getProperty("MaximumDbConnections", "10"));
-
+ DATABASE_MAX_IDLE_TIME = Integer.parseInt(serverSettings.getProperty("MaximumDbIdleTime", "0"));
+
SHOW_LICENCE = Boolean.parseBoolean(serverSettings.getProperty("ShowLicence", "true"));
IP_UPDATE_TIME = Integer.parseInt(serverSettings.getProperty("IpUpdateTime", "15"));
FORCE_GGAUTH = Boolean.parseBoolean(serverSettings.getProperty("ForceGGAuth", "false"));
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/L2DatabaseFactory.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/L2DatabaseFactory.java
deleted file mode 100644
index 90d69585..00000000
--- a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/L2DatabaseFactory.java
+++ /dev/null
@@ -1,242 +0,0 @@
-/*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- * 02111-1307, USA.
- *
- * http://www.gnu.org/copyleft/gpl.html
- */
-package com.l2jbr.commons;
-
-import com.mchange.v2.c3p0.ComboPooledDataSource;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-import java.sql.Connection;
-import java.sql.SQLException;
-
-
-public class L2DatabaseFactory
-{
- static Logger _log = LoggerFactory.getLogger(L2DatabaseFactory.class.getName());
-
- public static enum ProviderType
- {
- MySql,
- MsSql
- }
-
- // =========================================================
- // Data Field
- private static L2DatabaseFactory _instance;
- private ProviderType _providerType;
- private ComboPooledDataSource _source;
-
- // =========================================================
- // Constructor
- public L2DatabaseFactory() throws SQLException
- {
- try
- {
- if (Config.DATABASE_MAX_CONNECTIONS < 2)
- {
- Config.DATABASE_MAX_CONNECTIONS = 2;
- _log.warn("at least " + Config.DATABASE_MAX_CONNECTIONS + " db connections are required.");
- }
-
- _source = new ComboPooledDataSource();
- _source.setAutoCommitOnClose(true);
-
- _source.setInitialPoolSize(10);
- _source.setMinPoolSize(10);
- _source.setMaxPoolSize(Config.DATABASE_MAX_CONNECTIONS);
-
- _source.setAcquireRetryAttempts(0); // try to obtain connections indefinitely (0 = never quit)
- _source.setAcquireRetryDelay(500); // 500 miliseconds wait before try to acquire connection again
- _source.setCheckoutTimeout(0); // 0 = wait indefinitely for new connection
- // if pool is exhausted
- _source.setAcquireIncrement(5); // if pool is exhausted, get 5 more connections at a time
- // cause there is a "long" delay on acquire connection
- // so taking more than one connection at once will make connection pooling
- // more effective.
-
- // this "connection_test_table" is automatically created if not already there
- _source.setAutomaticTestTable("connection_test_table");
- _source.setTestConnectionOnCheckin(false);
-
- // testing OnCheckin used with IdleConnectionTestPeriod is faster than testing on checkout
-
- _source.setIdleConnectionTestPeriod(3600); // test idle connection every 60 sec
- _source.setMaxIdleTime(0); // 0 = idle connections never expire
- // *THANKS* to connection testing configured above
- // but I prefer to disconnect all connections not used
- // for more than 1 hour
-
- // enables statement caching, there is a "semi-bug" in c3p0 0.9.0 but in 0.9.0.2 and later it's fixed
- _source.setMaxStatementsPerConnection(100);
-
- _source.setBreakAfterAcquireFailure(false); // never fail if any way possible
- // setting this to true will make
- // c3p0 "crash" and refuse to work
- // till restart thus making acquire
- // errors "FATAL" ... we don't want that
- // it should be possible to recover
- _source.setDriverClass(Config.DATABASE_DRIVER);
- _source.setJdbcUrl(Config.DATABASE_URL);
- _source.setUser(Config.DATABASE_LOGIN);
- _source.setPassword(Config.DATABASE_PASSWORD);
-
- /* Test the connection */
- _source.getConnection().close();
-
- if (Config.DEBUG)
- {
- _log.debug("Database Connection Working");
- }
-
- if (Config.DATABASE_DRIVER.toLowerCase().contains("microsoft"))
- {
- _providerType = ProviderType.MsSql;
- }
- else
- {
- _providerType = ProviderType.MySql;
- }
- }
- catch (SQLException x)
- {
- if (Config.DEBUG)
- {
- _log.debug("Database Connection FAILED");
- }
- // rethrow the exception
- throw x;
- }
- catch (Exception e)
- {
- if (Config.DEBUG)
- {
- _log.debug("Database Connection FAILED");
- }
- throw new SQLException("could not init DB connection:" + e);
- }
- }
-
- // =========================================================
- // Method - Public
- public final String prepQuerySelect(String[] fields, String tableName, String whereClause, boolean returnOnlyTopRecord)
- {
- String msSqlTop1 = "";
- String mySqlTop1 = "";
- if (returnOnlyTopRecord)
- {
- if (getProviderType() == ProviderType.MsSql)
- {
- msSqlTop1 = " Top 1 ";
- }
- if (getProviderType() == ProviderType.MySql)
- {
- mySqlTop1 = " Limit 1 ";
- }
- }
- String query = "SELECT " + msSqlTop1 + safetyString(fields) + " FROM " + tableName + " WHERE " + whereClause + mySqlTop1;
- return query;
- }
-
- public void shutdown()
- {
- try
- {
- _source.close();
- }
- catch (Exception e)
- {
- _log.info( "", e);
- }
- try
- {
- _source = null;
- }
- catch (Exception e)
- {
- _log.info( "", e);
- }
- }
-
- public final String safetyString(String[] whatToCheck)
- {
- // NOTE: Use brace as a safty percaution just incase name is a reserved word
- String braceLeft = "`";
- String braceRight = "`";
- if (getProviderType() == ProviderType.MsSql)
- {
- braceLeft = "[";
- braceRight = "]";
- }
-
- String result = "";
- for (String word : whatToCheck)
- {
- if (result != "")
- {
- result += ", ";
- }
- result += braceLeft + word + braceRight;
- }
- return result;
- }
-
- // =========================================================
- // Property - Public
- public static L2DatabaseFactory getInstance() throws SQLException
- {
- if (_instance == null)
- {
- _instance = new L2DatabaseFactory();
- }
- return _instance;
- }
-
- public Connection getConnection() // throws SQLException
- {
- Connection con = null;
-
- while (con == null)
- {
- try
- {
- con = _source.getConnection();
- }
- catch (SQLException e)
- {
- _log.warn("L2DatabaseFactory: getConnection() failed, trying again " + e);
- }
- }
- return con;
- }
-
- public int getBusyConnectionCount() throws SQLException
- {
- return _source.getNumBusyConnectionsDefaultUser();
- }
-
- public int getIdleConnectionCount() throws SQLException
- {
- return _source.getNumIdleConnectionsDefaultUser();
- }
-
- public final ProviderType getProviderType()
- {
- return _providerType;
- }
-}
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/crypt/NewCrypt.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/crypt/NewCrypt.java
index 0a201fb1..87f69f94 100644
--- a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/crypt/NewCrypt.java
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/crypt/NewCrypt.java
@@ -77,7 +77,7 @@ public static boolean verifyChecksum(byte[] raw, final int offset, final int siz
chksum ^= check;
}
-
+
check = raw[i] & 0xff;
check |= (raw[i + 1] << 8) & 0xff00;
check |= (raw[i + 2] << 0x10) & 0xff0000;
@@ -130,7 +130,10 @@ public static void encXORPass(byte[] raw, int key)
}
/**
- * Packet is first XOR encoded with key Then, the last 4 bytes are overwritten with the the XOR "key". Thus this assume that there is enough room for the key to fit without overwriting data.
+ * Packet is first XOR encoded with key
+ * Then, the last 4 bytes are overwritten with the the XOR "key".
+ * Thus this assume that there is enough room for the key to fit without overwriting data.
+ *
* @param raw The raw bytes to be encrypted
* @param offset The begining of the data to be encrypted
* @param size Length of the data to be encrypted
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/AccountRepository.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/AccountRepository.java
new file mode 100644
index 00000000..003d9992
--- /dev/null
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/AccountRepository.java
@@ -0,0 +1,29 @@
+package com.l2jbr.commons.database;
+
+import com.l2jbr.commons.database.model.Account;
+import org.springframework.data.jdbc.repository.query.Modifying;
+import org.springframework.data.jdbc.repository.query.Query;
+import org.springframework.data.repository.CrudRepository;
+import org.springframework.data.repository.query.Param;
+
+import java.util.Optional;
+
+public interface AccountRepository extends CrudRepository {
+
+ @Modifying
+ @Query("REPLACE accounts (login, password, access_level) values (:login, :password, :accessLevel)")
+ int createOrUpdateAccount(@Param("login") String login, @Param("password") String password, @Param("accessLevel") short accessLevel);
+
+ @Modifying
+ @Query("UPDATE accounts SET access_level=:accessLevel WHERE login=:login")
+ int updateAccessLevel(@Param("login") String login, @Param("accessLevel") int acessLevel);
+
+ @Modifying
+ @Query("UPDATE accounts SET lastServer=:server WHERE login=:login")
+ int updateLastServer(@Param("login") String login, @Param("server") int server);
+
+ @Query("SELECT * FROM accounts WHERE login=:login")
+ Optional findByLogin(@Param("login") String login);
+
+}
+
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/AnnotationNamingStrategy.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/AnnotationNamingStrategy.java
new file mode 100644
index 00000000..46dc2f5d
--- /dev/null
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/AnnotationNamingStrategy.java
@@ -0,0 +1,35 @@
+package com.l2jbr.commons.database;
+
+import com.l2jbr.commons.database.annotation.Column;
+import com.l2jbr.commons.database.annotation.Table;
+import org.springframework.data.jdbc.mapping.model.JdbcPersistentProperty;
+import org.springframework.data.jdbc.mapping.model.NamingStrategy;
+
+import static java.util.Objects.nonNull;
+
+public class AnnotationNamingStrategy implements NamingStrategy {
+
+ @Override
+ public String getTableName(Class> type) {
+ Table tableAnnotation = type.getAnnotation(Table.class);
+ if(nonNull(tableAnnotation)) {
+ return tableAnnotation.value();
+ }
+ return type.getSimpleName();
+ }
+
+ @Override
+ public String getColumnName(JdbcPersistentProperty property) {
+ Column columnAnnotation = property.getField().getAnnotation(Column.class);
+ if(nonNull(columnAnnotation)) {
+ return columnAnnotation.value();
+ }
+ return property.getName();
+ }
+
+ @Override
+ public String getReverseColumnName(JdbcPersistentProperty property) {
+ return getColumnName(property);
+
+ }
+}
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/DatabaseAccess.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/DatabaseAccess.java
new file mode 100644
index 00000000..cf99048c
--- /dev/null
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/DatabaseAccess.java
@@ -0,0 +1,43 @@
+package com.l2jbr.commons.database;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.data.repository.Repository;
+
+import java.sql.SQLException;
+import java.util.LinkedHashMap;
+import java.util.Map;
+
+import static java.util.Objects.nonNull;
+
+public class DatabaseAccess {
+
+ private static Logger logger = LoggerFactory.getLogger(DatabaseAccess.class);
+
+ private static Map, Repository> repositories = new LinkedHashMap<>();
+
+ public static T getRepository(Class repositoryClass) {
+ if(repositories.containsKey(repositoryClass)) {
+ return repositoryClass.cast(repositories.get(repositoryClass));
+ }
+ T repository = null;
+ try {
+ repository = L2DatabaseFactory.getInstance().getRepository(repositoryClass);
+ if(nonNull(repository)) {
+ repositories.put(repositoryClass, repository);
+ }
+ } catch (Exception e) {
+ logger.error("Error accessing Database", e);
+ }
+ return repository;
+ }
+
+
+ public static void shutdown() {
+ try {
+ L2DatabaseFactory.getInstance().shutdown();
+ } catch (SQLException e) {
+ logger.warn(e.getLocalizedMessage(), e);
+ }
+ }
+}
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/DatabaseContextConfiguration.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/DatabaseContextConfiguration.java
new file mode 100644
index 00000000..d233ac3e
--- /dev/null
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/DatabaseContextConfiguration.java
@@ -0,0 +1,83 @@
+package com.l2jbr.commons.database;
+
+import com.l2jbr.commons.Config;
+import com.l2jbr.commons.database.model.Entity;
+import com.zaxxer.hikari.HikariConfig;
+import com.zaxxer.hikari.HikariDataSource;
+import org.springframework.context.ApplicationListener;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.data.jdbc.mapping.event.AfterLoadEvent;
+import org.springframework.data.jdbc.mapping.event.AfterSaveEvent;
+import org.springframework.data.jdbc.mapping.event.WithEntity;
+import org.springframework.data.jdbc.mapping.model.NamingStrategy;
+import org.springframework.data.jdbc.repository.config.EnableJdbcRepositories;
+import org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations;
+import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;
+
+import javax.sql.DataSource;
+import java.util.Optional;
+
+@Configuration
+@EnableJdbcRepositories({"com.l2jbr.commons.database", "com.l2jbr.gameserver.model.entity.database.repository"})
+public class DatabaseContextConfiguration {
+
+ @Bean
+ public HikariDataSource dataSource() {
+ HikariConfig dataSourceConfig = new HikariConfig();
+ dataSourceConfig.addDataSourceProperty("driverClassName", Config.DATABASE_DRIVER);
+ dataSourceConfig.setJdbcUrl(Config.DATABASE_URL);
+ dataSourceConfig.setUsername(Config.DATABASE_LOGIN);
+ dataSourceConfig.setPassword(Config.DATABASE_PASSWORD);
+ dataSourceConfig.addDataSourceProperty("maximumPoolSize", Config.DATABASE_MAX_CONNECTIONS);
+ dataSourceConfig.addDataSourceProperty("idleTimeout", Config.DATABASE_MAX_IDLE_TIME); // 0 = idle connections never expire
+ dataSourceConfig.addDataSourceProperty("cachePrepStmts", true);
+ dataSourceConfig.addDataSourceProperty("prepStmtCacheSize", 250);
+ dataSourceConfig.addDataSourceProperty("prepStmtCacheSqlLimit", 2048);
+ dataSourceConfig.addDataSourceProperty("useServerPrepStmts", true);
+ dataSourceConfig.addDataSourceProperty("useLocalSessionState", true);
+ dataSourceConfig.addDataSourceProperty("useLocalTransactionState", true);
+ dataSourceConfig.addDataSourceProperty("rewriteBatchedStatements", true);
+ dataSourceConfig.addDataSourceProperty("cacheServerConfiguration", true);
+ dataSourceConfig.addDataSourceProperty("cacheResultSetMetadata", true);
+ dataSourceConfig.addDataSourceProperty("maintainTimeStats", true);
+ dataSourceConfig.addDataSourceProperty("logger", "com.mysql.cj.log.Slf4JLogger");
+ dataSourceConfig.addDataSourceProperty("autoCommit", true);
+ dataSourceConfig.addDataSourceProperty("minimumIdle", 10);
+ dataSourceConfig.addDataSourceProperty("validationTimeout", 500); // 500 milliseconds wait before try to acquire connection again
+ dataSourceConfig.addDataSourceProperty("connectionTimeout", 0); // 0 = wait indefinitely for new connection if pool is exhausted
+ return new HikariDataSource(dataSourceConfig);
+ }
+
+ @Bean
+ public NamedParameterJdbcOperations template(DataSource dataSource) {
+ return new NamedParameterJdbcTemplate(dataSource);
+ }
+
+ @Bean
+ public NamingStrategy namingStrategy() {
+ return new AnnotationNamingStrategy();
+ }
+
+ @Bean
+ public ApplicationListener afterSaveEventApplicationListener() {
+ return event -> {
+ extractModel(event).ifPresent(Entity::onSave);
+ };
+ }
+
+ private Optional extractModel(WithEntity event) {
+ Object entity = event.getEntity();
+ if (entity instanceof Entity) {
+ return Optional.of((Entity) entity);
+ }
+ return Optional.empty();
+ }
+
+ @Bean
+ public ApplicationListener afterLoadEventApplicationListener() {
+ return event -> {
+ extractModel(event).ifPresent(Entity::onLoad);
+ };
+ }
+}
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/GameserverRepository.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/GameserverRepository.java
new file mode 100644
index 00000000..7414660b
--- /dev/null
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/GameserverRepository.java
@@ -0,0 +1,7 @@
+package com.l2jbr.commons.database;
+
+import com.l2jbr.commons.database.model.GameServers;
+import org.springframework.data.repository.CrudRepository;
+
+public interface GameserverRepository extends CrudRepository {
+}
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/L2DatabaseFactory.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/L2DatabaseFactory.java
new file mode 100644
index 00000000..412536b8
--- /dev/null
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/L2DatabaseFactory.java
@@ -0,0 +1,116 @@
+/*
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
+ *
+ * http://www.gnu.org/copyleft/gpl.html
+ */
+package com.l2jbr.commons.database;
+
+import com.zaxxer.hikari.HikariDataSource;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.context.ApplicationContext;
+import org.springframework.context.annotation.AnnotationConfigApplicationContext;
+
+import java.sql.Connection;
+import java.sql.SQLException;
+
+
+public class L2DatabaseFactory {
+ private static Logger _log = LoggerFactory.getLogger(L2DatabaseFactory.class);
+
+ private static L2DatabaseFactory _instance;
+ private final HikariDataSource _dataSource;
+ private final ApplicationContext context;
+
+ public L2DatabaseFactory() throws SQLException {
+ context = new AnnotationConfigApplicationContext(DatabaseContextConfiguration.class);
+ _dataSource = context.getBean(HikariDataSource.class);
+
+ try {
+ _dataSource.getConnection().close();
+ } catch (SQLException e) {
+ _log.error(e.getMessage(), e);
+ throw e;
+ }
+ }
+
+ public static String prepQuerySelect(String[] fields, String tableName, String whereClause, boolean returnOnlyTopRecord) {
+ String msSqlTop1 = "";
+ String mySqlTop1 = "";
+ if (returnOnlyTopRecord) {
+ mySqlTop1 = " Limit 1 ";
+ }
+ String query = "SELECT " + msSqlTop1 + safetyString(fields) + " FROM " + tableName + " WHERE " + whereClause + mySqlTop1;
+ return query;
+ }
+
+ public void shutdown() {
+ try {
+ _dataSource.close();
+ } catch (Exception e) {
+ _log.info(e.getMessage(), e);
+ }
+
+ }
+
+ public final static String safetyString(String[] whatToCheck) {
+ // NOTE: Use brace as a safty percaution just incase name is a reserved word
+ String braceLeft = "`";
+ String braceRight = "`";
+
+ String result = "";
+ for (String word : whatToCheck) {
+ if (result != "") result += ", ";
+ result += braceLeft + word + braceRight;
+ }
+ return result;
+ }
+
+ // TODO remove access from external modules
+ public static L2DatabaseFactory getInstance() throws SQLException {
+ if (_instance == null) {
+ _instance = new L2DatabaseFactory();
+ }
+ return _instance;
+ }
+
+ public Connection getConnection() //throws SQLException
+ {
+ Connection con = null;
+
+ while (con == null) {
+ try {
+ con = _dataSource.getConnection();
+ } catch (SQLException e) {
+ _log.warn("L2DatabaseFactory: getConnection() failed, trying again", e);
+ }
+ }
+ return con;
+ }
+
+ public static void close(Connection conn) {
+ }
+
+ public T getRepository(Class repositoryClass) {
+ try {
+ return context.getBean(repositoryClass);
+ }catch (Exception e) {
+ _log.error("could.not.retrieve.repository", e);
+ throw e;
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/annotation/Column.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/annotation/Column.java
new file mode 100644
index 00000000..f7e386c6
--- /dev/null
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/annotation/Column.java
@@ -0,0 +1,13 @@
+package com.l2jbr.commons.database.annotation;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+@Target(ElementType.FIELD)
+@Retention(RetentionPolicy.RUNTIME)
+public @interface Column {
+
+ String value() default "";
+}
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/annotation/Table.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/annotation/Table.java
new file mode 100644
index 00000000..eaf8d0e2
--- /dev/null
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/annotation/Table.java
@@ -0,0 +1,14 @@
+package com.l2jbr.commons.database.annotation;
+
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+@Target(ElementType.TYPE)
+@Retention(RetentionPolicy.RUNTIME)
+public @interface Table {
+
+ String value();
+}
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/model/Account.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/model/Account.java
new file mode 100644
index 00000000..776133a6
--- /dev/null
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/model/Account.java
@@ -0,0 +1,76 @@
+package com.l2jbr.commons.database.model;
+
+import com.l2jbr.commons.Config;
+import com.l2jbr.commons.database.annotation.Column;
+import com.l2jbr.commons.database.annotation.Table;
+import org.springframework.data.annotation.Id;
+
+@Table("accounts")
+public class Account extends Entity {
+
+ @Id
+ private String login;
+ private String password;
+ private Long lastActive;
+ @Column("access_level")
+ private Integer accessLevel;
+ private Integer lastServer;
+ private String lastIP;
+ private Integer newbieCharacterId;
+
+ public Account() { }
+
+ public Account(String login, String password, long lastActive, String lastIP) {
+ this.login = login;
+ this.password = password;
+ this.lastActive = lastActive;
+ this.lastIP = lastIP;
+ this.accessLevel = 0;
+ this.lastServer = 1;
+ }
+
+ @Override
+ public String getId() {
+ return login;
+ }
+
+ public int getAccessLevel() {
+ return accessLevel;
+ }
+
+ public String getPassword() {
+ return password;
+ }
+
+ public int getLastServer() {
+ return lastServer;
+ }
+
+ public boolean isBanned() {
+ return accessLevel < 0;
+ }
+
+ public void setLastActive(long lastActive) {
+ this.lastActive = lastActive;
+ }
+
+ public void setLastIP(String lastIP) {
+ this.lastIP = lastIP;
+ }
+
+ public void setAccessLevel(int accessLevel) {
+ this.accessLevel = accessLevel;
+ }
+
+ public boolean isGM() {
+ return accessLevel >= Config.GM_MIN;
+ }
+
+ public int getNewbieCharacterId() {
+ return newbieCharacterId;
+ }
+
+ public void setNewbieCharacterId(int newbieCharacterId) {
+ this.newbieCharacterId = newbieCharacterId;
+ }
+}
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/model/Entity.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/model/Entity.java
new file mode 100644
index 00000000..85b63d3e
--- /dev/null
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/model/Entity.java
@@ -0,0 +1,29 @@
+package com.l2jbr.commons.database.model;
+
+import org.springframework.data.annotation.Transient;
+import org.springframework.data.domain.Persistable;
+
+public abstract class Entity implements Persistable {
+
+ @Transient
+ protected boolean isNew = true;
+
+ @Override
+ public boolean isNew() {
+ return isNew;
+ }
+
+ public void onSave() {
+ isNew = false;
+ }
+
+ public void onLoad() {
+ isNew = false;
+ }
+
+ public boolean isPersisted() {
+ return !isNew;
+ }
+
+ public void setPersisted() { isNew = false;}
+}
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/model/GameServers.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/model/GameServers.java
new file mode 100644
index 00000000..60ff7067
--- /dev/null
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/database/model/GameServers.java
@@ -0,0 +1,36 @@
+package com.l2jbr.commons.database.model;
+
+import com.l2jbr.commons.database.annotation.Column;
+import com.l2jbr.commons.database.annotation.Table;
+import org.springframework.data.annotation.Id;
+
+@Table("gameservers")
+public class GameServers extends Entity {
+
+ @Id
+ @Column("server_id")
+ private Integer serverId;
+ private String hexid;
+ private String host;
+
+ public GameServers() { }
+
+ public GameServers(int id, String hexId, String host) {
+ this.serverId = id;
+ this.hexid = hexId;
+ this.host = host;
+ }
+
+ @Override
+ public Integer getId() {
+ return serverId;
+ }
+
+ public String getHexid() {
+ return hexid;
+ }
+
+ public String getHost() {
+ return host;
+ }
+}
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/lib/SqlUtils.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/lib/SqlUtils.java
deleted file mode 100644
index 2a0361b1..00000000
--- a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/lib/SqlUtils.java
+++ /dev/null
@@ -1,226 +0,0 @@
-/* This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- * 02111-1307, USA.
- *
- * http://www.gnu.org/copyleft/gpl.html
- */
-package com.l2jbr.commons.lib;
-
-import com.l2jbr.commons.L2DatabaseFactory;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-import java.sql.PreparedStatement;
-import java.sql.ResultSet;
-
-
-public class SqlUtils
-{
- private static Logger _log = LoggerFactory.getLogger(SqlUtils.class.getName());
-
- // =========================================================
- // Data Field
- private static SqlUtils _instance;
-
- // =========================================================
- // Property - Public
- public static SqlUtils getInstance()
- {
- if (_instance == null)
- {
- _instance = new SqlUtils();
- }
- return _instance;
- }
-
- // =========================================================
- // Method - Public
- public static Integer getIntValue(String resultField, String tableName, String whereClause)
- {
- String query = "";
- Integer res = null;
-
- PreparedStatement statement = null;
- ResultSet rset = null;
-
- try
- {
- query = L2DatabaseFactory.getInstance().prepQuerySelect(new String[]
- {
- resultField
- }, tableName, whereClause, true);
-
- statement = L2DatabaseFactory.getInstance().getConnection().prepareStatement(query);
- rset = statement.executeQuery();
-
- if (rset.next())
- {
- res = rset.getInt(1);
- }
- }
- catch (Exception e)
- {
- _log.warn("Error in query '" + query + "':" + e);
- e.printStackTrace();
- }
- finally
- {
- try
- {
- rset.close();
- }
- catch (Exception e)
- {
- }
- try
- {
- statement.close();
- }
- catch (Exception e)
- {
- }
- }
-
- return res;
- }
-
- public static Integer[] getIntArray(String resultField, String tableName, String whereClause)
- {
- String query = "";
- Integer[] res = null;
-
- PreparedStatement statement = null;
- ResultSet rset = null;
-
- try
- {
- query = L2DatabaseFactory.getInstance().prepQuerySelect(new String[]
- {
- resultField
- }, tableName, whereClause, false);
- statement = L2DatabaseFactory.getInstance().getConnection().prepareStatement(query);
- rset = statement.executeQuery();
-
- int rows = 0;
-
- while (rset.next())
- {
- rows++;
- }
-
- if (rows == 0)
- {
- return new Integer[0];
- }
-
- res = new Integer[rows - 1];
-
- rset.first();
-
- int row = 0;
- while (rset.next())
- {
- res[row] = rset.getInt(1);
- }
- }
- catch (Exception e)
- {
- _log.warn("mSGI: Error in query '" + query + "':" + e);
- e.printStackTrace();
- }
- finally
- {
- try
- {
- rset.close();
- }
- catch (Exception e)
- {
- }
- try
- {
- statement.close();
- }
- catch (Exception e)
- {
- }
- }
-
- return res;
- }
-
- public static Integer[][] get2DIntArray(String[] resultFields, String usedTables, String whereClause)
- {
- long start = System.currentTimeMillis();
-
- String query = "";
-
- PreparedStatement statement = null;
- ResultSet rset = null;
-
- Integer res[][] = null;
-
- try
- {
- query = L2DatabaseFactory.getInstance().prepQuerySelect(resultFields, usedTables, whereClause, false);
- statement = L2DatabaseFactory.getInstance().getConnection().prepareStatement(query);
- rset = statement.executeQuery();
-
- int rows = 0;
- while (rset.next())
- {
- rows++;
- }
-
- res = new Integer[rows - 1][resultFields.length];
-
- rset.first();
-
- int row = 0;
- while (rset.next())
- {
- for (int i = 0; i < resultFields.length; i++)
- {
- res[row][i] = rset.getInt(i + 1);
- }
- row++;
- }
- }
- catch (Exception e)
- {
- _log.warn("Error in query '" + query + "':" + e);
- e.printStackTrace();
- }
- finally
- {
- try
- {
- rset.close();
- }
- catch (Exception e)
- {
- }
- try
- {
- statement.close();
- }
- catch (Exception e)
- {
- }
- }
-
- _log.debug("Get all rows in query '" + query + "' in " + (System.currentTimeMillis() - start) + "ms");
- return res;
- }
-}
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/util/FilterUtils.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/util/FilterUtils.java
new file mode 100644
index 00000000..8f00715b
--- /dev/null
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/util/FilterUtils.java
@@ -0,0 +1,13 @@
+package com.l2jbr.commons.util;
+
+import java.io.File;
+
+public class FilterUtils {
+
+ public static boolean htmlFilter(File file) {
+ if (!file.isDirectory()) {
+ return (file.getName().endsWith(".htm") || file.getName().endsWith(".html"));
+ }
+ return true;
+ }
+}
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/util/Util.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/util/Util.java
index cb880ecd..eabe2376 100644
--- a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/util/Util.java
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/util/Util.java
@@ -14,15 +14,25 @@
*/
package com.l2jbr.commons.util;
-
-/**
- * This class ...
- *
- * @version $Revision: 1.2 $ $Date: 2004/06/27 08:12:59 $
- */
+import java.lang.reflect.Field;
+import java.time.ZoneId;
+import java.time.format.DateTimeFormatter;
+import java.time.format.FormatStyle;
+import java.time.temporal.TemporalAccessor;
+import java.util.Collection;
+import java.util.Locale;
+import java.util.Optional;
+
+import static java.util.Objects.isNull;
+import static java.util.Objects.nonNull;
public class Util {
+ private static final DateTimeFormatter formatter = DateTimeFormatter.ofLocalizedDateTime( FormatStyle.SHORT )
+ .withLocale( Locale.getDefault() )
+ .withZone( ZoneId.systemDefault() );
+
+
public static boolean isInternalIP(String ipAddress) {
return (ipAddress.startsWith("192.168.") || ipAddress.startsWith("10.") ||
// ipAddress.startsWith("172.16.") ||
@@ -31,6 +41,10 @@ public static boolean isInternalIP(String ipAddress) {
ipAddress.startsWith("127.0.0.1"));
}
+ public static String printData(byte[] raw) {
+ return printData(raw, raw.length);
+ }
+
public static String printData(byte[] data, int len) {
StringBuilder result = new StringBuilder();
@@ -76,29 +90,59 @@ public static String printData(byte[] data, int len) {
result.append('.');
}
}
-
result.append("\n");
}
-
return result.toString();
}
public static String fillHex(int data, int digits) {
- String number = Integer.toHexString(data);
+ StringBuilder builder = new StringBuilder(Integer.toHexString(data));
+
+ for (int i = builder.length(); i < digits; i++) {
+ builder.insert(0, "0");
+ }
+ return builder.toString();
+ }
- for (int i = number.length(); i < digits; i++) {
- number = "0" + number;
+ public static Optional getField(String fieldName, Class> clazz) {
+ Class> searchClass = clazz;
+ Field f = null;
+ while(nonNull(searchClass)) {
+ try {
+ f = searchClass.getDeclaredField(fieldName);
+ break;
+ } catch (NoSuchFieldException e) {
+ searchClass = searchClass.getSuperclass();
+ }
}
+ return Optional.of(f);
+ }
- return number;
+ public static boolean isNullOrEmpty(String value) {
+ return isNull(value) || value.isEmpty();
}
- /**
- * @param raw
- * @return
- */
- public static String printData(byte[] raw) {
- return printData(raw, raw.length);
+ public static boolean isNullOrEmpty(Collection> collection) {
+ return isNull(collection) || collection.isEmpty();
+ }
+
+ public static String capitalize(String text) {
+ if(isNullOrEmpty(text)){
+ return "";
+ }
+ String[] words = text.split(" ");
+ StringBuilder builder = new StringBuilder();
+ for(String word : words) {
+ char[] caracteres = word.toLowerCase().toCharArray();
+ caracteres[0] = Character.toUpperCase(caracteres[0]);
+ builder.append(caracteres);
+ builder.append(" ");
+ }
+ return builder.substring(0, builder.length()-1);
+ }
+
+ public static String formatDateTime(TemporalAccessor temporal) {
+ return formatter.format(temporal);
}
}
diff --git a/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/xml/XMLReader.java b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/xml/XMLReader.java
new file mode 100644
index 00000000..f9a3b2a3
--- /dev/null
+++ b/Commons/src/main/com.l2jbr.commons/com/l2jbr/commons/xml/XMLReader.java
@@ -0,0 +1,90 @@
+package com.l2jbr.commons.xml;
+
+import com.l2jbr.commons.Config;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.xml.sax.SAXException;
+
+import javax.xml.XMLConstants;
+import javax.xml.bind.*;
+import javax.xml.validation.Schema;
+import javax.xml.validation.SchemaFactory;
+import java.io.File;
+
+public abstract class XMLReader implements ValidationEventHandler {
+
+ protected static final Logger logger = LoggerFactory.getLogger(XMLReader.class);
+ private Schema schema;
+ private String processingFile;
+ private Unmarshaller unmarshaller;
+
+ public XMLReader() throws JAXBException {
+ loadSchema();
+ createUnmarshaller();
+ }
+
+ private void loadSchema() {
+ try {
+ SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
+ schema = factory.newSchema(new File(getSchemaFilePath()));
+ } catch (SAXException e) {
+ logger.warn(e.getLocalizedMessage(), e);
+ }
+ }
+
+ private void createUnmarshaller() throws JAXBException {
+ JAXBContext context = getJAXBContext();
+ unmarshaller = context.createUnmarshaller();
+ unmarshaller.setSchema(schema);
+ unmarshaller.setEventHandler(this);
+ }
+
+ public void readAll() {
+ for (String directory : getXmlFileDirectories()) {
+ read(getDirectoryFiles(directory));
+ }
+ }
+
+ private File[] getDirectoryFiles(String directory) {
+ File fileDir = new File(Config.DATAPACK_ROOT, directory);
+ return fileDir.listFiles((dir, name) -> name.endsWith(".xml"));
+ }
+
+ private void read(File... files) {
+ if(files == null || files.length < 1) {
+ return;
+ }
+
+ for (File file : files) {
+ try {
+ readFile(file);
+ } catch (JAXBException e) {
+ logger.error(e.getLocalizedMessage(), e);
+ }
+ }
+ }
+
+ private void readFile(File file) throws JAXBException{
+ T entity = processFile(file);
+ processEntity(entity);
+ }
+
+ @SuppressWarnings("unchecked")
+ private T processFile(File file) throws JAXBException {
+ processingFile = file.getAbsolutePath();
+ return (T) unmarshaller.unmarshal(file);
+ }
+
+ @Override
+ public boolean handleEvent(ValidationEvent event) {
+ ValidationEventLocator locator = event.getLocator();
+ logger.error("reading {} on line {} column {} : {} ", processingFile, locator.getLineNumber(), locator.getColumnNumber(), event.getMessage());
+ return true;
+ }
+
+ protected abstract void processEntity(T entity);
+ protected abstract JAXBContext getJAXBContext() throws JAXBException;
+ protected abstract String getSchemaFilePath();
+ protected abstract String[] getXmlFileDirectories();
+
+}
diff --git a/Commons/src/main/com.l2jbr.commons/module-info.java b/Commons/src/main/com.l2jbr.commons/module-info.java
index 0ea3d9c8..fd5c3795 100644
--- a/Commons/src/main/com.l2jbr.commons/module-info.java
+++ b/Commons/src/main/com.l2jbr.commons/module-info.java
@@ -1,9 +1,14 @@
module com.l2jbr.commons {
requires java.sql;
- requires c3p0;
requires java.naming;
requires java.desktop;
requires org.slf4j;
+ requires com.zaxxer.hikari;
+ requires spring.data.commons;
+ requires spring.data.jdbc;
+ requires spring.context;
+ requires spring.jdbc;
+ requires java.xml.bind;
exports com.l2jbr.commons.util;
exports com.l2jbr.commons.xml;
@@ -11,5 +16,8 @@
exports com.l2jbr.commons.status;
exports com.l2jbr.commons.lib;
exports com.l2jbr.commons;
+ exports com.l2jbr.commons.database;
+ exports com.l2jbr.commons.database.model;
+ exports com.l2jbr.commons.database.annotation;
}
\ No newline at end of file
diff --git a/Datapack/build.gradle b/Datapack/build.gradle
index 38f13605..8c8a88c4 100644
--- a/Datapack/build.gradle
+++ b/Datapack/build.gradle
@@ -4,7 +4,7 @@ plugins {
id "eclipse"
}
-version '1.3.0'
+version '1.4'
task zip(type: Zip) {
from('data') {
diff --git a/Datapack/data/door.csv b/Datapack/data/door.csv
index 97b168fd..067efdd1 100644
--- a/Datapack/data/door.csv
+++ b/Datapack/data/door.csv
@@ -53,12 +53,12 @@ devastated_castle_inner_003;25170005;178302;-18573;-2287;0;0;0;0;0;0;79125;644;5
devastated_castle_inner_004;25170006;178302;-18648;-2287;0;0;0;0;0;0;79125;644;518;False
# Devils Isle
-pirate_isle_001;21240001;42001;208378;-3666;0;0;0;0;0;0;187500;100000;10000;True
-pirate_isle_002;21240002;43745;212594;-3623;0;0;0;0;0;0;187500;100000;10000;True
+pirate_isle_001;21240001;42001;208378;-3666;0;0;0;0;0;0;187500;32767;32767;True
+pirate_isle_002;21240002;43745;212594;-3623;0;0;0;0;0;0;187500;32767;32767;True
pirate_isle_003;21240003;42167;213285;-3643;0;0;0;0;0;0;187500;476;383;True
pirate_isle_004;21240004;51111;206106;-3912;0;0;0;0;0;0;187500;476;383;True
pirate_isle_005;21240005;52910;206720;-3692;0;0;0;0;0;0;187500;476;383;True
-pirate_isle_006;21240006;52423;219103;-3209;0;0;0;0;0;0;187500;1000000;383;True
+pirate_isle_006;21240006;52423;219103;-3209;0;0;0;0;0;0;187500;32767;383;True
# Garden of Eva - Water Walls and Secret Walls
goe_001;22250001;86226;247063;-8584;0;0;0;0;0;0;187500;476;383;False
diff --git a/Datapack/data/html/admin/help/gmcommands2.htm b/Datapack/data/html/admin/help/gmcommands2.htm
index ca3d03d7..ab401587 100644
--- a/Datapack/data/html/admin/help/gmcommands2.htm
+++ b/Datapack/data/html/admin/help/gmcommands2.htm
@@ -40,9 +40,6 @@
//clear_siege_list
//sgspawn <npc_id> <group>
//siege - Castle names: gludio, giran, dion, oren
-//box_access - with box targetted, shows access list
-//box_access char1 char2 - To add players to boxUsage: //box_access kadar LadyPain
-//box_access no char1 - Removes player from box accessUsage: //box_access LadyPain no kadar
//fight_calculator
//fight_calculator_show
//fcs
diff --git a/Datapack/data/html/guard/30348-1.htm b/Datapack/data/html/guard/30348-1.htm
index 761d4360..8b307791 100644
--- a/Datapack/data/html/guard/30348-1.htm
+++ b/Datapack/data/html/guard/30348-1.htm
@@ -1,2 +1,5 @@
-Sentry Nelsya:
In a few days the mass of darkness dedicated to Shilen and Gran Kain will be held. Shilen's Hunt will be held for ten days before the mass. The purpose of his ceremony is to hunt wild animals in the name of the goddess and offer them as a sarcrifice at the sanctuary. Of course, the act of offering a sarcrifice is only symbolic - in thepast, the hunt's purpose was also to acquire supplies for the winter during our long period of hiding in the darkness.
The hunt has already begun! The youth of the village are in the woods and on the hunt, armed with swords and bows. The fervor is impressive - the Humans who witnessed it called it the "wild hunt". I think you should also hurry and participate in the hunt to honor the mother of the abyss!
Say you will participate
+Sentry Nelsya:
+In a few days the mass of darkness dedicated to Shilen and Gran Kain will be held. Shilen's Hunt will be held for ten days before the mass. The purpose of his ceremony is to hunt wild animals in the name of the goddess and offer them as a sarcrifice at the sanctuary. Of course, the act of offering a sarcrifice is only symbolic - in thepast, the hunt's purpose was also to acquire supplies for the winter during our long period of hiding in the darkness.
+The hunt has already begun! The youth of the village are in the woods and on the hunt, armed with swords and bows. The fervor is impressive - the Humans who witnessed it called it the "wild hunt". I think you should also hurry and participate in the hunt to honor the mother of the abyss!
+Say you will participate
\ No newline at end of file
diff --git a/Datapack/data/html/guard/30543-3.htm b/Datapack/data/html/guard/30543-3.htm
index 87ba2c8f..38fd49b1 100644
--- a/Datapack/data/html/guard/30543-3.htm
+++ b/Datapack/data/html/guard/30543-3.htm
@@ -1 +1,6 @@
-Defender Ethan:
So how'd you like it? I'll read it again for you.
Jangle jangle, the sound of rolling adena.
Clink clink, the sound of gathering treasure.
Boom boom, the sound of collecting mithril.
\ No newline at end of file
+Defender Ethan:
+So how'd you like it? I'll read it again for you.
+Jangle jangle, the sound of rolling adena.
+Clink clink, the sound of gathering treasure.
+Boom boom, the sound of collecting mithril.
+
\ No newline at end of file
diff --git a/Datapack/data/html/trainer/30715-2.htm b/Datapack/data/html/trainer/30715-2.htm
index e7b5139c..04bcdc96 100644
--- a/Datapack/data/html/trainer/30715-2.htm
+++ b/Datapack/data/html/trainer/30715-2.htm
@@ -1 +1,24 @@
-
Skill Enchantment is a way of strengthening certain skills that have reached their natural limit. Any player who has completed their third occupation change and reached level 76 or above can enchant a skill with help of a skill trainer.
When enchanting a skill for the first time, pay particular attention to the methods of reinforcement. If there are two or more, the method will be determined during the first enchantment session. When enchanting a skill, carefully note the descriptions of each effect before choosing.
Also pay particular attention to the success rate. All skill enchantments have a specified success rate. If enchantment fails, exp. and SP will be consumed and your skill will return to +0 status, so please check the success rate carefully before enchanting. The success rate improves as the player's level increases.
You may be required to find a specific NPC to enchant the skill. There are currently 20 NPCs in the game that allow Skill Enchantment. Among these, you must find the NPC that fits both your race and your occupation. If your race and occupation do not match the NPCS, the skill Enchantment will not be allowed.
Sedrick's Training Hall in the Town of Aden :
Master Aiken, Master Sinden
Einhasad's Temple in the Town of Oren :
Priest Valdin, Priest Egnos
Oren's Ivory Tower :
Magister Marina, Magister Joan, Magister Ladd
Hardin's Academy :
Master Galadril, Magister Anastia, Dark Knight Mordred, Lich King Icarus
fighters Guild in Hunters Village :
Master Aren Athebalt, Master Stedmiel
Rune Township Fighters Guild :
Prefect Tazki
Rune Township Sage's Library :
Seer Mekara
Rune Township Blacksmith's Shop :
Blacksmith Vincenz
Rune Township Warehouse :
Warehouse Keeper Hugin, Warehouse Keeper Durin, Warehouse Keeper Lunin, Warehouse Freightman Daisy.
\ No newline at end of file
+
+Skill Enchantment is a way of strengthening certain skills that have reached their natural limit. Any player who has completed their third occupation change and reached level 76 or above can enchant a skill with help of a skill trainer.
+When enchanting a skill for the first time, pay particular attention to the methods of reinforcement. If there are two or more, the method will be determined during the first enchantment session. When enchanting a skill, carefully note the descriptions of each effect before choosing.
+Also pay particular attention to the success rate. All skill enchantments have a specified success rate. If enchantment fails, exp. and SP will be consumed and your skill will return to +0 status, so please check the success rate carefully before enchanting. The success rate improves as the player's level increases.
+You may be required to find a specific NPC to enchant the skill. There are currently 20 NPCs in the game that allow Skill Enchantment. Among these, you must find the NPC that fits both your race and your occupation. If your race and occupation do not match the NPCS, the skill Enchantment will not be allowed.
+Sedrick's Training Hall in the Town of Aden :
+Master Aiken, Master Sinden
+Einhasad's Temple in the Town of Oren :
+Priest Valdin, Priest Egnos
+Oren's Ivory Tower :
+Magister Marina, Magister Joan, Magister Ladd
+Hardin's Academy :
+Master Galadril, Magister Anastia, Dark Knight Mordred, Lich King Icarus
+fighters Guild in Hunters Village :
+Master Aren Athebalt, Master Stedmiel
+Rune Township Fighters Guild :
+Prefect Tazki
+Rune Township Sage's Library :
+Seer Mekara
+Rune Township Blacksmith's Shop :
+Blacksmith Vincenz
+Rune Township Warehouse :
+Warehouse Keeper Hugin, Warehouse Keeper Durin, Warehouse Keeper Lunin, Warehouse Freightman Daisy.
+
\ No newline at end of file
diff --git a/Datapack/data/html/trainer/30718-2.htm b/Datapack/data/html/trainer/30718-2.htm
index 791805ad..0cb941fb 100644
--- a/Datapack/data/html/trainer/30718-2.htm
+++ b/Datapack/data/html/trainer/30718-2.htm
@@ -1 +1,24 @@
-
Skill Enchantment is a way of strengthening certain skills that have reached their natural limit. Any player who has completed their third occupation change and reached level 76 or above can enchant a skill with help of a skill trainer.
When enchanting a skill for the first time, pay particular attention to the methods of reinforcement. If there are two or more, the method will be determined during the first enchantment session. When enchanting a skill, carefully note the descriptions of each effect before choosing.
Also pay particular attention to the success rate. All skill enchantments have a specified success rate. If enchantment fails, exp. and SP will be consumed and your skill will return to +0 status, so please check the success rate carefully before enchanting. The success rate improves as the player's level increases.
You may be required to find a specific NPC to enchant the skill. There are currently 20 NPCs in the game that allow Skill Enchantment. Among these, you must find the NPC that fits both your race and your occupation. If your race and occupation do not match the NPCS, the skill Enchantment will not be allowed.
Sedrick's Training Hall in the Town of Aden :
Master Aiken, Master Sinden
Einhasad's Temple in the Town of Oren :
Priest Valdin, Priest Egnos
Oren's Ivory Tower :
Magister Marina, Magister Joan, Magister Ladd
Hardin's Academy :
Master Galadril, Magister Anastia, Dark Knight Mordred, Lich King Icarus
fighters Guild in Hunters Village :
Master Aren Athebalt, Master Stedmiel
Rune Township Fighters Guild :
Prefect Tazki
Rune Township Sage's Library :
Seer Mekara
Rune Township Blacksmith's Shop :
Blacksmith Vincenz
Rune Township Warehouse :
Warehouse Keeper Hugin, Warehouse Keeper Durin, Warehouse Keeper Lunin, Warehouse Freightman Daisy.
\ No newline at end of file
+
+Skill Enchantment is a way of strengthening certain skills that have reached their natural limit. Any player who has completed their third occupation change and reached level 76 or above can enchant a skill with help of a skill trainer.
+When enchanting a skill for the first time, pay particular attention to the methods of reinforcement. If there are two or more, the method will be determined during the first enchantment session. When enchanting a skill, carefully note the descriptions of each effect before choosing.
+Also pay particular attention to the success rate. All skill enchantments have a specified success rate. If enchantment fails, exp. and SP will be consumed and your skill will return to +0 status, so please check the success rate carefully before enchanting. The success rate improves as the player's level increases.
+You may be required to find a specific NPC to enchant the skill. There are currently 20 NPCs in the game that allow Skill Enchantment. Among these, you must find the NPC that fits both your race and your occupation. If your race and occupation do not match the NPCS, the skill Enchantment will not be allowed.
+Sedrick's Training Hall in the Town of Aden :
+Master Aiken, Master Sinden
+Einhasad's Temple in the Town of Oren :
+Priest Valdin, Priest Egnos
+Oren's Ivory Tower :
+Magister Marina, Magister Joan, Magister Ladd
+Hardin's Academy :
+Master Galadril, Magister Anastia, Dark Knight Mordred, Lich King Icarus
+fighters Guild in Hunters Village :
+Master Aren Athebalt, Master Stedmiel
+Rune Township Fighters Guild :
+Prefect Tazki
+Rune Township Sage's Library :
+Seer Mekara
+Rune Township Blacksmith's Shop :
+Blacksmith Vincenz
+Rune Township Warehouse :
+Warehouse Keeper Hugin, Warehouse Keeper Durin, Warehouse Keeper Lunin, Warehouse Freightman Daisy.
+
\ No newline at end of file
diff --git a/Datapack/data/html/villagemaster/32095.htm b/Datapack/data/html/villagemaster/32095.htm
index 7a7d3228..25500704 100644
--- a/Datapack/data/html/villagemaster/32095.htm
+++ b/Datapack/data/html/villagemaster/32095.htm
@@ -1,7 +1,7 @@
-High Priest Marie:
-Greetings, my child. I am but a mere vessel for the spirit and will of Einhasad!
-Tell me about the second class transfer.
-Clan
-Alliance
-Quest
-
\ No newline at end of file
+High Priest Marie:
+Greetings, my child. I am but a mere vessel for the spirit and will of Einhasad!
+Tell me about the second class transfer.
+Clan
+Alliance
+Quest
+
diff --git a/Datapack/data/html/warehouse/30521.htm b/Datapack/data/html/warehouse/30521.htm
index e9d1b667..8e928712 100644
--- a/Datapack/data/html/warehouse/30521.htm
+++ b/Datapack/data/html/warehouse/30521.htm
@@ -1 +1,7 @@
-Warehouse Freightman Murdoc:
Welcome to the Iron Gate Guild. I'm Murdoc, a member of the guild that prides itself on having the longest history and being the largest among the 6 guilds! We have wharehouses in all the cities in this land! Hahaha!
The Iron Gate can deliver and receive cargo from anywhere!
"I want to use your freight service."
"I want to learn a skill."
Quest
\ No newline at end of file
+Warehouse Freightman Murdoc:
+Welcome to the Iron Gate Guild. I'm Murdoc, a member of the guild that prides itself on having the longest history and being the largest among the 6 guilds! We have wharehouses in all the cities in this land! Hahaha!
+The Iron Gate can deliver and receive cargo from anywhere!
+"I want to use your freight service."
+"I want to learn a skill."
+Quest
+
\ No newline at end of file
diff --git a/Datapack/data/jscript/ai/group_template/chests.py b/Datapack/data/jscript/ai/group_template/chests.py
index c03638e4..9bb6da62 100644
--- a/Datapack/data/jscript/ai/group_template/chests.py
+++ b/Datapack/data/jscript/ai/group_template/chests.py
@@ -3,7 +3,7 @@
# Written by Fulminus
# # # # # # # # # # #
import sys
-from com.l2jbr.gameserver.ai import CtrlIntention
+from com.l2jbr.gameserver.ai import Intention
from com.l2jbr.gameserver.model.quest.jython import QuestJython as JQuest
from com.l2jbr.commons.util import Rnd;
@@ -74,7 +74,7 @@ def onSkillUse (self,npc,player,skill):
attacker = player.getPet()
npc.setRunning()
npc.addDamageHate(attacker,0,999)
- npc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, attacker)
+ npc.getAI().setIntention(Intention.AI_INTENTION_ATTACK, attacker)
return
def onAttack(self,npc,player,damage,isPet) :
@@ -94,7 +94,7 @@ def onAttack(self,npc,player,damage,isPet) :
attacker = player.getPet()
npc.setRunning()
npc.addDamageHate(attacker,0,(damage*100)/(npc.getLevel()+7))
- npc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, attacker)
+ npc.getAI().setIntention(Intention.AI_INTENTION_ATTACK, attacker)
return
# now call the constructor (starts up the ai)
diff --git a/Datapack/data/jscript/ai/group_template/feedable_beasts.py b/Datapack/data/jscript/ai/group_template/feedable_beasts.py
index 80ef3f99..dc68aa66 100644
--- a/Datapack/data/jscript/ai/group_template/feedable_beasts.py
+++ b/Datapack/data/jscript/ai/group_template/feedable_beasts.py
@@ -2,7 +2,7 @@
# Written by Fulminus
# # # # # # # # # # #
import sys
-from com.l2jbr.gameserver.ai import CtrlIntention
+from com.l2jbr.gameserver.ai import Intention
from com.l2jbr.gameserver.idfactory import IdFactory
from com.l2jbr.gameserver.datatables import NpcTable
from com.l2jbr.gameserver.model.actor.instance import L2TamedBeastInstance
@@ -112,7 +112,7 @@ def onAdvEvent(self,event,npc,player) :
self.feedInfo[nextNpc.getObjectId()] = player.getObjectId()
nextNpc.setRunning()
nextNpc.addDamageHate(player,0,99999)
- nextNpc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, player)
+ nextNpc.getAI().setIntention(Intention.AI_INTENTION_ATTACK, player)
def spawnNext(self, npc, growthLevel,player,food) :
npcId = npc.getNpcId()
@@ -197,7 +197,7 @@ def spawnNext(self, npc, growthLevel,player,food) :
self.feedInfo[nextNpc.getObjectId()] = player.getObjectId()
nextNpc.setRunning()
nextNpc.addDamageHate(player,0,99999)
- nextNpc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, player)
+ nextNpc.getAI().setIntention(Intention.AI_INTENTION_ATTACK, player)
def onSkillUse (self,npc,player,skill):
# gather some values on local variables
diff --git a/Datapack/data/jscript/ai/group_template/polymorphing_angel.py b/Datapack/data/jscript/ai/group_template/polymorphing_angel.py
index 2d787509..364d30fe 100644
--- a/Datapack/data/jscript/ai/group_template/polymorphing_angel.py
+++ b/Datapack/data/jscript/ai/group_template/polymorphing_angel.py
@@ -1,7 +1,7 @@
import sys
from com.l2jbr.gameserver.model.quest.jython import QuestJython as JQuest
from com.l2jbr.gameserver.serverpackets import MagicSkillUser
-from com.l2jbr.gameserver.ai import CtrlIntention
+from com.l2jbr.gameserver.ai import Intention
# Angel spawns...when one of the angels in the keys dies, the other angel will spawn.
@@ -29,7 +29,7 @@ def onKill (self,npc,player,isPet):
killer = player.getPet()
newNpc.setRunning()
newNpc.addDamageHate(killer,0,999)
- newNpc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, killer)
+ newNpc.getAI().setIntention(Intention.AI_INTENTION_ATTACK, killer)
return
# now call the constructor (starts up the ai)
diff --git a/Datapack/data/jscript/ai/individual/baium.py b/Datapack/data/jscript/ai/individual/baium.py
index c199ce65..ed314b87 100644
--- a/Datapack/data/jscript/ai/individual/baium.py
+++ b/Datapack/data/jscript/ai/individual/baium.py
@@ -8,7 +8,7 @@
from com.l2jbr.gameserver.serverpackets import SocialAction
from com.l2jbr.gameserver.serverpackets import Earthquake
from com.l2jbr.gameserver.serverpackets import PlaySound
-from com.l2jbr.gameserver.ai import CtrlIntention
+from com.l2jbr.gameserver.ai import Intention
from com.l2jbr.commons.util import Rnd
from java.lang import System
diff --git a/Datapack/data/jscript/quests/104_SpiritOfMirrors/__init__.py b/Datapack/data/jscript/quests/104_SpiritOfMirrors/__init__.py
index 6a4a17a7..11472e8c 100644
--- a/Datapack/data/jscript/quests/104_SpiritOfMirrors/__init__.py
+++ b/Datapack/data/jscript/quests/104_SpiritOfMirrors/__init__.py
@@ -103,7 +103,7 @@ def onKill(self,npc,player,isPet):
if not st: return
if st.getState() != STARTED : return
npcId = npc.getNpcId()
- if st.getInt("cond") >= 1 and st.getItemEquipped(7) == GALLINS_OAK_WAND_ID and not st.getQuestItemsCount(DROPLIST[npcId]) : # (7) means weapon slot
+ if st.getInt("cond") >= 1 and st.getItemEquipped(7) == GALLINS_OAK_WAND_ID and not st.getQuestItemsCount(DROPLIST[npcId]) : # (7) means weapon bodyPart
st.takeItems(GALLINS_OAK_WAND_ID,1)
st.giveItems(DROPLIST[npcId],1)
if HaveAllQuestItems(st) :
diff --git a/Datapack/data/jscript/quests/21_HiddenTruth/__init__.py b/Datapack/data/jscript/quests/21_HiddenTruth/__init__.py
index c496d965..71a2cd29 100644
--- a/Datapack/data/jscript/quests/21_HiddenTruth/__init__.py
+++ b/Datapack/data/jscript/quests/21_HiddenTruth/__init__.py
@@ -2,11 +2,11 @@
# this script is part of the Official L2J Datapack Project.
# Visit http://forum.l2jdp.com for more details.
import sys
-from com.l2jbr.gameserver.ai import CtrlIntention
+from com.l2jbr.gameserver.ai import Intention
from com.l2jbr.gameserver.model.quest import State
from com.l2jbr.gameserver.model.quest import QuestState
from com.l2jbr.gameserver.model.quest.jython import QuestJython as JQuest
-from com.l2jbr.gameserver.model import L2CharPosition
+from com.l2jbr.gameserver.model import L2Position
qn = "21_HiddenTruth"
@@ -77,19 +77,19 @@ def onAdvEvent (self,event,npc,player):
loc = int(event)
x,y,z,heading=ROUTES[loc]
if event == "1" :
- npc.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, L2CharPosition(x,y,z,heading))
+ npc.getAI().setIntention(Intention.AI_INTENTION_MOVE_TO, L2Position(x,y,z,heading))
self.startQuestTimer("2",5000,npc,player)
elif event == "2" :
- npc.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, L2CharPosition(x,y,z,heading))
+ npc.getAI().setIntention(Intention.AI_INTENTION_MOVE_TO, L2Position(x,y,z,heading))
self.startQuestTimer("3",12000,npc,player)
elif event == "3" :
- npc.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, L2CharPosition(x,y,z,heading))
+ npc.getAI().setIntention(Intention.AI_INTENTION_MOVE_TO, L2Position(x,y,z,heading))
self.startQuestTimer("4",15000,npc,player)
elif event == "4" :
- npc.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, L2CharPosition(x,y,z,heading))
+ npc.getAI().setIntention(Intention.AI_INTENTION_MOVE_TO, L2Position(x,y,z,heading))
self.startQuestTimer("5",5000,npc,player)
elif event == "5" :
- npc.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, L2CharPosition(x,y,z,heading))
+ npc.getAI().setIntention(Intention.AI_INTENTION_MOVE_TO, L2Position(x,y,z,heading))
return htmltext
def onTalk (self,npc,player):
diff --git a/Datapack/data/jscript/quests/22_TragedyInVonHellmannForest/__init__.py b/Datapack/data/jscript/quests/22_TragedyInVonHellmannForest/__init__.py
index 7d739670..28ca8744 100644
--- a/Datapack/data/jscript/quests/22_TragedyInVonHellmannForest/__init__.py
+++ b/Datapack/data/jscript/quests/22_TragedyInVonHellmannForest/__init__.py
@@ -4,7 +4,7 @@
from com.l2jbr.gameserver.model.quest import QuestState
from com.l2jbr.gameserver.model.quest.jython import QuestJython as JQuest
from com.l2jbr.gameserver.serverpackets import CreatureSay
-from com.l2jbr.gameserver.ai import CtrlIntention
+from com.l2jbr.gameserver.ai import Intention
qn = "22_TragedyInVonHellmannForest"
@@ -120,7 +120,7 @@ def onAdvEvent (self,event,npc, player) :
st.startQuestTimer("Soul of Well 1",90000,soul)
st.startQuestTimer("Soul of Well Despawn",120000,soul)
soul.addDamageHate(player,0,99999)
- soul.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK,player,None)
+ soul.getAI().setIntention(Intention.AI_INTENTION_ATTACK,player,None)
else :
htmltext = "31527-03.htm"
elif event == "31328-13.htm" :
diff --git a/Datapack/data/jscript/quests/403_PathToRogue/30379-09.htm b/Datapack/data/jscript/quests/403_PathToRogue/30379-09.htm
index e6a23e67..454e328f 100644
--- a/Datapack/data/jscript/quests/403_PathToRogue/30379-09.htm
+++ b/Datapack/data/jscript/quests/403_PathToRogue/30379-09.htm
@@ -1,6 +1,7 @@
-
-
-Captain Bezique:
-Oh! You've recovered all the stolen items. Thank you for your trouble. Your skills are better than I thought. I think you really have the qualities to become a good Rogue. Red-eyed Bandits... Have you ever heard of them? They are the largest group of bandits on the continent with their home in the snow-covered mountains of Oren. I can’t believe those stupid thieves were related to the Red-eyed Bandits... I need to make a detailed inquiry into this. Hmm... Anyhow, I will write you a letter of recommendation. Go to Grand Master Ramos at the Fighters Guild and show him my recommendation. Then you can change occupations to a Rogue. Well then, I wish you luck. Oh, and I almost forgot! I will give Neti back her bow and dagger for you. I have to go and thank her, anyway.
-
+
+
+Captain Bezique:
+
+Oh! You've recovered all the stolen items. Thank you for your trouble. Your skills are better than I thought. I think you really have the qualities to become a good Rogue. Red-eyed Bandits... Have you ever heard of them? They are the largest group of bandits on the continent with their home in the snow-covered mountains of Oren. I can�t believe those stupid thieves were related to the Red-eyed Bandits... I need to make a detailed inquiry into this. Hmm... Anyhow, I will write you a letter of recommendation. Go to Grand Master Ramos at the Fighters Guild and show him my recommendation. Then you can change occupations to a Rogue. Well then, I wish you luck. Oh, and I almost forgot! I will give Neti back her bow and dagger for you. I have to go and thank her, anyway.
+
\ No newline at end of file
diff --git a/Datapack/data/jscript/quests/405_PathToCleric/__init__.py b/Datapack/data/jscript/quests/405_PathToCleric/__init__.py
index c4157327..2def71bd 100644
--- a/Datapack/data/jscript/quests/405_PathToCleric/__init__.py
+++ b/Datapack/data/jscript/quests/405_PathToCleric/__init__.py
@@ -27,23 +27,23 @@ def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr)
def onEvent (self,event,st) :
htmltext = event
level = st.getPlayer().getLevel()
- classId = st.getPlayer().getClassId().getId()
+ playerClass = st.getPlayer().getPlayerClass().getId()
if event == "1" :
st.set("id","0")
- if level >= 19 and classId == 0x0a and st.getQuestItemsCount(MARK_OF_FAITH) == 0 :
+ if level >= 19 and playerClass == 0x0a and st.getQuestItemsCount(MARK_OF_FAITH) == 0 :
st.set("cond","1")
st.setState(STARTED)
st.playSound("ItemSound.quest_accept")
st.giveItems(LETTER_OF_ORDER1,1)
htmltext = "30022-05.htm"
- elif classId != 0x0a :
- if classId == 0x0f :
+ elif playerClass != 0x0a :
+ if playerClass == 0x0f :
htmltext = "30022-02a.htm"
else:
htmltext = "30022-02.htm"
- elif level<19 and classId == 0x0a :
+ elif level<19 and playerClass == 0x0a :
htmltext = "30022-03.htm"
- elif level >= 19 and classId == 0x0a and st.getQuestItemsCount(MARK_OF_FAITH) == 1 :
+ elif level >= 19 and playerClass == 0x0a and st.getQuestItemsCount(MARK_OF_FAITH) == 1 :
htmltext = "30022-04.htm"
return htmltext
diff --git a/Datapack/data/jscript/quests/409_PathToOracle/__init__.py b/Datapack/data/jscript/quests/409_PathToOracle/__init__.py
index 1a778b7d..7943b9cb 100644
--- a/Datapack/data/jscript/quests/409_PathToOracle/__init__.py
+++ b/Datapack/data/jscript/quests/409_PathToOracle/__init__.py
@@ -23,23 +23,23 @@ def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr)
def onEvent (self,event,st) :
htmltext = event
level = st.getPlayer().getLevel()
- classId = st.getPlayer().getClassId().getId()
+ playerClass = st.getPlayer().getPlayerClass().getId()
if event == "1" :
st.set("id","0")
- if level >= 19 and classId == 0x19 and st.getQuestItemsCount(LEAF_OF_ORACLE) == 0 :
+ if level >= 19 and playerClass == 0x19 and st.getQuestItemsCount(LEAF_OF_ORACLE) == 0 :
st.set("cond","1")
st.setState(STARTED)
st.playSound("ItemSound.quest_accept")
st.giveItems(CRYSTAL_MEDALLION,1)
htmltext = "30293-05.htm"
- elif classId != 0x19 :
- if classId == 0x1d :
+ elif playerClass != 0x19 :
+ if playerClass == 0x1d :
htmltext = "30293-02a.htm"
else:
htmltext = "30293-02.htm"
- elif level<19 and classId == 0x19 :
+ elif level<19 and playerClass == 0x19 :
htmltext = "30293-03.htm"
- elif level >= 19 and classId == 0x19 and st.getQuestItemsCount(LEAF_OF_ORACLE) == 1 :
+ elif level >= 19 and playerClass == 0x19 and st.getQuestItemsCount(LEAF_OF_ORACLE) == 1 :
htmltext = "30293-04.htm"
elif event == "30424-08.htm" :
if st.getInt("cond") :
diff --git a/Datapack/data/jscript/quests/410_PathToPalusKnight/__init__.py b/Datapack/data/jscript/quests/410_PathToPalusKnight/__init__.py
index eb036220..05ecf0eb 100644
--- a/Datapack/data/jscript/quests/410_PathToPalusKnight/__init__.py
+++ b/Datapack/data/jscript/quests/410_PathToPalusKnight/__init__.py
@@ -24,7 +24,7 @@ def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr)
def onEvent (self,event,st) :
htmltext = event
level = st.getPlayer().getLevel()
- classId = st.getPlayer().getClassId().getId()
+ playerClass = st.getPlayer().getPlayerClass().getId()
if event == "1" :
st.set("id","0")
st.set("cond","1")
@@ -33,17 +33,17 @@ def onEvent (self,event,st) :
htmltext = "30329-06.htm"
st.giveItems(PALLUS_TALISMAN,1)
elif event == "410_1" :
- if level >= 19 and classId == 0x1f and st.getQuestItemsCount(GAZE_OF_ABYSS) == 0 :
+ if level >= 19 and playerClass == 0x1f and st.getQuestItemsCount(GAZE_OF_ABYSS) == 0 :
htmltext = "30329-05.htm"
return htmltext
- elif classId != 0x1f :
- if classId == 0x20 :
+ elif playerClass != 0x1f :
+ if playerClass == 0x20 :
htmltext = "30329-02a.htm"
else:
htmltext = "30329-03.htm"
- elif level<19 and classId == 0x1f :
+ elif level<19 and playerClass == 0x1f :
htmltext = "30329-02.htm"
- elif level >= 19 and classId == 0x1f and st.getQuestItemsCount(GAZE_OF_ABYSS) == 1 :
+ elif level >= 19 and playerClass == 0x1f and st.getQuestItemsCount(GAZE_OF_ABYSS) == 1 :
htmltext = "30329-04.htm"
elif event == "30329_2" :
htmltext = "30329-10.htm"
diff --git a/Datapack/data/jscript/quests/411_PathToAssassin/__init__.py b/Datapack/data/jscript/quests/411_PathToAssassin/__init__.py
index 0a17534d..019e09c5 100644
--- a/Datapack/data/jscript/quests/411_PathToAssassin/__init__.py
+++ b/Datapack/data/jscript/quests/411_PathToAssassin/__init__.py
@@ -23,24 +23,24 @@ def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr)
def onEvent (self,event,st) :
htmltext = event
level = st.getPlayer().getLevel()
- classId = st.getPlayer().getClassId().getId()
+ playerClass = st.getPlayer().getPlayerClass().getId()
if event == "1" :
- if level >= 19 and classId == 0x1f and st.getQuestItemsCount(IRON_HEART) == 0 :
+ if level >= 19 and playerClass == 0x1f and st.getQuestItemsCount(IRON_HEART) == 0 :
st.set("cond","1")
st.setState(STARTED)
st.playSound("ItemSound.quest_accept")
st.giveItems(SHILENS_CALL,1)
htmltext = "30416-05.htm"
- elif classId != 0x1f :
- if classId == 0x23 :
+ elif playerClass != 0x1f :
+ if playerClass == 0x23 :
htmltext = "30416-02a.htm"
else:
htmltext = "30416-02.htm"
st.exitQuest(1)
- elif level<19 and classId == 0x1f :
+ elif level<19 and playerClass == 0x1f :
htmltext = "30416-03.htm"
st.exitQuest(1)
- elif level >= 19 and classId == 0x1f and st.getQuestItemsCount(IRON_HEART) == 1 :
+ elif level >= 19 and playerClass == 0x1f and st.getQuestItemsCount(IRON_HEART) == 1 :
htmltext = "30416-04.htm"
elif event == "30419_1" :
htmltext = "30419-05.htm"
diff --git a/Datapack/data/jscript/quests/412_PathToDarkwizard/__init__.py b/Datapack/data/jscript/quests/412_PathToDarkwizard/__init__.py
index b2e2e084..3b77aa1d 100644
--- a/Datapack/data/jscript/quests/412_PathToDarkwizard/__init__.py
+++ b/Datapack/data/jscript/quests/412_PathToDarkwizard/__init__.py
@@ -27,24 +27,24 @@ def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr)
def onEvent (self,event,st) :
htmltext = event
level = st.getPlayer().getLevel()
- classId = st.getPlayer().getClassId().getId()
+ playerClass = st.getPlayer().getPlayerClass().getId()
if event == "1" :
st.set("id","0")
if st.getInt("cond") == 0 :
- if level >= 19 and classId == 0x26 and st.getQuestItemsCount(JEWEL_OF_DARKNESS) == 0 :
+ if level >= 19 and playerClass == 0x26 and st.getQuestItemsCount(JEWEL_OF_DARKNESS) == 0 :
st.set("cond","1")
st.setState(STARTED)
st.playSound("ItemSound.quest_accept")
st.giveItems(SEEDS_OF_DESPAIR,1)
htmltext = "30421-05.htm"
- elif classId != 0x26 :
- if classId == 0x27 :
+ elif playerClass != 0x26 :
+ if playerClass == 0x27 :
htmltext = "30421-02a.htm"
else:
htmltext = "30421-03.htm"
- elif level<19 and classId == 0x26 :
+ elif level<19 and playerClass == 0x26 :
htmltext = "30421-02.htm"
- elif level >= 19 and classId == 0x26 and st.getQuestItemsCount(JEWEL_OF_DARKNESS) == 1 :
+ elif level >= 19 and playerClass == 0x26 and st.getQuestItemsCount(JEWEL_OF_DARKNESS) == 1 :
htmltext = "30421-04.htm"
elif event == "412_1" :
if st.getQuestItemsCount(SEEDS_OF_ANGER) :
diff --git a/Datapack/data/jscript/quests/413_PathToShillienOracle/__init__.py b/Datapack/data/jscript/quests/413_PathToShillienOracle/__init__.py
index e88bd37f..fff1d4f4 100644
--- a/Datapack/data/jscript/quests/413_PathToShillienOracle/__init__.py
+++ b/Datapack/data/jscript/quests/413_PathToShillienOracle/__init__.py
@@ -25,7 +25,7 @@ def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr)
def onEvent (self,event,st) :
htmltext = event
level = st.getPlayer().getLevel()
- classId = st.getPlayer().getClassId().getId()
+ playerClass = st.getPlayer().getPlayerClass().getId()
if event == "1" :
st.set("id","0")
htmltext = "30330-06.htm"
@@ -34,17 +34,17 @@ def onEvent (self,event,st) :
st.playSound("ItemSound.quest_accept")
st.giveItems(SIDRAS_LETTER1,1)
elif event == "413_1" :
- if level >= 19 and classId == 0x26 and st.getQuestItemsCount(ORB_OF_ABYSS) == 0 :
+ if level >= 19 and playerClass == 0x26 and st.getQuestItemsCount(ORB_OF_ABYSS) == 0 :
htmltext = "30330-05.htm"
return htmltext
- elif classId != 0x26 :
- if classId == 0x2a :
+ elif playerClass != 0x26 :
+ if playerClass == 0x2a :
htmltext = "30330-02a.htm"
else:
htmltext = "30330-03.htm"
- elif level<19 and classId == 0x26 :
+ elif level<19 and playerClass == 0x26 :
htmltext = "30330-02.htm"
- elif level >= 19 and classId == 0x26 and st.getQuestItemsCount(ORB_OF_ABYSS) == 1 :
+ elif level >= 19 and playerClass == 0x26 and st.getQuestItemsCount(ORB_OF_ABYSS) == 1 :
htmltext = "30330-04.htm"
elif event == "30377_1" :
htmltext = "30377-02.htm"
diff --git a/Datapack/data/jscript/quests/417_PathToScavenger/__init__.py b/Datapack/data/jscript/quests/417_PathToScavenger/__init__.py
index f5ab5581..414fb0d6 100644
--- a/Datapack/data/jscript/quests/417_PathToScavenger/__init__.py
+++ b/Datapack/data/jscript/quests/417_PathToScavenger/__init__.py
@@ -32,23 +32,23 @@ def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr)
def onEvent (self,event,st) :
htmltext = event
level = st.getPlayer().getLevel()
- classId = st.getPlayer().getClassId().getId()
+ playerClass = st.getPlayer().getPlayerClass().getId()
if event == "1" :
st.set("id","0")
- if level >= 19 and classId == 0x35 and st.getQuestItemsCount(RING_OF_RAVEN) == 0 :
+ if level >= 19 and playerClass == 0x35 and st.getQuestItemsCount(RING_OF_RAVEN) == 0 :
st.set("cond","1")
st.setState(STARTED)
st.playSound("ItemSound.quest_accept")
st.giveItems(PIPIS_LETTER,1)
htmltext = "30524-05.htm"
- elif classId != 0x35 :
- if classId == 0x36 :
+ elif playerClass != 0x35 :
+ if playerClass == 0x36 :
htmltext = "30524-02a.htm"
else:
htmltext = "30524-08.htm"
- elif level < 19 and classId == 0x35 :
+ elif level < 19 and playerClass == 0x35 :
htmltext = "30524-02.htm"
- elif level >= 19 and classId == 0x35 and st.getQuestItemsCount(RING_OF_RAVEN) == 1 :
+ elif level >= 19 and playerClass == 0x35 and st.getQuestItemsCount(RING_OF_RAVEN) == 1 :
htmltext = "30524-04.htm"
elif event == "30519_1" :
if st.getQuestItemsCount(PIPIS_LETTER):
diff --git a/Datapack/data/jscript/quests/503_PursuitClanAmbition/__init__.py b/Datapack/data/jscript/quests/503_PursuitClanAmbition/__init__.py
index 01b22176..cf8f7d43 100644
--- a/Datapack/data/jscript/quests/503_PursuitClanAmbition/__init__.py
+++ b/Datapack/data/jscript/quests/503_PursuitClanAmbition/__init__.py
@@ -2,13 +2,16 @@
# questdevs Team
import sys
-from java.util import Iterator
-from com.l2jbr.commons.util import Rnd
-from com.l2jbr.gameserver.serverpackets import CreatureSay
-from com.l2jbr.gameserver.model.quest import State
-from com.l2jbr.gameserver.model.quest import QuestState
-from com.l2jbr.gameserver.model.quest.jython import QuestJython as JQuest
-from com.l2jbr.commons import L2DatabaseFactory
+from java.util import Iterator
+from com.l2jbr.commons.util import Rnd
+from com.l2jbr.gameserver.serverpackets import CreatureSay
+from com.l2jbr.gameserver.model.quest import State
+from com.l2jbr.gameserver.model.quest import QuestState
+from com.l2jbr.gameserver.model.quest.jython import QuestJython as JQuest
+from com.l2jbr.commons.database import L2DatabaseFactory
+from com.l2jbr.commons.database import DatabaseAccess
+from com.l2jbr.gameserver.model.entity.database.repository import CharacterQuestsRepository
+from com.l2jbr.gameserver.model.entity.database import CharacterQuests
qn = "503_PursuitClanAmbition"
qd = "Pursuit Clan Ambition"
@@ -64,21 +67,13 @@ def suscribe_members(st) :
clan=st.getPlayer().getClan().getClanId()
con=L2DatabaseFactory.getInstance().getConnection()
offline=con.prepareStatement("SELECT obj_Id FROM characters WHERE clanid=? AND online=0")
+ repository = DatabaseAccess.getRepository(CharacterQuestsRepository)
offline.setInt(1, clan)
rs=offline.executeQuery()
while (rs.next()) :
char_id=rs.getInt("obj_Id")
- try :
- insertion = con.prepareStatement("INSERT INTO character_quests (char_id,name,var,value) VALUES (?,?,?,?)")
- insertion.setInt(1, char_id)
- insertion.setString(2, qn)
- insertion.setString(3, "")
- insertion.setString(4, "Progress")
- insertion.executeUpdate()
- insertion.close();
- except :
- try : insertion.close()
- except : pass
+ characterQuest = CharacterQuests(char_id, qn, "", "Progress")
+ repository.save(characterQuest)
try :
con.close()
except :
@@ -86,17 +81,8 @@ def suscribe_members(st) :
def offlineMemberExit(st) :
clan=st.getPlayer().getClan().getClanId()
- con=L2DatabaseFactory.getInstance().getConnection()
- offline=con.prepareStatement("DELETE FROM character_quests WHERE name = ? and char_id IN (SELECT obj_id FROM characters WHERE clanId =? AND online=0")
- offline.setString(1, qn)
- offline.setInt(2, clan)
- try :
- offline.executeUpdate()
- offline.close()
- con.close()
- except :
- try : con.close()
- except : pass
+ repository = DatabaseAccess.getRepository(CharacterQuestsRepository)
+ repository.deleteAllByOfflineClanMembers(qn, clan)
# returns leaders quest cond, if he is offline will read out of database :)
def getLeaderVar(st, var) :
@@ -110,23 +96,11 @@ def getLeaderVar(st, var) :
except :
pass
leaderId=st.getPlayer().getClan().getLeaderId()
- con=L2DatabaseFactory.getInstance().getConnection()
- offline=con.prepareStatement("SELECT value FROM character_quests WHERE char_id=? AND var=? AND name=?")
- offline.setInt(1, leaderId)
- offline.setString(2, var)
- offline.setString(3, qn)
- rs=offline.executeQuery()
- if rs :
- rs.next()
- try :
- val=rs.getInt("value")
- con.close()
- except :
- val=-1
- try : con.close()
- except : pass
- else :
- val=-1
+ repository = DatabaseAccess.getRepository(CharacterQuestsRepository)
+ characterQuests = repository.findByNameAndVar(leaderId, qn, var);
+ val = -1
+ for characterQuest in characterQuests:
+ val = characterQuest.getValue()
return int(val)
# set's leaders quest cond, if he is offline will read out of database :)
@@ -140,19 +114,8 @@ def setLeaderVar(st, var, value) :
leader.getQuestState(qn).set(var,value)
else :
leaderId=st.getPlayer().getClan().getLeaderId()
- con=L2DatabaseFactory.getInstance().getConnection()
- offline=con.prepareStatement("UPDATE character_quests SET value=? WHERE char_id=? AND var=? AND name=?")
- offline.setString(1, value)
- offline.setInt(2, leaderId)
- offline.setString(3, var)
- offline.setString(4, qn)
- try :
- offline.executeUpdate()
- offline.close()
- con.close()
- except :
- try : con.close()
- except : pass
+ repository = DatabaseAccess.getRepository(CharacterQuestsRepository)
+ repository.updateQuestVar(leaderId, qn, var, value)
return
def checkEggs(st):
@@ -224,7 +187,7 @@ def onEvent (self,event,st) :
elif event == "30645-03.htm":
st.takeItems(G_Let_Martien,-1)
st.set("cond","2")
- suscribe_members(st)
+ suscribe_members(st)
try:
members = st.getPlayer().getClan().getOnlineMembers("")[0]
for i in members:
diff --git a/Datapack/data/jscript/quests/SagasSuperclass/__init__.py b/Datapack/data/jscript/quests/SagasSuperclass/__init__.py
index 1bbecdd5..c81413fe 100644
--- a/Datapack/data/jscript/quests/SagasSuperclass/__init__.py
+++ b/Datapack/data/jscript/quests/SagasSuperclass/__init__.py
@@ -6,8 +6,8 @@
from com.l2jbr.gameserver.serverpackets import CreatureSay
from com.l2jbr.gameserver.datatables import SpawnTable
from com.l2jbr.gameserver.model import L2Spawn
-from com.l2jbr.gameserver.ai import CtrlIntention
-from com.l2jbr.gameserver.ai import CtrlEvent
+from com.l2jbr.gameserver.ai import Intention
+from com.l2jbr.gameserver.ai import Event
from com.l2jbr.gameserver.serverpackets import MagicSkillUser
from com.l2jbr.gameserver.model import L2World
from java.util import Iterator
@@ -140,7 +140,7 @@ def giveHallishaMark(self, st2) :
st2.startQuestTimer("Archon Hellisha has despawned",600000,Archon)
self.AutoChat(Archon,self.Text[13].replace('PLAYERNAME',st2.getPlayer().getName()))
Archon.addDamageHate(st2.getPlayer(),0,99999)
- Archon.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK,st2.getPlayer(),None)
+ Archon.getAI().setIntention(Intention.AI_INTENTION_ATTACK,st2.getPlayer(),None)
else :
st2.giveItems(self.Items[3],1)
return
@@ -334,9 +334,9 @@ def onAdvEvent (self,event,npc, player) :
Mob_2 = self.FindSpawn(player,st.getInt("Mob_2"))
if npc.getKnownList().knowsObject(Mob_2) :
npc.addDamageHate(Mob_2,0,99999)
- npc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK,Mob_2,None)
+ npc.getAI().setIntention(Intention.AI_INTENTION_ATTACK,Mob_2,None)
#Mob_2.addDamageHate(npc,0,99999)
- Mob_2.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK,npc,None)
+ Mob_2.getAI().setIntention(Intention.AI_INTENTION_ATTACK,npc,None)
self.AutoChat(npc,self.Text[14].replace('PLAYERNAME',player.getName()))
else :
st.startQuestTimer("Mob_3 Timer 1",500,npc)
diff --git a/Datapack/data/jscript/village_master/9001_alliance/9001-02.htm b/Datapack/data/jscript/village_master/9001_alliance/9001-02.htm
index 968b956d..c6a7da0e 100644
--- a/Datapack/data/jscript/village_master/9001_alliance/9001-02.htm
+++ b/Datapack/data/jscript/village_master/9001_alliance/9001-02.htm
@@ -1,38 +1,39 @@
-
-
-
-Create Alliance:
-
-Enter Alliance Name:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+Create Alliance:
+
+Enter Alliance Name:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/jscript/village_master/dark_elven_change_1/__init__.py b/Datapack/data/jscript/village_master/dark_elven_change_1/__init__.py
index 9c6376ca..340a50f1 100644
--- a/Datapack/data/jscript/village_master/dark_elven_change_1/__init__.py
+++ b/Datapack/data/jscript/village_master/dark_elven_change_1/__init__.py
@@ -80,8 +80,8 @@ def onTalk (self,npc,player):
st = player.getQuestState(qn)
npcId = npc.getNpcId()
race = player.getRace().ordinal()
- classId = player.getClassId()
- id = classId.getId()
+ playerClass = player.getPlayerClass()
+ id = playerClass.getId()
htmltext = default
if player.isSubClassActive() :
st.exitQuest(1)
@@ -90,9 +90,9 @@ def onTalk (self,npc,player):
if npcId in NPCS :
htmltext = str(npcId)
if race in [2] :
- if classId.level() == 1 : # first occupation change already made
+ if playerClass.level() == 1 : # first occupation change already made
htmltext += "-32.htm"
- elif classId.level() >= 2 : # second/third occupation change already made
+ elif playerClass.level() >= 2 : # second/third occupation change already made
htmltext += "-31.htm"
elif id == 31 : # DE Fighter
return htmltext+"-01.htm"
diff --git a/Datapack/data/jscript/village_master/dark_elven_change_2/__init__.py b/Datapack/data/jscript/village_master/dark_elven_change_2/__init__.py
index b2d140de..71b2edd8 100644
--- a/Datapack/data/jscript/village_master/dark_elven_change_2/__init__.py
+++ b/Datapack/data/jscript/village_master/dark_elven_change_2/__init__.py
@@ -94,8 +94,8 @@ def onTalk (self,npc,player):
st = player.getQuestState(qn)
npcId = npc.getNpcId()
race = player.getRace().ordinal()
- classId = player.getClassId()
- id = classId.getId()
+ playerClass = player.getPlayerClass()
+ id = playerClass.getId()
htmltext = default
if player.isSubClassActive() :
st.exitQuest(1)
@@ -112,9 +112,9 @@ def onTalk (self,npc,player):
return htmltext+"-12.htm"
elif id == 39 : # dark wizard
return htmltext+"-19.htm"
- elif classId.level() == 0 : # first occupation change not made yet
+ elif playerClass.level() == 0 : # first occupation change not made yet
htmltext += "-55.htm"
- elif classId.level() >= 2 : # second/third occupation change already made
+ elif playerClass.level() >= 2 : # second/third occupation change already made
htmltext += "-54.htm"
else :
htmltext += "-56.htm" # other conditions
diff --git a/Datapack/data/jscript/village_master/elven_human_buffers_2/__init__.py b/Datapack/data/jscript/village_master/elven_human_buffers_2/__init__.py
index 80e02294..c94c3309 100644
--- a/Datapack/data/jscript/village_master/elven_human_buffers_2/__init__.py
+++ b/Datapack/data/jscript/village_master/elven_human_buffers_2/__init__.py
@@ -81,8 +81,8 @@ def onTalk (self,npc,player):
st = player.getQuestState(qn)
npcId = npc.getNpcId()
race = player.getRace().ordinal()
- classId = player.getClassId()
- id = classId.getId()
+ playerClass = player.getPlayerClass()
+ id = playerClass.getId()
htmltext = default
if player.isSubClassActive() :
st.exitQuest(1)
@@ -95,9 +95,9 @@ def onTalk (self,npc,player):
return htmltext+"-01.htm"
elif id == 15 : # cleric
return htmltext+"-05.htm"
- elif classId.level() == 0 : # first occupation change not made yet
+ elif playerClass.level() == 0 : # first occupation change not made yet
htmltext += "-24.htm"
- elif classId.level() >= 2 : # second/third occupation change already made
+ elif playerClass.level() >= 2 : # second/third occupation change already made
htmltext += "-25.htm"
else :
htmltext += "-26.htm" # other conditions
diff --git a/Datapack/data/jscript/village_master/elven_human_fighters_1/__init__.py b/Datapack/data/jscript/village_master/elven_human_fighters_1/__init__.py
index b0c56524..e367ef10 100644
--- a/Datapack/data/jscript/village_master/elven_human_fighters_1/__init__.py
+++ b/Datapack/data/jscript/village_master/elven_human_fighters_1/__init__.py
@@ -82,8 +82,8 @@ def onTalk (self,npc,player):
st = player.getQuestState(qn)
npcId = npc.getNpcId()
race = player.getRace().ordinal()
- classId = player.getClassId()
- id = classId.getId()
+ playerClass = player.getPlayerClass()
+ id = playerClass.getId()
htmltext = default
if player.isSubClassActive() :
st.exitQuest(1)
@@ -92,9 +92,9 @@ def onTalk (self,npc,player):
if npcId in NPCS :
htmltext = str(npcId)
if race in [0,1] :
- if classId.level() == 1 : # first occupation change already made
+ if playerClass.level() == 1 : # first occupation change already made
htmltext += "-38.htm"
- elif classId.level() >= 2 : # second/third occupation change already made
+ elif playerClass.level() >= 2 : # second/third occupation change already made
htmltext += "-39.htm"
elif id == 18 : # elven fighter
return htmltext+"-01.htm"
diff --git a/Datapack/data/jscript/village_master/elven_human_mystics_1/__init__.py b/Datapack/data/jscript/village_master/elven_human_mystics_1/__init__.py
index 5e928f1c..391b6d5b 100644
--- a/Datapack/data/jscript/village_master/elven_human_mystics_1/__init__.py
+++ b/Datapack/data/jscript/village_master/elven_human_mystics_1/__init__.py
@@ -80,8 +80,8 @@ def onTalk (self,npc,player):
st = player.getQuestState(qn)
npcId = npc.getNpcId()
race = player.getRace().ordinal()
- classId = player.getClassId()
- id = classId.getId()
+ playerClass = player.getPlayerClass()
+ id = playerClass.getId()
htmltext = default
if player.isSubClassActive() :
st.exitQuest(1)
@@ -90,11 +90,11 @@ def onTalk (self,npc,player):
if npcId in NPCS :
htmltext = str(npcId)
if race in [0,1] :
- if not classId.isMage() : # all elf/human fighters from all occupation levels
+ if not playerClass.isMage() : # all elf/human fighters from all occupation levels
htmltext += "-33.htm"
- elif classId.level() == 1 : # first occupation change already made
+ elif playerClass.level() == 1 : # first occupation change already made
htmltext += "-31.htm"
- elif classId.level() >= 2 : # second/third occupation change already made
+ elif playerClass.level() >= 2 : # second/third occupation change already made
htmltext += "-32.htm"
elif id == 0x19 : # elven mystic
return htmltext+"-01.htm"
diff --git a/Datapack/data/jscript/village_master/elven_human_mystics_2/__init__.py b/Datapack/data/jscript/village_master/elven_human_mystics_2/__init__.py
index 2b1afca1..5d0a4bbd 100644
--- a/Datapack/data/jscript/village_master/elven_human_mystics_2/__init__.py
+++ b/Datapack/data/jscript/village_master/elven_human_mystics_2/__init__.py
@@ -84,8 +84,8 @@ def onTalk (self,npc,player):
st = player.getQuestState(qn)
npcId = npc.getNpcId()
race = player.getRace().ordinal()
- classId = player.getClassId()
- id = classId.getId()
+ playerClass = player.getPlayerClass()
+ id = playerClass.getId()
htmltext = default
if player.isSubClassActive() :
st.exitQuest(1)
@@ -98,13 +98,13 @@ def onTalk (self,npc,player):
return htmltext+"-01.htm"
elif id == 11 : # human wizard
return htmltext+"-08.htm"
- elif not classId.isMage() : # all elf/human fighters from all occupation levels
+ elif not playerClass.isMage() : # all elf/human fighters from all occupation levels
htmltext += "-40.htm"
- elif classId.level() == 0 : # first occupation change not made yet
+ elif playerClass.level() == 0 : # first occupation change not made yet
htmltext += "-38.htm"
- elif classId.level() == 1 : # buffers/oracles
+ elif playerClass.level() == 1 : # buffers/oracles
htmltext += "-40.htm"
- elif classId.level() >= 2 : # second/third occupation change already made
+ elif playerClass.level() >= 2 : # second/third occupation change already made
htmltext += "-39.htm"
else :
htmltext += "-40.htm" # other races
diff --git a/Datapack/data/jscript/village_master/orc_occupation_change_1/__init__.py b/Datapack/data/jscript/village_master/orc_occupation_change_1/__init__.py
index 1c39f8af..5eeb3322 100644
--- a/Datapack/data/jscript/village_master/orc_occupation_change_1/__init__.py
+++ b/Datapack/data/jscript/village_master/orc_occupation_change_1/__init__.py
@@ -78,8 +78,8 @@ def onTalk (self,npc,player):
st = player.getQuestState(qn)
npcId = npc.getNpcId()
race = player.getRace().ordinal()
- classId = player.getClassId()
- id = classId.getId()
+ playerClass = player.getPlayerClass()
+ id = playerClass.getId()
htmltext = default
if player.isSubClassActive() :
st.exitQuest(1)
@@ -88,9 +88,9 @@ def onTalk (self,npc,player):
if npcId in NPCS :
htmltext = str(npcId)
if race in [3] :
- if classId.level() == 1 : # first occupation change already made
+ if playerClass.level() == 1 : # first occupation change already made
htmltext += "-21.htm"
- elif classId.level() >= 2 : # second/third occupation change already made
+ elif playerClass.level() >= 2 : # second/third occupation change already made
htmltext += "-22.htm"
elif id == 44 : # Orc Fighter
return htmltext+"-01.htm"
diff --git a/Datapack/data/jscript/village_master/orc_occupation_change_2/__init__.py b/Datapack/data/jscript/village_master/orc_occupation_change_2/__init__.py
index 9d0d23b8..3888769a 100644
--- a/Datapack/data/jscript/village_master/orc_occupation_change_2/__init__.py
+++ b/Datapack/data/jscript/village_master/orc_occupation_change_2/__init__.py
@@ -85,8 +85,8 @@ def onTalk (self,npc,player):
st = player.getQuestState(qn)
npcId = npc.getNpcId()
race = player.getRace().ordinal()
- classId = player.getClassId()
- id = classId.getId()
+ playerClass = player.getPlayerClass()
+ id = playerClass.getId()
htmltext = default
if player.isSubClassActive() :
st.exitQuest(1)
@@ -101,9 +101,9 @@ def onTalk (self,npc,player):
return htmltext+"-05.htm"
elif id == 50 : # orc shaman
return htmltext+"-09.htm"
- elif classId.level() == 0 : # first occupation change not made yet
+ elif playerClass.level() == 0 : # first occupation change not made yet
htmltext += "-33.htm"
- elif classId.level() >= 2 : # second/third occupation change already made
+ elif playerClass.level() >= 2 : # second/third occupation change already made
htmltext += "-32.htm"
else :
htmltext += "-34.htm" # other races
diff --git a/Datapack/data/stats/armor/0000-0099.xml b/Datapack/data/stats/armor/0000-0099.xml
index e27a57eb..cf766741 100644
--- a/Datapack/data/stats/armor/0000-0099.xml
+++ b/Datapack/data/stats/armor/0000-0099.xml
@@ -1,229 +1,189 @@
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/0100-0299.xml b/Datapack/data/stats/armor/0100-0299.xml
index a1f80123..bf6e9ab8 100644
--- a/Datapack/data/stats/armor/0100-0299.xml
+++ b/Datapack/data/stats/armor/0100-0299.xml
@@ -1,45 +1,40 @@
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/0300-0399.xml b/Datapack/data/stats/armor/0300-0399.xml
index 5c0e1504..10ab0400 100644
--- a/Datapack/data/stats/armor/0300-0399.xml
+++ b/Datapack/data/stats/armor/0300-0399.xml
@@ -1,320 +1,268 @@
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/0400-0499.xml b/Datapack/data/stats/armor/0400-0499.xml
index 01c6fbf1..a58bdab0 100644
--- a/Datapack/data/stats/armor/0400-0499.xml
+++ b/Datapack/data/stats/armor/0400-0499.xml
@@ -1,651 +1,554 @@
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
diff --git a/Datapack/data/stats/armor/0500-0599.xml b/Datapack/data/stats/armor/0500-0599.xml
index 30cb2350..9949fd88 100644
--- a/Datapack/data/stats/armor/0500-0599.xml
+++ b/Datapack/data/stats/armor/0500-0599.xml
@@ -1,603 +1,602 @@
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/0600-0699.xml b/Datapack/data/stats/armor/0600-0699.xml
index 7e1f35ec..4eaea658 100644
--- a/Datapack/data/stats/armor/0600-0699.xml
+++ b/Datapack/data/stats/armor/0600-0699.xml
@@ -1,216 +1,219 @@
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/0800-0899.xml b/Datapack/data/stats/armor/0800-0899.xml
index 08f5157e..c9fa8b93 100644
--- a/Datapack/data/stats/armor/0800-0899.xml
+++ b/Datapack/data/stats/armor/0800-0899.xml
@@ -1,332 +1,335 @@
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/0900-0999.xml b/Datapack/data/stats/armor/0900-0999.xml
index 723afc09..257a3b1e 100644
--- a/Datapack/data/stats/armor/0900-0999.xml
+++ b/Datapack/data/stats/armor/0900-0999.xml
@@ -1,275 +1,278 @@
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/1000-1099.xml b/Datapack/data/stats/armor/1000-1099.xml
index 20089fdf..ab644859 100644
--- a/Datapack/data/stats/armor/1000-1099.xml
+++ b/Datapack/data/stats/armor/1000-1099.xml
@@ -1,8 +1,8 @@
-
--
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/1100-1199.xml b/Datapack/data/stats/armor/1100-1199.xml
index 93ad038b..b6c7424c 100644
--- a/Datapack/data/stats/armor/1100-1199.xml
+++ b/Datapack/data/stats/armor/1100-1199.xml
@@ -1,122 +1,124 @@
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
-
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+
diff --git a/Datapack/data/stats/armor/1300-1399.xml b/Datapack/data/stats/armor/1300-1399.xml
index b4e133a1..696bd773 100644
--- a/Datapack/data/stats/armor/1300-1399.xml
+++ b/Datapack/data/stats/armor/1300-1399.xml
@@ -1,107 +1,110 @@
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/1500-1599.xml b/Datapack/data/stats/armor/1500-1599.xml
index c6548d09..ecb56821 100644
--- a/Datapack/data/stats/armor/1500-1599.xml
+++ b/Datapack/data/stats/armor/1500-1599.xml
@@ -1,23 +1,18 @@
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/2300-2399.xml b/Datapack/data/stats/armor/2300-2399.xml
index 35b201b4..ec14336c 100644
--- a/Datapack/data/stats/armor/2300-2399.xml
+++ b/Datapack/data/stats/armor/2300-2399.xml
@@ -1,150 +1,153 @@
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/2400-2499.xml b/Datapack/data/stats/armor/2400-2499.xml
index b0159776..062a4459 100644
--- a/Datapack/data/stats/armor/2400-2499.xml
+++ b/Datapack/data/stats/armor/2400-2499.xml
@@ -1,569 +1,570 @@
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/2500-2599.xml b/Datapack/data/stats/armor/2500-2599.xml
index ae8b34cc..c540953b 100644
--- a/Datapack/data/stats/armor/2500-2599.xml
+++ b/Datapack/data/stats/armor/2500-2599.xml
@@ -1,9 +1,11 @@
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/3800-3899.xml b/Datapack/data/stats/armor/3800-3899.xml
index 45789824..6316d57c 100644
--- a/Datapack/data/stats/armor/3800-3899.xml
+++ b/Datapack/data/stats/armor/3800-3899.xml
@@ -1,57 +1,59 @@
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/3900-3999.xml b/Datapack/data/stats/armor/3900-3999.xml
index 15c300a9..ac033d13 100644
--- a/Datapack/data/stats/armor/3900-3999.xml
+++ b/Datapack/data/stats/armor/3900-3999.xml
@@ -1,57 +1,59 @@
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/4200-4299.xml b/Datapack/data/stats/armor/4200-4299.xml
index 27074781..753985f6 100644
--- a/Datapack/data/stats/armor/4200-4299.xml
+++ b/Datapack/data/stats/armor/4200-4299.xml
@@ -1,61 +1,64 @@
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/5100-5199.xml b/Datapack/data/stats/armor/5100-5199.xml
index c351fb3d..581f9b13 100644
--- a/Datapack/data/stats/armor/5100-5199.xml
+++ b/Datapack/data/stats/armor/5100-5199.xml
@@ -1,69 +1,72 @@
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/5200-5299.xml b/Datapack/data/stats/armor/5200-5299.xml
index bba1694e..0fecc296 100644
--- a/Datapack/data/stats/armor/5200-5299.xml
+++ b/Datapack/data/stats/armor/5200-5299.xml
@@ -1,81 +1,84 @@
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/5300-5399.xml b/Datapack/data/stats/armor/5300-5399.xml
index 4fdcd2ed..b3320106 100644
--- a/Datapack/data/stats/armor/5300-5399.xml
+++ b/Datapack/data/stats/armor/5300-5399.xml
@@ -1,194 +1,197 @@
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/5500-5599.xml b/Datapack/data/stats/armor/5500-5599.xml
index 9dcea9b2..4dbcccfd 100644
--- a/Datapack/data/stats/armor/5500-5599.xml
+++ b/Datapack/data/stats/armor/5500-5599.xml
@@ -1,13 +1,15 @@
-
--
-
-
-
-
--
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/5700-5799.xml b/Datapack/data/stats/armor/5700-5799.xml
index 45ab7ada..359a4a5e 100644
--- a/Datapack/data/stats/armor/5700-5799.xml
+++ b/Datapack/data/stats/armor/5700-5799.xml
@@ -1,339 +1,342 @@
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/5900-5999.xml b/Datapack/data/stats/armor/5900-5999.xml
index 560b60dc..8a87537f 100644
--- a/Datapack/data/stats/armor/5900-5999.xml
+++ b/Datapack/data/stats/armor/5900-5999.xml
@@ -1,8 +1,8 @@
-
--
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/6200-6299.xml b/Datapack/data/stats/armor/6200-6299.xml
index c6a55d3b..c5bbacd7 100644
--- a/Datapack/data/stats/armor/6200-6299.xml
+++ b/Datapack/data/stats/armor/6200-6299.xml
@@ -1,4 +1,6 @@
-
-
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/6300-6399.xml b/Datapack/data/stats/armor/6300-6399.xml
index 14ee23f1..aef6de5a 100644
--- a/Datapack/data/stats/armor/6300-6399.xml
+++ b/Datapack/data/stats/armor/6300-6399.xml
@@ -1,123 +1,125 @@
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/6400-6499.xml b/Datapack/data/stats/armor/6400-6499.xml
index 4ce37696..c6e8ad0a 100644
--- a/Datapack/data/stats/armor/6400-6499.xml
+++ b/Datapack/data/stats/armor/6400-6499.xml
@@ -1,14 +1,14 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/6600-6699.xml b/Datapack/data/stats/armor/6600-6699.xml
index 4ac06d86..586b660d 100644
--- a/Datapack/data/stats/armor/6600-6699.xml
+++ b/Datapack/data/stats/armor/6600-6699.xml
@@ -1,135 +1,138 @@
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/6800-6899.xml b/Datapack/data/stats/armor/6800-6899.xml
index 884d56fa..35aa56cf 100644
--- a/Datapack/data/stats/armor/6800-6899.xml
+++ b/Datapack/data/stats/armor/6800-6899.xml
@@ -1,68 +1,71 @@
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/7000-7099.xml b/Datapack/data/stats/armor/7000-7099.xml
index a0c03472..1bdf28d1 100644
--- a/Datapack/data/stats/armor/7000-7099.xml
+++ b/Datapack/data/stats/armor/7000-7099.xml
@@ -1,13 +1,16 @@
-
--
-
-
-
-
--
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/7600-7699.xml b/Datapack/data/stats/armor/7600-7699.xml
index abf9dc71..9772bc5a 100644
--- a/Datapack/data/stats/armor/7600-7699.xml
+++ b/Datapack/data/stats/armor/7600-7699.xml
@@ -1,48 +1,50 @@
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/7800-7899.xml b/Datapack/data/stats/armor/7800-7899.xml
index 1920bc56..f4bd7a52 100644
--- a/Datapack/data/stats/armor/7800-7899.xml
+++ b/Datapack/data/stats/armor/7800-7899.xml
@@ -1,251 +1,254 @@
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/8100-8199.xml b/Datapack/data/stats/armor/8100-8199.xml
index 330a40ac..c3032f8e 100644
--- a/Datapack/data/stats/armor/8100-8199.xml
+++ b/Datapack/data/stats/armor/8100-8199.xml
@@ -1,73 +1,75 @@
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/8500-8599.xml b/Datapack/data/stats/armor/8500-8599.xml
index 85bd20f5..692887ff 100644
--- a/Datapack/data/stats/armor/8500-8599.xml
+++ b/Datapack/data/stats/armor/8500-8599.xml
@@ -1,79 +1,81 @@
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/8600-8699.xml b/Datapack/data/stats/armor/8600-8699.xml
index 1be30428..e38e64ef 100644
--- a/Datapack/data/stats/armor/8600-8699.xml
+++ b/Datapack/data/stats/armor/8600-8699.xml
@@ -1,18 +1,19 @@
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/8900-8999.xml b/Datapack/data/stats/armor/8900-8999.xml
index 356eccb9..0ad73c3c 100644
--- a/Datapack/data/stats/armor/8900-8999.xml
+++ b/Datapack/data/stats/armor/8900-8999.xml
@@ -1,103 +1,105 @@
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/9000-9099.xml b/Datapack/data/stats/armor/9000-9099.xml
index 49051781..d83e1d34 100644
--- a/Datapack/data/stats/armor/9000-9099.xml
+++ b/Datapack/data/stats/armor/9000-9099.xml
@@ -1,337 +1,339 @@
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
diff --git a/Datapack/data/stats/armor/9100-9199.xml b/Datapack/data/stats/armor/9100-9199.xml
index a25d6b3d..c4cac628 100644
--- a/Datapack/data/stats/armor/9100-9199.xml
+++ b/Datapack/data/stats/armor/9100-9199.xml
@@ -1,169 +1,172 @@
-
--
-
-
-
-
--
-
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/armor/9200-9299.xml b/Datapack/data/stats/armor/9200-9299.xml
index 5360bb05..47800e03 100644
--- a/Datapack/data/stats/armor/9200-9299.xml
+++ b/Datapack/data/stats/armor/9200-9299.xml
@@ -1,33 +1,34 @@
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
--
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/item.xsd b/Datapack/data/stats/item.xsd
new file mode 100644
index 00000000..a6d8121c
--- /dev/null
+++ b/Datapack/data/stats/item.xsd
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/skills.xsd b/Datapack/data/stats/skills.xsd
new file mode 100644
index 00000000..4eae7443
--- /dev/null
+++ b/Datapack/data/stats/skills.xsd
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/skills/0000-0099.xml b/Datapack/data/stats/skills/0000-0099.xml
index b9c6ad9b..689ba41a 100644
--- a/Datapack/data/stats/skills/0000-0099.xml
+++ b/Datapack/data/stats/skills/0000-0099.xml
@@ -27,7 +27,10 @@
2535 2554 2573 2593 2612 2631 2650 2670 2689 2708
- 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
+ 38 39 40 41 42 43 44 45 46 47
+ 48 49 50 51 52 53 54 55 56 57
+ 58 59 60 61 62 63 64 65 66 67
+ 68 69 70 71 72 73 74
@@ -50,6 +53,7 @@
+
3 3 3 4 4 4 5 5 5 5 6 6 6 6 7 7 7 7 7
9 10 11 13 14 15 17 18 19 20 22 22 23 24 25 26 26 27 28
diff --git a/Datapack/data/stats/stat.xsd b/Datapack/data/stats/stat.xsd
new file mode 100644
index 00000000..f5158ecc
--- /dev/null
+++ b/Datapack/data/stats/stat.xsd
@@ -0,0 +1,221 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/0000-0099.xml b/Datapack/data/stats/weapon/0000-0099.xml
index 3d0fa4db..2ce6d647 100644
--- a/Datapack/data/stats/weapon/0000-0099.xml
+++ b/Datapack/data/stats/weapon/0000-0099.xml
@@ -1,585 +1,587 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/0100-0199.xml b/Datapack/data/stats/weapon/0100-0199.xml
index cb9ee14f..bbddb27d 100644
--- a/Datapack/data/stats/weapon/0100-0199.xml
+++ b/Datapack/data/stats/weapon/0100-0199.xml
@@ -1,985 +1,988 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/0200-0299.xml b/Datapack/data/stats/weapon/0200-0299.xml
index 775bc8ba..f62ea8eb 100644
--- a/Datapack/data/stats/weapon/0200-0299.xml
+++ b/Datapack/data/stats/weapon/0200-0299.xml
@@ -1,1112 +1,1114 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/0300-0399.xml b/Datapack/data/stats/weapon/0300-0399.xml
index a5be923b..e33e56ed 100644
--- a/Datapack/data/stats/weapon/0300-0399.xml
+++ b/Datapack/data/stats/weapon/0300-0399.xml
@@ -1,528 +1,531 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/0600-0699.xml b/Datapack/data/stats/weapon/0600-0699.xml
index f12cbf3c..ec1f94c5 100644
--- a/Datapack/data/stats/weapon/0600-0699.xml
+++ b/Datapack/data/stats/weapon/0600-0699.xml
@@ -1,403 +1,404 @@
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/0700-0799.xml b/Datapack/data/stats/weapon/0700-0799.xml
index d37d140e..f9961598 100644
--- a/Datapack/data/stats/weapon/0700-0799.xml
+++ b/Datapack/data/stats/weapon/0700-0799.xml
@@ -1,80 +1,83 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/0900-0999.xml b/Datapack/data/stats/weapon/0900-0999.xml
index a1cd84e4..be6a7e3d 100644
--- a/Datapack/data/stats/weapon/0900-0999.xml
+++ b/Datapack/data/stats/weapon/0900-0999.xml
@@ -1,55 +1,57 @@
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/1100-1199.xml b/Datapack/data/stats/weapon/1100-1199.xml
index 4784d2e6..8ee22006 100644
--- a/Datapack/data/stats/weapon/1100-1199.xml
+++ b/Datapack/data/stats/weapon/1100-1199.xml
@@ -1,36 +1,37 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/1200-1299.xml b/Datapack/data/stats/weapon/1200-1299.xml
index b20d5abe..a2698692 100644
--- a/Datapack/data/stats/weapon/1200-1299.xml
+++ b/Datapack/data/stats/weapon/1200-1299.xml
@@ -1,69 +1,70 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/1300-1399.xml b/Datapack/data/stats/weapon/1300-1399.xml
index 52385bc5..4f2be897 100644
--- a/Datapack/data/stats/weapon/1300-1399.xml
+++ b/Datapack/data/stats/weapon/1300-1399.xml
@@ -1,156 +1,157 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/1400-1499.xml b/Datapack/data/stats/weapon/1400-1499.xml
index 7c9303ee..ef1f8a50 100644
--- a/Datapack/data/stats/weapon/1400-1499.xml
+++ b/Datapack/data/stats/weapon/1400-1499.xml
@@ -1,26 +1,27 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/1500-1599.xml b/Datapack/data/stats/weapon/1500-1599.xml
index f43c138e..36c15974 100644
--- a/Datapack/data/stats/weapon/1500-1599.xml
+++ b/Datapack/data/stats/weapon/1500-1599.xml
@@ -1,25 +1,26 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/1600-1699.xml b/Datapack/data/stats/weapon/1600-1699.xml
index 53b227f7..f9f47caa 100644
--- a/Datapack/data/stats/weapon/1600-1699.xml
+++ b/Datapack/data/stats/weapon/1600-1699.xml
@@ -1,14 +1,15 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/2300-2399.xml b/Datapack/data/stats/weapon/2300-2399.xml
index d3cfcb1c..580195d3 100644
--- a/Datapack/data/stats/weapon/2300-2399.xml
+++ b/Datapack/data/stats/weapon/2300-2399.xml
@@ -1,80 +1,81 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/2400-2499.xml b/Datapack/data/stats/weapon/2400-2499.xml
index c7e5b5f6..e33831ee 100644
--- a/Datapack/data/stats/weapon/2400-2499.xml
+++ b/Datapack/data/stats/weapon/2400-2499.xml
@@ -1,62 +1,63 @@
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/2500-2599.xml b/Datapack/data/stats/weapon/2500-2599.xml
index cb05cd0b..9d4c3a33 100644
--- a/Datapack/data/stats/weapon/2500-2599.xml
+++ b/Datapack/data/stats/weapon/2500-2599.xml
@@ -1,1211 +1,1212 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/2600-2699.xml b/Datapack/data/stats/weapon/2600-2699.xml
index ba728fee..cb1f2efe 100644
--- a/Datapack/data/stats/weapon/2600-2699.xml
+++ b/Datapack/data/stats/weapon/2600-2699.xml
@@ -1,431 +1,432 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/2900-2999.xml b/Datapack/data/stats/weapon/2900-2999.xml
index 1aca9ab5..f8283651 100644
--- a/Datapack/data/stats/weapon/2900-2999.xml
+++ b/Datapack/data/stats/weapon/2900-2999.xml
@@ -1,14 +1,15 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/3000-3099.xml b/Datapack/data/stats/weapon/3000-3099.xml
index eb663694..0bd89ef5 100644
--- a/Datapack/data/stats/weapon/3000-3099.xml
+++ b/Datapack/data/stats/weapon/3000-3099.xml
@@ -1,48 +1,49 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/3400-3499.xml b/Datapack/data/stats/weapon/3400-3499.xml
index 48afca64..17292132 100644
--- a/Datapack/data/stats/weapon/3400-3499.xml
+++ b/Datapack/data/stats/weapon/3400-3499.xml
@@ -1,22 +1,23 @@
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/3900-3999.xml b/Datapack/data/stats/weapon/3900-3999.xml
index 5d0db224..5916b270 100644
--- a/Datapack/data/stats/weapon/3900-3999.xml
+++ b/Datapack/data/stats/weapon/3900-3999.xml
@@ -1,175 +1,176 @@
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/4000-4099.xml b/Datapack/data/stats/weapon/4000-4099.xml
index f48dde72..640aedf4 100644
--- a/Datapack/data/stats/weapon/4000-4099.xml
+++ b/Datapack/data/stats/weapon/4000-4099.xml
@@ -1,25 +1,26 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/4200-4299.xml b/Datapack/data/stats/weapon/4200-4299.xml
index 3bae8b37..f69e8a30 100644
--- a/Datapack/data/stats/weapon/4200-4299.xml
+++ b/Datapack/data/stats/weapon/4200-4299.xml
@@ -1,90 +1,91 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/4600-4699.xml b/Datapack/data/stats/weapon/4600-4699.xml
index 6f102cdb..08767b08 100644
--- a/Datapack/data/stats/weapon/4600-4699.xml
+++ b/Datapack/data/stats/weapon/4600-4699.xml
@@ -1,265 +1,266 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/4700-4799.xml b/Datapack/data/stats/weapon/4700-4799.xml
index 39ddfe5b..96148b44 100644
--- a/Datapack/data/stats/weapon/4700-4799.xml
+++ b/Datapack/data/stats/weapon/4700-4799.xml
@@ -1,1376 +1,1375 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/4800-4899.xml b/Datapack/data/stats/weapon/4800-4899.xml
index d62ac455..3e707e2d 100644
--- a/Datapack/data/stats/weapon/4800-4899.xml
+++ b/Datapack/data/stats/weapon/4800-4899.xml
@@ -1,1320 +1,1357 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/4900-4999.xml b/Datapack/data/stats/weapon/4900-4999.xml
index 6127814c..91f6fcf4 100644
--- a/Datapack/data/stats/weapon/4900-4999.xml
+++ b/Datapack/data/stats/weapon/4900-4999.xml
@@ -1,74 +1,76 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/5100-5199.xml b/Datapack/data/stats/weapon/5100-5199.xml
index 4625411e..c8e613ce 100644
--- a/Datapack/data/stats/weapon/5100-5199.xml
+++ b/Datapack/data/stats/weapon/5100-5199.xml
@@ -1,168 +1,169 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/5200-5299.xml b/Datapack/data/stats/weapon/5200-5299.xml
index 72256263..36a21b0c 100644
--- a/Datapack/data/stats/weapon/5200-5299.xml
+++ b/Datapack/data/stats/weapon/5200-5299.xml
@@ -1,71 +1,72 @@
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/5300-5399.xml b/Datapack/data/stats/weapon/5300-5399.xml
index 9e068ddf..9d05c8e1 100644
--- a/Datapack/data/stats/weapon/5300-5399.xml
+++ b/Datapack/data/stats/weapon/5300-5399.xml
@@ -1,11 +1,12 @@
-
--
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/5500-5599.xml b/Datapack/data/stats/weapon/5500-5599.xml
index 6dc3b221..3a59d2aa 100644
--- a/Datapack/data/stats/weapon/5500-5599.xml
+++ b/Datapack/data/stats/weapon/5500-5599.xml
@@ -1,58 +1,59 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/5600-5699.xml b/Datapack/data/stats/weapon/5600-5699.xml
index b76c3552..37978ab1 100644
--- a/Datapack/data/stats/weapon/5600-5699.xml
+++ b/Datapack/data/stats/weapon/5600-5699.xml
@@ -1,808 +1,824 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/5700-5799.xml b/Datapack/data/stats/weapon/5700-5799.xml
index 4b6e7aef..fb11a44a 100644
--- a/Datapack/data/stats/weapon/5700-5799.xml
+++ b/Datapack/data/stats/weapon/5700-5799.xml
@@ -1,152 +1,153 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/5800-5899.xml b/Datapack/data/stats/weapon/5800-5899.xml
index 301dde66..24c4cbe7 100644
--- a/Datapack/data/stats/weapon/5800-5899.xml
+++ b/Datapack/data/stats/weapon/5800-5899.xml
@@ -1,48 +1,49 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/6300-6399.xml b/Datapack/data/stats/weapon/6300-6399.xml
index a3967920..1ce052df 100644
--- a/Datapack/data/stats/weapon/6300-6399.xml
+++ b/Datapack/data/stats/weapon/6300-6399.xml
@@ -1,349 +1,350 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/6500-6599.xml b/Datapack/data/stats/weapon/6500-6599.xml
index 2ae542b1..2af68b67 100644
--- a/Datapack/data/stats/weapon/6500-6599.xml
+++ b/Datapack/data/stats/weapon/6500-6599.xml
@@ -1,401 +1,402 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/6600-6699.xml b/Datapack/data/stats/weapon/6600-6699.xml
index ef548a6d..14de453b 100644
--- a/Datapack/data/stats/weapon/6600-6699.xml
+++ b/Datapack/data/stats/weapon/6600-6699.xml
@@ -1,308 +1,320 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/6700-6799.xml b/Datapack/data/stats/weapon/6700-6799.xml
index a0d3c5d9..825d4c12 100644
--- a/Datapack/data/stats/weapon/6700-6799.xml
+++ b/Datapack/data/stats/weapon/6700-6799.xml
@@ -1,99 +1,100 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/6900-6999.xml b/Datapack/data/stats/weapon/6900-6999.xml
index 8257422f..18becd22 100644
--- a/Datapack/data/stats/weapon/6900-6999.xml
+++ b/Datapack/data/stats/weapon/6900-6999.xml
@@ -1,38 +1,39 @@
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/7000-7099.xml b/Datapack/data/stats/weapon/7000-7099.xml
index 7abf488b..61cd75d2 100644
--- a/Datapack/data/stats/weapon/7000-7099.xml
+++ b/Datapack/data/stats/weapon/7000-7099.xml
@@ -1,30 +1,31 @@
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/7500-7599.xml b/Datapack/data/stats/weapon/7500-7599.xml
index 34f9759d..b24ec34f 100644
--- a/Datapack/data/stats/weapon/7500-7599.xml
+++ b/Datapack/data/stats/weapon/7500-7599.xml
@@ -1,77 +1,81 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/7700-7799.xml b/Datapack/data/stats/weapon/7700-7799.xml
index d8042af5..08943879 100644
--- a/Datapack/data/stats/weapon/7700-7799.xml
+++ b/Datapack/data/stats/weapon/7700-7799.xml
@@ -1,297 +1,306 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/7800-7899.xml b/Datapack/data/stats/weapon/7800-7899.xml
index 67a6a02b..33c8d874 100644
--- a/Datapack/data/stats/weapon/7800-7899.xml
+++ b/Datapack/data/stats/weapon/7800-7899.xml
@@ -1,481 +1,485 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/7900-7999.xml b/Datapack/data/stats/weapon/7900-7999.xml
index eeb295f9..69d698f5 100644
--- a/Datapack/data/stats/weapon/7900-7999.xml
+++ b/Datapack/data/stats/weapon/7900-7999.xml
@@ -1,45 +1,46 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/8100-8199.xml b/Datapack/data/stats/weapon/8100-8199.xml
index ce873d0c..7f7161a0 100644
--- a/Datapack/data/stats/weapon/8100-8199.xml
+++ b/Datapack/data/stats/weapon/8100-8199.xml
@@ -1,674 +1,678 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/8200-8299.xml b/Datapack/data/stats/weapon/8200-8299.xml
index d02516c3..56bf76af 100644
--- a/Datapack/data/stats/weapon/8200-8299.xml
+++ b/Datapack/data/stats/weapon/8200-8299.xml
@@ -1,184 +1,185 @@
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/8300-8399.xml b/Datapack/data/stats/weapon/8300-8399.xml
index afb235b6..93032489 100644
--- a/Datapack/data/stats/weapon/8300-8399.xml
+++ b/Datapack/data/stats/weapon/8300-8399.xml
@@ -1,12 +1,13 @@
-
--
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/8500-8599.xml b/Datapack/data/stats/weapon/8500-8599.xml
index e6ced4bb..b579ab69 100644
--- a/Datapack/data/stats/weapon/8500-8599.xml
+++ b/Datapack/data/stats/weapon/8500-8599.xml
@@ -1,211 +1,212 @@
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Datapack/data/stats/weapon/8600-8699.xml b/Datapack/data/stats/weapon/8600-8699.xml
index dd69c7ea..2d5e1383 100644
--- a/Datapack/data/stats/weapon/8600-8699.xml
+++ b/Datapack/data/stats/weapon/8600-8699.xml
@@ -1,136 +1,137 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/8700-8799.xml b/Datapack/data/stats/weapon/8700-8799.xml
index 21f5bffb..b162e64b 100644
--- a/Datapack/data/stats/weapon/8700-8799.xml
+++ b/Datapack/data/stats/weapon/8700-8799.xml
@@ -1,207 +1,208 @@
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/8800-8899.xml b/Datapack/data/stats/weapon/8800-8899.xml
index b195df1f..5f7ef1ad 100644
--- a/Datapack/data/stats/weapon/8800-8899.xml
+++ b/Datapack/data/stats/weapon/8800-8899.xml
@@ -1,759 +1,766 @@
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/8900-8999.xml b/Datapack/data/stats/weapon/8900-8999.xml
index 26f58e4d..7b04e3fa 100644
--- a/Datapack/data/stats/weapon/8900-8999.xml
+++ b/Datapack/data/stats/weapon/8900-8999.xml
@@ -1,377 +1,378 @@
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/9000-9099.xml b/Datapack/data/stats/weapon/9000-9099.xml
index 114e4dee..eb97abad 100644
--- a/Datapack/data/stats/weapon/9000-9099.xml
+++ b/Datapack/data/stats/weapon/9000-9099.xml
@@ -1,310 +1,311 @@
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
diff --git a/Datapack/data/stats/weapon/9100-9199.xml b/Datapack/data/stats/weapon/9100-9199.xml
index 80963e0b..5c69b14d 100644
--- a/Datapack/data/stats/weapon/9100-9199.xml
+++ b/Datapack/data/stats/weapon/9100-9199.xml
@@ -1,46 +1,47 @@
-
--
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
--
-
-
-
-
-
-
-
-
-
+
+ -
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
diff --git a/Datapack/sql/account_data.sql b/Datapack/sql/account_data.sql
deleted file mode 100644
index f545b119..00000000
--- a/Datapack/sql/account_data.sql
+++ /dev/null
@@ -1,9 +0,0 @@
--- ---------------------------
--- Table structure for `account_data`
--- ---------------------------
-CREATE TABLE IF NOT EXISTS `account_data` (
- account_name VARCHAR(45) NOT NULL DEFAULT '',
- var VARCHAR(20) NOT NULL DEFAULT '',
- value VARCHAR(255) ,
- PRIMARY KEY (account_name,var)
-);
\ No newline at end of file
diff --git a/Datapack/sql/accounts.sql b/Datapack/sql/accounts.sql
index 3fb60b51..d6f91614 100644
--- a/Datapack/sql/accounts.sql
+++ b/Datapack/sql/accounts.sql
@@ -2,11 +2,12 @@
-- Table structure for accounts
-- ---------------------------
CREATE TABLE IF NOT EXISTS `accounts` (
- `login` VARCHAR(45) NOT NULL default '',
- `password` VARCHAR(45) ,
- `lastactive` DECIMAL(20),
- `access_level` INT,
- `lastIP` VARCHAR(20),
- `lastServer` int(4) default 1,
- PRIMARY KEY (`login`)
-);
+ `login` VARCHAR(45) NOT NULL,
+ `password` VARCHAR(45) NOT NULL,
+ `lastActive` DECIMAL(20,0) DEFAULT NULL,
+ `access_level` INT NOT NULL DEFAULT 0,
+ `lastIP` VARCHAR(20) DEFAULT NULL,
+ `lastServer` INT NOT NULL DEFAULT 1,
+ `newbieCharacterId` DECIMAL(11,0) NULL,
+ PRIMARY KEY (`login`))
+ENGINE = InnoDB
\ No newline at end of file
diff --git a/Datapack/sql/armor.sql b/Datapack/sql/armor.sql
index 1dc72fd8..8021f451 100644
--- a/Datapack/sql/armor.sql
+++ b/Datapack/sql/armor.sql
@@ -1,1048 +1,1042 @@
--
-- Table structure for table `armor`
---
+--
DROP TABLE IF EXISTS `armor`;
CREATE TABLE `armor` (
- `item_id` int(11) NOT NULL default '0',
+ `item_id` int NOT NULL default '0',
`name` varchar(70) default NULL,
- `bodypart` varchar(15) NOT NULL default '',
- `crystallizable` varchar(5) NOT NULL default '',
- `armor_type` varchar(5) NOT NULL default '',
- `weight` int(5) NOT NULL default '0',
- `material` varchar(15) NOT NULL default '',
- `crystal_type` varchar(4) NOT NULL default '',
- `avoid_modify` int(1) NOT NULL default '0',
- `duration` int(3) NOT NULL default '0',
- `p_def` int(3) NOT NULL default '0',
- `m_def` int(2) NOT NULL default '0',
- `mp_bonus` int(3) NOT NULL default '0',
- `price` int(11) NOT NULL default '0',
+ `bodypart` ENUM('CHEST','LEGS','FEET','HEAD','GLOVES','UNDERWEAR', 'BACK', 'FULL_ARMOR','EAR','FINGER','NECK','WOLF','HATCHLING','STRIDER','FACE','HAIR','DHAIR','BABYPET') NOT NULL,
+ `crystallizable` BOOL NOT NULL DEFAULT TRUE,
+ `armor_type` ENUM('NONE', 'LIGHT', 'HEAVY', 'MAGIC', 'PET_ARMOR') NOT NULL default 'NONE',
+ `weight` int NOT NULL default '0',
+ `crystal_type` ENUM('NONE', 'D', 'C', 'B', 'A', 'S') NOT NULL,
+ `duration` int NOT NULL default '0',
+ `price` int NOT NULL default '0',
`crystal_count` int(4) default NULL,
- `sellable` varchar(5) default NULL,
- `dropable` varchar(5) default NULL,
- `destroyable` varchar(5) default NULL,
- `tradeable` varchar(5) default NULL,
- `item_skill_id` decimal(11,0) NOT NULL default '0',
- `item_skill_lvl` decimal(11,0) NOT NULL default '0',
+ `sellable` BOOL NOT NULL DEFAULT TRUE,
+ `dropable` BOOL NOT NULL DEFAULT TRUE,
+ `destroyable` BOOL NOT NULL DEFAULT TRUE,
+ `tradeable` BOOL NOT NULL DEFAULT TRUE,
+ `item_skill_id` int NOT NULL default '0',
+ `item_skill_lvl` int NOT NULL default '0',
PRIMARY KEY (`item_id`)
-) ENGINE=MyISAM;
+);
--
-- Dumping data for table `armor`
-
INSERT INTO `armor` VALUES
- ('21','Shirt','chest','false','light','4830','cloth','none','0','-1','36','0','0','147','0','true','true','true','true','0','0'),
- ('22','Leather Shirt','chest','false','light','4830','leather','none','0','-1','43','0','0','2430','0','true','true','true','true','0','0'),
- ('23','Wooden Breastplate','chest','false','light','4820','wood','none','0','-1','47','0','0','7960','0','true','true','true','true','0','0'),
- ('24','Bone Breastplate','chest','false','light','4770','bone','none','0','-1','50','0','0','20300','0','true','true','true','true','0','0'),
- ('25','Piece Bone Breastplate','chest','false','heavy','8970','bone','none','0','-1','62','0','0','31800','0','true','true','true','true','0','0'),
- ('26','Bronze Breastplate','chest','false','heavy','8920','bronze','none','0','-1','68','0','0','49200','0','true','true','true','true','0','0'),
- ('27','Hard Leather Shirt','chest','false','light','4720','leather','none','0','-1','53','0','0','36900','0','true','true','true','true','0','0'),
- ('28','Pants','legs','false','light','1740','cloth','none','0','-1','22','0','0','92','0','true','true','true','true','0','0'),
- ('29','Leather Pants','legs','false','light','1730','leather','none','0','-1','27','0','0','1520','0','true','true','true','true','0','0'),
- ('30','Hard Leather Pants','legs','false','light','1700','leather','none','0','-1','29','0','0','4970','0','true','true','true','true','0','0'),
- ('31','Bone Gaiters','legs','false','light','1680','bone','none','0','-1','32','0','0','12700','0','true','true','true','true','0','0'),
- ('32','Piece Bone Gaiters','legs','false','heavy','4020','bone','none','0','-1','39','0','0','19900','0','true','true','true','true','0','0'),
- ('33','Hard Leather Gaiters','legs','false','light','1610','leather','none','0','-1','33','0','0','23000','0','true','true','true','true','0','0'),
- ('34','Bronze Gaiters','legs','false','heavy','3960','bronze','none','0','-1','43','0','0','30700','0','true','true','true','true','0','0'),
- ('35','Cloth Shoes','feet','false','none','1320','cloth','none','0','-1','9','0','0','37','0','true','true','true','true','0','0'),
- ('36','Leather Sandals','feet','false','none','1320','leather','none','0','-1','9','0','0','37','0','true','true','true','true','0','0'),
- ('37','Leather Shoes','feet','false','none','1320','leather','none','0','-1','13','0','0','2650','0','true','true','true','true','0','0'),
- ('38','Low Boots','feet','false','none','1320','leather','none','0','-1','15','0','0','6770','0','true','true','true','true','0','0'),
- ('39','Boots','feet','false','none','1310','cloth','none','0','-1','17','0','0','12300','0','true','true','true','true','0','0'),
- ('40','Leather Boots','feet','true','none','1300','leather','d','0','-1','19','0','0','20900','38','true','true','true','true','0','0'),
- ('41','Cloth Cap','head','false','none','660','cloth','none','0','-1','13','0','0','55','0','true','true','true','true','0','0'),
- ('42','Leather Cap','head','false','none','660','leather','none','0','-1','16','0','0','911','0','true','true','true','true','0','0'),
- ('43','Wooden Helmet','head','false','none','660','wood','none','0','-1','19','0','0','3980','0','true','true','true','true','0','0'),
- ('44','Leather Helmet','head','false','none','650','leather','none','0','-1','23','0','0','10200','0','true','true','true','true','0','0'),
- ('45','Bone Helmet','head','true','none','640','bone','d','0','-1','29','0','0','31300','56','true','true','true','true','0','0'),
- ('46','Bronze Helmet','head','true','none','630','bronze','d','0','-1','33','0','0','50000','90','true','true','true','true','0','0'),
- ('47','Helmet','head','true','none','640','fine_steel','d','0','-1','37','0','0','76200','138','true','true','true','true','0','0'),
- ('48','Short Gloves','gloves','false','none','660','cloth','none','0','-1','9','0','0','37','0','true','true','true','true','0','0'),
- ('49','Gloves','gloves','false','none','660','cloth','none','0','-1','13','0','0','2650','0','true','true','true','true','0','0'),
- ('50','Leather Gloves','gloves','false','none','650','leather','none','0','-1','15','0','0','6770','0','true','true','true','true','0','0'),
- ('51','Bracer','gloves','false','none','650','leather','none','0','-1','17','0','0','12300','0','true','true','true','true','0','0'),
- ('52','Hemp Cloak','underwear','false','none','260','cloth','none','0','-1','2','0','0','37','0','true','true','true','true','0','0'),
- ('53','Cotton Cloak','underwear','false','none','250','cloth','none','0','-1','3','0','0','607','0','true','true','true','true','0','0'),
- ('54','Silk Cloak','underwear','false','none','250','cloth','none','0','-1','4','0','0','2650','0','true','true','true','true','0','0'),
- ('55','Cotton Undergarment','underwear','false','none','170','cotton','none','0','-1','4','0','0','18','0','true','true','true','true','0','0'),
- ('56','Wool Undergarment','underwear','false','none','170','wood','none','0','-1','5','0','0','304','0','true','true','true','true','0','0'),
- ('58','Mithril Breastplate','chest','true','heavy','8670','mithril','d','0','-1','95','0','0','183000','332','true','true','true','true','0','0'),
- ('59','Mithril Gaiters','legs','true','heavy','3830','mithril','d','0','-1','61','0','0','127000','230','true','true','true','true','0','0'),
- ('60','Composite Armor','fullarmor','true','heavy','10980','fine_steel','c','0','-1','224','0','0','1440000','576','true','true','true','true','0','0'),
- ('61','Mithril Gloves','gloves','true','none','630','mithril','d','0','-1','29','0','0','97800','177','true','true','true','true','0','0'),
- ('62','Mithril Boots','feet','true','none','1230','leather','c','0','-1','32','0','0','126000','50','true','true','true','true','0','0'),
- ('63','Gauntlets','gloves','true','none','640','cloth','d','0','-1','24','0','0','50800','92','true','true','true','true','0','0'),
- ('64','Composite Boots','feet','true','none','1220','fine_steel','c','0','-1','36','0','0','245000','98','true','true','true','true','0','0'),
- ('112','Apprentice\'s Earring','rear,lear','false','none','150','silver','none','0','-1','0','11','0','49','0','true','true','true','true','0','0'),
- ('113','Mystic\'s Earring','rear,lear','false','none','150','silver','none','0','-1','0','13','0','811','0','true','true','true','true','0','0'),
- ('114','Earring of Strength','rear,lear','false','none','150','gold','none','0','-1','0','16','0','3510','0','true','true','true','true','0','0'),
- ('115','Earring of Wisdom','rear,lear','false','none','150','gold','none','0','-1','0','16','0','3510','0','true','true','true','true','0','0'),
- ('116','Magic Ring','rfinger,lfinger','false','none','150','gold','none','0','-1','0','7','0','33','0','true','true','true','true','0','0'),
- ('117','Ring of Mana','rfinger,lfinger','true','none','150','silver','b','0','-1','0','34','0','404000','53','true','true','true','true','0','0'),
- ('118','Necklace of Magic','neck','false','none','150','silver','none','0','-1','0','15','0','66','0','true','true','true','true','0','0'),
- ('119','Necklace of Binding','neck','true','none','150','adamantaite','c','0','-1','0','64','0','565000','226','true','true','true','true','0','0'),
- ('347','Ring Mail Breastplate','chest','true','heavy','8820','steel','d','0','-1','77','0','0','83500','151','true','true','true','true','0','0'),
- ('348','Scale Mail','chest','true','heavy','8720','steel','d','0','-1','87','0','0','133000','241','true','true','true','true','0','0'),
- ('349','Compound Scale Mail','chest','true','heavy','8620','fine_steel','d','0','-1','95','0','0','183000','332','true','true','true','true','0','0'),
- ('350','Dwarven Scale Mail','chest','true','heavy','8540','fine_steel','d','0','-1','95','0','0','183000','332','true','true','true','true','0','0'),
- ('351','Blast Plate','chest','true','heavy','8420','fine_steel','d','0','-1','97','0','0','203000','369','true','true','true','true','0','0'),
- ('352','Brigandine Tunic','chest','true','heavy','8320','fine_steel','d','0','-1','103','0','0','299000','543','true','true','true','true','0','0'),
- ('353','Half Plate Armor','chest','true','heavy','8220','fine_steel','d','0','-1','111','0','0','391000','710','true','true','true','true','0','0'),
- ('354','Chain Mail Shirt','chest','true','heavy','8120','fine_steel','c','0','-1','120','0','0','505000','202','true','true','true','true','0','0'),
- ('355','Dwarven Chain Mail Shirt','chest','true','heavy','8070','fine_steel','c','0','-1','129','0','0','644000','257','true','true','true','true','0','0'),
- ('356','Full Plate Armor','fullarmor','true','heavy','10480','fine_steel','c','0','-1','239','0','0','2090000','836','true','true','true','true','0','0'),
- ('357','Zubei\'s Breastplate','chest','true','heavy','7970','mithril','b','0','-1','157','0','0','2080000','277','true','true','true','true','0','0'),
- ('358','Blue Wolf Breastplate','chest','true','heavy','7820','oriharukon','b','0','-1','166','0','0','3220000','429','true','true','true','true','0','0'),
- ('359','Shining Dragon Armor','fullarmor','true','heavy','6400','mithril','b','0','-1','301','0','0','6770000','902','true','true','true','true','0','0'),
- ('360','Armor of Victory','chest','true','heavy','3360','oriharukon','b','0','-1','175','0','0','3220000','429','true','true','true','true','0','0'),
- ('361','Breastplate of Valor','chest','true','heavy','3360','blood_steel','b','0','-1','185','0','0','4630000','617','true','true','true','true','0','0'),
- ('362','Glorious Armor','fullarmor','true','heavy','6720','fine_steel','b','0','-1','284','0','0','4710000','628','true','true','true','true','0','0'),
- ('363','Red Flame Armor','fullarmor','true','heavy','6400','blood_steel','b','0','-1','301','0','0','6770000','902','true','true','true','true','0','0'),
- ('364','Elven Crystal Breastplate','chest','true','heavy','2400','crystal','b','0','-1','175','0','0','3220000','429','true','true','true','true','0','0'),
- ('365','Dark Crystal Breastplate','chest','true','heavy','7700','crystal','a','0','-1','171','0','0','4630000','370','true','true','true','true','0','0'),
- ('366','Implosion Armor','fullarmor','true','heavy','6080','damascus','b','0','-1','284','0','0','4710000','628','true','true','true','true','0','0'),
- ('367','Dark Dragon Armor','fullarmor','true','heavy','5760','damascus','b','0','-1','301','0','0','6770000','902','true','true','true','true','0','0'),
- ('368','Elven Vagian Armor','fullarmor','true','heavy','2400','mithril','b','0','-1','284','0','0','4710000','628','true','true','true','true','0','0'),
- ('369','Dark Vagian Armor','fullarmor','true','heavy','2400','mithril','b','0','-1','301','0','0','6770000','902','true','true','true','true','0','0'),
- ('370','Complete Set of Plate Armor','fullarmor','true','heavy','6400','fine_steel','b','0','-1','284','0','0','4710000','628','true','true','true','true','0','0'),
- ('371','Hell Plate','fullarmor','true','heavy','6400','blood_steel','b','0','-1','301','0','0','6770000','902','true','true','true','true','0','0'),
- ('372','Art of Plate','fullarmor','true','heavy','6720','chrysolite','b','0','-1','284','0','0','4710000','628','true','true','true','true','0','0'),
- ('373','Masterpiece Armor','fullarmor','true','heavy','5600','oriharukon','b','0','-1','301','0','0','6770000','902','true','true','true','true','0','0'),
- ('374','Armor of Nightmare','fullarmor','true','heavy','9580','blood_steel','a','0','-1','293','0','0','10300000','824','true','true','true','true','0','0'),
- ('375','Dragon Scale Mail','chest','true','heavy','7620','scale_of_dragon','s','0','-1','198','0','0','10500000','525','false','false','true','false','0','0'),
- ('376','Iron Plate Gaiters','legs','true','heavy','3820','steel','d','0','-1','48','0','0','52200','94','true','true','true','true','0','0'),
- ('377','Scale Gaiters','legs','true','heavy','3860','fine_steel','d','0','-1','54','0','0','83300','151','true','true','true','true','0','0'),
- ('378','Compound Scale Gaiters','legs','true','heavy','3770','fine_steel','d','0','-1','61','0','0','127000','230','true','true','true','true','0','0'),
- ('379','Dwarven Scale Gaiters','legs','true','heavy','3840','fine_steel','d','0','-1','61','0','0','127000','230','true','true','true','true','0','0'),
- ('380','Plate Gaiters','legs','true','heavy','3770','fine_steel','d','0','-1','70','0','0','244000','443','true','true','true','true','0','0'),
- ('381','Chain Gaiters','legs','true','heavy','3680','fine_steel','c','0','-1','75','0','0','316000','126','true','true','true','true','0','0'),
- ('382','Dwarven Chain Gaiters','legs','true','heavy','3620','fine_steel','c','0','-1','80','0','0','403000','161','true','true','true','true','0','0'),
- ('383','Zubei\'s Gaiters','legs','true','heavy','3570','mithril','b','0','-1','98','0','0','1300000','173','true','true','true','true','0','0'),
- ('384','Wolf Gaiters','legs','true','heavy','2560','oriharukon','b','0','-1','109','0','0','2010000','268','true','true','true','true','0','0'),
- ('385','Gaiters of Victory','legs','true','heavy','2240','oriharukon','b','0','-1','109','0','0','2010000','268','true','true','true','true','0','0'),
- ('386','Gaiters of Valor','legs','true','heavy','2240','blood_steel','b','0','-1','116','0','0','2890000','385','true','true','true','true','0','0'),
- ('387','Elven Crystal Gaiters','legs','true','heavy','2240','crystal','b','0','-1','109','0','0','2010000','268','true','true','true','true','0','0'),
- ('388','Dark Crystal Gaiters','legs','true','heavy','3320','crystal','a','0','-1','107','0','0','2890000','231','true','true','true','true','0','0'),
- ('389','Dragon Scale Gaiters','legs','true','heavy','3260','scale_of_dragon','s','0','-1','122','0','0','5980000','299','false','false','true','false','0','0'),
- ('390','Cotton Shirt','chest','false','light','4770','cloth','none','0','-1','50','0','0','20300','0','true','true','true','true','0','0'),
- ('391','Puma Skin Shirt','chest','true','light','4700','leather','d','0','-1','58','0','0','62600','113','true','true','true','true','0','0'),
- ('392','Lion Skin Shirt','chest','true','light','4580','leather','d','0','-1','65','0','0','99900','181','true','true','true','true','0','0'),
- ('393','Mithril Banded Mail','chest','true','light','4570','mithril','d','0','-1','73','0','0','152000','276','true','true','true','true','0','0'),
- ('394','Reinforced Leather Shirt','chest','true','light','4570','leather','d','0','-1','73','0','0','152000','276','true','true','true','true','0','0'),
- ('395','Manticore Skin Shirt','chest','true','light','4520','leather','d','0','-1','77','0','0','224000','407','true','true','true','true','0','0'),
- ('396','Salamander Skin Mail','fullarmor','true','light','6100','leather','d','0','-1','136','0','0','429000','780','true','true','true','true','0','0'),
- ('397','Mithril Shirt','chest','true','light','4470','mithril','c','0','-1','90','0','0','379000','151','true','true','true','true','0','0'),
- ('398','Plated Leather','chest','true','light','4450','leather','c','0','-1','94','0','0','446000','178','true','true','true','true','0','0'),
- ('399','Rind Leather Armor','chest','true','light','4420','leather','c','0','-1','97','0','0','483000','193','true','true','true','true','0','0'),
- ('400','Theca Leather Armor','chest','true','light','4370','leather','c','0','-1','106','0','0','825000','330','true','true','true','true','0','0'),
- ('401','Drake Leather Armor','fullarmor','true','light','5800','leather','c','0','-1','179','0','0','1570000','628','true','true','true','true','0','0'),
- ('402','Chain Mail of Silence','fullarmor','true','light','3200','damascus','b','0','-1','213','0','0','3530000','470','true','true','true','true','0','0'),
- ('403','Gust Chain Mail','fullarmor','true','light','2720','blood_steel','b','0','-1','225','0','0','5080000','677','true','true','true','true','0','0'),
- ('404','Prairie Leather Armor','chest','true','light','8000','leather','b','0','-1','131','0','0','2410000','321','true','true','true','true','0','0'),
- ('405','Leather Armor of The Underworld','chest','true','light','8000','leather','b','0','-1','139','0','0','3470000','462','true','true','true','true','0','0'),
- ('406','Leather Suit of Concentration','fullarmor','true','light','2400','leather','b','0','-1','213','0','0','3530000','470','true','true','true','true','0','0'),
- ('407','Ace\'s Leather Armor','fullarmor','true','light','2400','leather','b','0','-1','225','0','0','5080000','677','true','true','true','true','0','0'),
- ('408','Guardian\'s Leather Armor','chest','true','light','8000','leather','b','0','-1','131','0','0','2410000','321','true','true','true','true','0','0'),
- ('409','Marksman\'s Leather Armor','chest','true','light','4300','leather','b','0','-1','139','0','0','3470000','462','true','true','true','true','0','0'),
- ('410','Unicorn Leather Armor','fullarmor','true','light','1280','leather','a','0','-1','238','0','0','7730000','618','true','true','true','true','0','0'),
- ('411','Dragon Leather Armor','fullarmor','true','light','4950','leather','s','0','-1','237','0','0','10500000','525','false','false','true','false','0','0'),
- ('412','Cotton Pants','legs','false','light','1630','cloth','none','0','-1','32','0','0','12700','0','true','true','true','true','0','0'),
- ('413','Puma Skin Gaiters','legs','true','light','1600','leather','d','0','-1','36','0','0','39100','71','true','true','true','true','0','0'),
- ('414','Lion Skin Gaiters','legs','true','light','1570','leather','d','0','-1','41','0','0','62500','113','true','true','true','true','0','0'),
- ('415','Mithril Banded Gaiters','legs','true','light','1580','mithril','d','0','-1','46','0','0','95200','173','true','true','true','true','0','0'),
- ('416','Reinforced Leather Gaiters','legs','true','light','1570','leather','d','0','-1','46','0','0','95200','173','true','true','true','true','0','0'),
- ('417','Manticore Skin Gaiters','legs','true','light','1550','leather','d','0','-1','48','0','0','140000','254','true','true','true','true','0','0'),
- ('418','Plated Leather Gaiters','legs','true','light','1560','leather','c','0','-1','59','0','0','279000','111','true','true','true','true','0','0'),
- ('419','Rind Leather Gaiters','legs','true','light','1550','leather','c','0','-1','60','0','0','302000','120','true','true','true','true','0','0'),
- ('420','Theca Leather Gaiters','legs','true','light','1530','leather','c','0','-1','66','0','0','516000','206','true','true','true','true','0','0'),
- ('421','Prairie Leather Gaiters','legs','true','light','4800','leather','b','0','-1','82','0','0','1510000','201','true','true','true','true','0','0'),
- ('422','Gaiters of The Underworld','legs','true','light','4800','leather','b','0','-1','87','0','0','2170000','289','true','true','true','true','0','0'),
- ('423','Guardian\'s Leather Gaiters','legs','true','light','4800','leather','b','0','-1','82','0','0','1510000','201','true','true','true','true','0','0'),
- ('424','Marksman\'s Leather Gaiters','legs','true','light','1490','leather','b','0','-1','87','0','0','2170000','289','true','true','true','true','0','0'),
- ('425','Apprentice\'s Tunic','chest','false','magic','2150','cloth','none','0','-1','17','0','19','26','0','false','false','true','false','0','0'),
- ('426','Tunic','chest','false','magic','2150','cloth','none','0','-1','18','0','24','147','0','true','true','true','true','0','0'),
- ('427','Cotton Robe','fullarmor','false','magic','2750','cotton','none','0','-1','35','0','61','3550','0','true','true','true','true','0','0'),
- ('428','Feriotic Tunic','chest','false','magic','2140','cloth','none','0','-1','21','0','38','2430','0','true','true','true','true','0','0'),
- ('429','Leather Tunic','chest','false','magic','2110','leather','none','0','-1','25','0','52','7960','0','true','true','true','true','0','0'),
- ('430','Robe of Devotion','fullarmor','false','magic','2650','cloth','none','0','-1','49','0','109','29700','0','true','true','true','true','0','0'),
- ('431','Robe of Magic','fullarmor','false','magic','2600','cloth','none','0','-1','56','0','140','53900','0','true','true','true','true','0','0'),
- ('432','Cursed Tunic','chest','true','magic','2090','cloth','d','0','-1','39','0','106','62600','113','true','true','true','true','0','0'),
- ('433','Elven Tunic','chest','true','magic','2080','cloth','d','0','-1','43','0','126','99900','181','true','true','true','true','0','0'),
- ('434','White Tunic','chest','true','magic','2040','cloth','d','0','-1','43','0','126','99900','181','true','true','true','true','0','0'),
- ('435','Mystic\'s Tunic','chest','true','magic','2030','cloth','d','0','-1','43','0','126','99900','181','true','true','true','true','0','0'),
- ('436','Tunic of Knowledge','chest','true','magic','2020','cloth','d','0','-1','49','0','147','152000','276','true','true','true','true','0','0'),
- ('437','Mithril Tunic','chest','true','magic','2010','mithril','d','0','-1','52','0','169','224000','407','true','true','true','true','0','0'),
- ('438','Sage\'s Rag','fullarmor','true','magic','2580','cloth','d','0','-1','90','0','320','429000','780','true','true','true','true','0','0'),
- ('439','Karmian Tunic','chest','true','magic','1980','cloth','c','0','-1','60','0','225','379000','151','true','true','true','true','0','0'),
- ('440','Robe of Seal','fullarmor','true','magic','2500','cloth','c','0','-1','105','0','413','707000','282','true','true','true','true','0','0'),
- ('441','Demon\'s Tunic','chest','true','magic','1990','cloth','c','0','-1','69','0','284','736000','294','true','true','true','true','0','0'),
- ('442','Divine Tunic','chest','true','magic','1980','cloth','c','0','-1','74','0','314','1070000','428','true','true','true','true','0','0'),
- ('443','Tunic of Mana','chest','true','magic','2000','cloth','b','0','-1','87','0','377','2410000','321','true','true','true','true','0','0'),
- ('444','Sage\'s Robe','fullarmor','true','magic','1600','cloth','b','0','-1','150','0','665','5080000','677','true','true','true','true','0','0'),
- ('445','Paradia Tunic','chest','true','magic','1990','cloth','b','0','-1','87','0','377','2410000','321','true','true','true','true','0','0'),
- ('446','Inferno Tunic','chest','true','magic','1880','cloth','b','0','-1','92','0','409','3470000','462','true','true','true','true','0','0'),
- ('447','Tunic of Solar Eclipse','chest','true','magic','1960','cloth','b','0','-1','87','0','377','2410000','321','true','true','true','true','0','0'),
- ('448','Robe of Black Ore','fullarmor','true','magic','1600','cloth','b','0','-1','150','0','665','5080000','677','true','true','true','true','0','0'),
- ('449','Tunic of Summoning','chest','true','magic','1950','cloth','b','0','-1','87','0','377','2410000','321','true','true','true','true','0','0'),
- ('450','Otherworldly Robe','fullarmor','true','magic','1600','cloth','b','0','-1','150','0','665','5080000','677','true','true','true','true','0','0'),
- ('451','Elemental Tunic','chest','true','magic','1970','cloth','b','0','-1','87','0','377','2410000','321','true','true','true','true','0','0'),
- ('452','Tunic of Phantom','chest','true','magic','1890','cloth','b','0','-1','92','0','409','3470000','462','true','true','true','true','0','0'),
- ('453','Tunic of Grace','chest','true','magic','1930','cloth','b','0','-1','87','0','377','2410000','321','true','true','true','true','0','0'),
- ('454','Robe of Holy Spirit','fullarmor','true','magic','1600','cloth','b','0','-1','150','0','665','5080000','677','true','true','true','true','0','0'),
- ('455','Phoenix Tunic','chest','true','magic','1950','cloth','b','0','-1','87','0','377','2410000','321','true','true','true','true','0','0'),
- ('456','Cerberus Tunic','chest','true','magic','1870','cloth','b','0','-1','92','0','409','3470000','462','true','true','true','true','0','0'),
- ('457','Tunic of Aid','chest','true','magic','1910','cloth','b','0','-1','87','0','377','2410000','321','true','true','true','true','0','0'),
- ('458','Robe of Blessing','fullarmor','true','magic','1600','cloth','b','0','-1','150','0','665','5080000','677','true','true','true','true','0','0'),
- ('459','Dasparion\'s Robe','fullarmor','true','magic','1200','cloth','a','0','-1','158','0','718','7730000','618','true','true','true','true','0','0'),
- ('460','The Robe','fullarmor','true','magic','2300','cloth','s','0','-1','158','0','773','10500000','525','false','false','true','false','0','0'),
- ('461','Apprentice\'s Stockings','legs','false','magic','1100','cloth','none','0','-1','10','0','10','6','0','false','false','true','false','0','0'),
- ('462','Stockings','legs','false','magic','1080','cloth','none','0','-1','11','0','15','92','0','true','true','true','true','0','0'),
- ('463','Feriotic Stockings','legs','false','magic','1070','cloth','none','0','-1','13','0','23','1520','0','true','true','true','true','0','0'),
- ('464','Leather Stockings','legs','false','magic','1020','leather','none','0','-1','16','0','33','4970','0','true','true','true','true','0','0'),
- ('465','Cursed Stockings','legs','true','magic','1020','cloth','d','0','-1','24','0','66','39100','71','true','true','true','true','0','0'),
- ('466','Elven Stockings','legs','true','magic','1010','cloth','d','0','-1','27','0','79','62500','113','true','true','true','true','0','0'),
- ('467','Dark Stockings','legs','true','magic','1000','cloth','d','0','-1','27','0','79','62500','113','true','true','true','true','0','0'),
- ('468','Mystic\'s Stockings','legs','true','magic','990','cloth','d','0','-1','27','0','79','62500','113','true','true','true','true','0','0'),
- ('469','Stockings of Knowledge','legs','true','magic','1000','cloth','d','0','-1','30','0','92','95200','173','true','true','true','true','0','0'),
- ('470','Mithril Stockings','legs','true','magic','980','mithril','d','0','-1','32','0','105','140000','254','true','true','true','true','0','0'),
- ('471','Karmian Stockings','legs','true','magic','970','cloth','c','0','-1','37','0','141','237000','94','true','true','true','true','0','0'),
- ('472','Demon\'s Stockings','legs','true','magic','980','cloth','c','0','-1','43','0','177','460000','184','true','true','true','true','0','0'),
- ('473','Divine Stockings','legs','true','magic','960','cloth','c','0','-1','46','0','196','671000','268','true','true','true','true','0','0'),
- ('474','Stockings of Mana','legs','true','magic','2400','cloth','b','0','-1','55','0','236','1510000','201','true','true','true','true','0','0'),
- ('475','Paradia Stockings','legs','true','magic','1600','cloth','b','0','-1','55','0','236','1510000','201','true','true','true','true','0','0'),
- ('476','Inferno Stockings','legs','true','magic','1600','cloth','b','0','-1','58','0','256','2170000','289','true','true','true','true','0','0'),
- ('477','Stockings of Solar Eclipse','legs','true','magic','2400','cloth','b','0','-1','55','0','236','1510000','201','true','true','true','true','0','0'),
- ('478','Stockings of Summoning','legs','true','magic','2400','cloth','b','0','-1','55','0','236','1510000','201','true','true','true','true','0','0'),
- ('479','Elemental Stockings','legs','true','magic','1600','cloth','b','0','-1','55','0','236','1510000','201','true','true','true','true','0','0'),
- ('480','Stockings of Phantom','legs','true','magic','1600','cloth','b','0','-1','58','0','256','2170000','289','true','true','true','true','0','0'),
- ('481','Stockings of Grace','legs','true','magic','2400','cloth','b','0','-1','55','0','236','1510000','201','true','true','true','true','0','0'),
- ('482','Phoenix Stockings','legs','true','magic','2400','cloth','b','0','-1','55','0','236','1510000','201','true','true','true','true','0','0'),
- ('483','Cerberus Stockings','legs','true','magic','6400','cloth','b','0','-1','58','0','256','2170000','289','true','true','true','true','0','0'),
- ('484','Stockings of Aid','legs','true','magic','2400','cloth','b','0','-1','55','0','236','1510000','201','true','true','true','true','0','0'),
- ('485','Tattoo of Power','underwear','false','none','4200','dyestuff','none','0','-1','53','0','0','36900','0','true','true','true','true','0','0'),
- ('486','Tattoo of Fire','underwear','true','none','4050','dyestuff','d','0','-1','73','0','0','152000','276','true','true','true','true','0','0'),
- ('487','Tattoo of Resolve','underwear','true','none','4000','dyestuff','d','0','-1','73','0','0','152000','276','true','true','true','true','0','0'),
- ('488','Tattoo of Flame','underwear','true','none','800','dyestuff','b','0','-1','139','0','0','3470000','462','true','true','true','true','0','0'),
- ('489','Tattoo of Bravery','underwear','true','none','4100','dyestuff','c','0','-1','110','0','0','1070000','428','true','true','true','true','0','0'),
- ('490','Tattoo of Blood','underwear','true','none','3800','dyestuff','a','0','-1','132','0','0','3470000','277','true','true','true','true','0','0'),
- ('491','Tattoo of Absolute','underwear','true','none','800','dyestuff','a','0','-1','146','0','0','5280000','422','true','true','true','true','0','0'),
- ('492','Tattoo of Soul','underwear','true','none','4150','dyestuff','d','0','-1','65','0','0','99900','181','true','true','true','true','0','0'),
- ('493','Tattoo of Avadon','underwear','true','none','4000','dyestuff','b','0','-1','117','0','0','1560000','208','true','true','true','true','0','0'),
- ('494','Tattoo of Doom','underwear','true','none','4100','dyestuff','b','0','-1','125','0','0','2410000','321','true','true','true','true','0','0'),
- ('495','Tattoo of Pledge','underwear','true','none','4000','dyestuff','b','0','-1','124','0','0','1560000','208','true','true','true','true','0','0'),
- ('496','Tattoo of Divine','underwear','true','none','4100','dyestuff','b','0','-1','131','0','0','2410000','321','true','true','true','true','0','0'),
- ('497','Chain Helmet','head','true','none','620','fine_steel','c','0','-1','45','0','0','147000','59','true','true','true','true','0','0'),
- ('498','Steel Plate Helmet','head','true','none','610','fine_steel','c','0','-1','49','0','0','206000','82','true','true','true','true','0','0'),
- ('499','Mithril Helmet','head','true','none','240','mithril','c','0','-1','58','0','0','536000','214','true','true','true','true','0','0'),
- ('500','Great Helmet','head','true','none','610','fine_steel','c','0','-1','51','0','0','242000','96','true','true','true','true','0','0'),
- ('501','Armet','head','true','none','580','chrysolite','b','0','-1','62','0','0','1030000','4','true','true','true','true','0','0'),
- ('502','Close Helmet','head','true','none','570','oriharukon','a','0','-1','64','0','0','1560000','3','true','true','true','true','0','0'),
- ('503','Zubei\'s Helmet','head','true','none','590','mithril','b','0','-1','62','0','0','778000','103','true','true','true','true','0','0'),
- ('504','Dragon Helmet','head','true','none','550','bone','s','0','-1','77','0','0','3590000','179','false','false','true','false','0','0'),
- ('505','Wolf Helmet','head','true','none','580','oriharukon','b','0','-1','66','0','0','1210000','161','true','true','true','true','0','0'),
- ('506','Shining Dragon Helmet','head','true','none','880','mithril','b','0','-1','67','0','0','1740000','232','true','true','true','true','0','0'),
- ('507','Helmet of Victory','head','true','none','640','oriharukon','b','0','-1','66','0','0','1210000','161','true','true','true','true','0','0'),
- ('508','Helmet of Valor','head','true','none','720','blood_steel','b','0','-1','67','0','0','1740000','232','true','true','true','true','0','0'),
- ('509','Glorious Helmet','head','true','none','800','fine_steel','a','0','-1','65','0','0','2040000','3','true','true','true','true','0','0'),
- ('510','Red Flame Helmet','head','true','none','960','blood_steel','a','0','-1','71','0','0','2640000','3','true','true','true','true','0','0'),
- ('511','Elven Crystal Helmet','head','true','none','580','crystal','b','0','-1','66','0','0','1210000','161','true','true','true','true','0','0'),
- ('512','Dark Crystal Helmet','head','true','none','570','crystal','a','0','-1','69','0','0','1740000','139','true','true','true','true','0','0'),
- ('513','Implosion Helmet','head','true','none','480','damascus','b','0','-1','66','0','0','1210000','161','true','true','true','true','0','0'),
- ('514','Dark Dragon Helmet','head','true','none','400','damascus','b','0','-1','67','0','0','1740000','232','true','true','true','true','0','0'),
- ('515','Elven Vagian Helm','head','true','none','560','mithril','a','0','-1','65','0','0','2040000','3','true','true','true','true','0','0'),
- ('516','Dark Vagian Helm','head','true','none','560','mithril','a','0','-1','71','0','0','2640000','3','true','true','true','true','0','0'),
- ('517','Composite Helmet','head','true','none','610','fine_steel','c','0','-1','54','0','0','368000','147','true','true','true','true','0','0'),
- ('518','Hell Helm','head','true','none','320','blood_steel','a','0','-1','71','0','0','2640000','3','true','true','true','true','0','0'),
- ('519','Art of Helmet','head','true','none','400','chrysolite','b','0','-1','66','0','0','1210000','161','true','true','true','true','0','0'),
- ('520','Masterpiece Helm','head','true','none','400','oriharukon','a','0','-1','71','0','0','2640000','3','true','true','true','true','0','0'),
- ('521','Helmet of Silence','head','true','none','320','damascus','b','0','-1','66','0','0','1210000','161','true','true','true','true','0','0'),
- ('522','Gust Helmet','head','true','none','570','blood_steel','b','0','-1','67','0','0','1740000','232','true','true','true','true','0','0'),
- ('523','Prairie Helmet','head','true','none','480','leather','b','0','-1','66','0','0','1210000','161','true','true','true','true','0','0'),
- ('524','Helm of The Underworld','head','true','none','320','damascus','b','0','-1','67','0','0','1740000','232','true','true','true','true','0','0'),
- ('525','Helmet of Concentration','head','true','none','320','oriharukon','b','0','-1','66','0','0','1210000','161','true','true','true','true','0','0'),
- ('526','Ace\'s Helmet','head','true','none','320','oriharukon','b','0','-1','67','0','0','1740000','232','true','true','true','true','0','0'),
- ('527','Guardian\'s Helmet','head','true','none','240','mithril','b','0','-1','66','0','0','1210000','161','true','true','true','true','0','0'),
- ('528','Marksman Helmet','head','true','none','240','leather','b','0','-1','67','0','0','1740000','232','true','true','true','true','0','0'),
- ('529','Cap of Mana','head','true','none','320','cloth','c','0','-1','58','0','0','536000','214','true','true','true','true','0','0'),
- ('530','Sage\'s Cap','head','true','none','320','cloth','b','0','-1','62','0','0','778000','103','true','true','true','true','0','0'),
- ('531','Paradia Hood','head','true','none','320','cloth','c','0','-1','58','0','0','536000','214','true','true','true','true','0','0'),
- ('532','Inferno Hood','head','true','none','320','cloth','b','0','-1','62','0','0','778000','103','true','true','true','true','0','0'),
- ('533','Hood of Solar Eclipse','head','true','none','320','cloth','c','0','-1','58','0','0','536000','214','true','true','true','true','0','0'),
- ('534','Hood of Black Ore','head','true','none','320','cloth','b','0','-1','62','0','0','778000','103','true','true','true','true','0','0'),
- ('535','Hood of Summoning','head','true','none','320','cloth','c','0','-1','58','0','0','536000','214','true','true','true','true','0','0'),
- ('536','Otherworldly Hood','head','true','none','320','cloth','b','0','-1','62','0','0','778000','103','true','true','true','true','0','0'),
- ('537','Elemental Hood','head','true','none','320','cloth','c','0','-1','58','0','0','536000','214','true','true','true','true','0','0'),
- ('538','Hood of Phantom','head','true','none','320','cloth','b','0','-1','62','0','0','778000','103','true','true','true','true','0','0'),
- ('539','Hood of Grace','head','true','none','320','cloth','c','0','-1','58','0','0','536000','214','true','true','true','true','0','0'),
- ('540','Hood of Holy Spirit','head','true','none','320','cloth','b','0','-1','62','0','0','778000','103','true','true','true','true','0','0'),
- ('541','Phoenix Hood','head','true','none','590','cloth','c','0','-1','58','0','0','536000','214','true','true','true','true','0','0'),
- ('542','Cerberus Hood','head','true','none','320','cloth','b','0','-1','62','0','0','778000','103','true','true','true','true','0','0'),
- ('543','Hood of Aid','head','true','none','320','cloth','c','0','-1','58','0','0','536000','214','true','true','true','true','0','0'),
- ('544','Hood of Blessing','head','true','none','320','cloth','b','0','-1','62','0','0','778000','103','true','true','true','true','0','0'),
- ('545','Flame Helm','head','true','none','400','cloth','c','0','-1','58','0','0','536000','214','true','true','true','true','0','0'),
- ('546','Helm of Bravery','head','true','none','400','cloth','b','0','-1','62','0','0','778000','103','true','true','true','true','0','0'),
- ('547','Tallum Helm','head','true','none','570','cloth','a','0','-1','69','0','0','1740000','139','true','true','true','true','0','0'),
- ('548','Absolute Helm','head','true','none','400','cloth','b','0','-1','62','0','0','778000','103','true','true','true','true','0','0'),
- ('549','Helm of Avadon','head','true','none','400','cloth','c','0','-1','58','0','0','536000','214','true','true','true','true','0','0'),
- ('550','Helm of Doom','head','true','none','400','cloth','b','0','-1','62','0','0','778000','103','true','true','true','true','0','0'),
- ('551','Helmet of Pledge','head','true','none','400','chrysolite','c','0','-1','58','0','0','536000','214','true','true','true','true','0','0'),
- ('552','Divine Helm','head','true','none','400','cloth','b','0','-1','62','0','0','778000','103','true','true','true','true','0','0'),
- ('553','Iron Boots','feet','true','none','1280','fine_steel','d','0','-1','24','0','0','50800','92','true','true','true','true','0','0'),
- ('554','Zubei\'s Boots','feet','true','none','1180','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('555','Dragon Boots','feet','true','none','1110','leather','a','0','-1','48','0','0','1760000','140','false','false','true','false','0','0'),
- ('556','Wolf Boots','feet','true','none','1180','oriharukon','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('557','Shining Dragon Boots','feet','true','none','1150','mithril','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('558','Boots of Victory','feet','true','none','1180','oriharukon','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('559','Boots of Valor','feet','true','none','1150','blood_steel','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('560','Glorious Boots','feet','true','none','1180','fine_steel','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('561','Red Flame Boots','feet','true','none','1120','blood_steel','a','0','-1','45','0','0','1160000','92','true','true','true','true','0','0'),
- ('562','Elven Crystal Boots','feet','true','none','1180','crystal','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('563','Dark Crystal Boots','feet','true','none','1110','crystal','a','0','-1','45','0','0','1160000','92','true','true','true','true','0','0'),
- ('564','Implosion Boots','feet','true','none','1150','damascus','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('565','Dark Dragon Boots','feet','true','none','1130','damascus','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('566','Elven Vagian Boots','feet','true','none','1150','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('567','Dark Vagian Boots','feet','true','none','1130','mithril','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('568','Composite Boots','feet','true','none','200','fine_steel','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('569','Hell Boots','feet','true','none','1130','blood_steel','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('570','Art of Boots','feet','true','none','1150','chrysolite','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('571','Masterpiece Boots','feet','true','none','1130','oriharukon','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('572','Boots of Silence','feet','true','none','1190','damascus','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('573','Gust Boots','feet','true','none','1120','blood_steel','a','0','-1','45','0','0','1160000','92','true','true','true','true','0','0'),
- ('574','Prairie Boots','feet','true','none','1140','leather','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('575','Boots of The Underworld','feet','true','none','1110','leather','a','0','-1','45','0','0','1160000','92','true','true','true','true','0','0'),
- ('576','Boots of Concentration','feet','true','none','1170','oriharukon','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('577','Ace\'s Boots','feet','true','none','1150','oriharukon','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('578','Guardian\'s Boots','feet','true','none','1180','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('579','Marksman Boots','feet','true','none','1150','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('580','Boots of Mana','feet','true','none','1180','leather','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('581','Sage\'s Boots','feet','true','none','1150','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('582','Paradia Boots','feet','true','none','1140','chrysolite','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('583','Majestic Boots','feet','true','none','1110','blood_steel','a','0','-1','48','0','0','1760000','140','true','true','true','true','0','0'),
- ('584','Boots of Solar Eclipse','feet','true','none','1180','blood_steel','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('585','Boots of Black Ore','feet','true','none','1200','damascus','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('586','Boots of Summoning','feet','true','none','1170','leather','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('587','Otherworldly Boots','feet','true','none','1200','adamantaite','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('588','Elemental Boots','feet','true','none','1130','mithril','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('589','Boots of Phantom','feet','true','none','1120','oriharukon','a','0','-1','48','0','0','1760000','140','true','true','true','true','0','0'),
- ('590','Boots of Grace','feet','true','none','1130','mithril','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('591','Boots of Holy Spirit','feet','true','none','1200','chrysolite','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('592','Phoenix Boots','feet','true','none','1120','blood_steel','a','0','-1','45','0','0','1160000','92','true','true','true','true','0','0'),
- ('593','Cerberus Boots','feet','true','none','1120','damascus','a','0','-1','48','0','0','1760000','140','true','true','true','true','0','0'),
- ('594','Boots of Aid','feet','true','none','1200','leather','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('595','Boots of Blessing','feet','true','none','1160','adamantaite','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('596','Flame Boots','feet','true','none','1020','blood_steel','b','0','-1','45','0','0','1160000','154','true','true','true','true','0','0'),
- ('597','Boots of Bravery','feet','true','none','1050','chrysolite','b','0','-1','45','0','0','1160000','154','true','true','true','true','0','0'),
- ('598','Blood Boots','feet','true','none','1130','blood_steel','a','0','-1','45','0','0','1160000','92','true','true','true','true','0','0'),
- ('599','Absolute Boots','feet','true','none','1130','mithril','b','0','-1','45','0','0','1160000','154','true','true','true','true','0','0'),
- ('600','Avadon Boots','feet','true','none','1170','damascus','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('601','Boots of Doom','feet','true','none','1130','mithril','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('602','Boots of Pledge','feet','true','none','1130','chrysolite','b','0','-1','45','0','0','1160000','154','true','true','true','true','0','0'),
- ('603','Divine Boots','feet','true','none','1200','adamantaite','c','0','-1','39','0','0','358000','143','true','true','true','true','0','0'),
- ('604','Crafted Leather Gloves','gloves','true','none','650','leather','d','0','-1','19','0','0','20900','38','true','true','true','true','0','0'),
- ('605','Leather Gauntlets','gloves','true','none','640','leather','d','0','-1','22','0','0','33300','60','true','true','true','true','0','0'),
- ('606','Rip Gauntlets','gloves','true','none','630','leather','d','0','-1','27','0','0','74700','135','true','true','true','true','0','0'),
- ('607','Ogre Power Gauntlets','gloves','true','none','620','fine_steel','d','0','-1','29','0','0','97800','177','true','true','true','true','0','0'),
- ('608','Mithril Gauntlets','gloves','true','none','600','mithril','c','0','-1','36','0','0','245000','98','true','true','true','true','0','0'),
- ('609','Gauntlets of Ghost','gloves','true','none','1920','blood_steel','c','0','-1','39','0','0','358000','143','true','true','true','true','0','0'),
- ('610','Saint Knight\'s Gauntlets','gloves','true','none','6400','oriharukon','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('611','Soul Leech Gauntlets','gloves','true','none','4800','blood_steel','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('612','Zubei\'s Gauntlets','gloves','true','none','590','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('613','Sand Dragon Gloves','gloves','true','none','3200','damascus','a','0','-1','48','0','0','1760000','140','true','true','true','true','0','0'),
- ('614','Knight\'s Cloak','underwear','true','none','240','cloth','d','0','-1','7','0','0','20900','38','true','true','true','true','0','0'),
- ('615','Cobweb Cloak','underwear','true','none','240','cobweb','d','0','-1','8','0','0','33300','60','true','true','true','true','0','0'),
- ('616','Cloak of Magic','underwear','true','none','240','cloth','d','0','-1','11','0','0','74700','135','true','true','true','true','0','0'),
- ('617','Mithril Cloak','underwear','true','none','240','mithril','d','0','-1','11','0','0','97800','177','true','true','true','true','0','0'),
- ('618','Cloak of Self Protection','underwear','true','none','240','cloth','c','0','-1','13','0','0','161000','64','true','true','true','true','0','0'),
- ('619','Ancient Cloak','underwear','true','none','230','cloth','c','0','-1','15','0','0','245000','98','true','true','true','true','0','0'),
- ('620','Cloak of Protection','underwear','true','none','230','cloth','c','0','-1','16','0','0','358000','143','true','true','true','true','0','0'),
- ('621','Cloak of Hell','underwear','true','none','220','cloth','b','0','-1','18','0','0','804000','107','true','true','true','true','0','0'),
- ('622','Holy Spirit\'s Cloak','underwear','true','none','220','cloth','a','0','-1','18','0','0','1160000','92','true','true','true','true','0','0'),
- ('623','Divine Cloak','underwear','true','none','220','cloth','a','0','-1','19','0','0','1760000','140','true','true','true','true','0','0'),
- ('624','Cloak of Invisibility','underwear','false','none','260','cloth','none','0','-1','2','0','0','37','0','true','false','true','true','0','0'),
- ('675','Silk Yarn Undergarment Set','underwear','false','none','170','cloth','none','0','-1','6','0','0','1330','0','true','true','true','true','0','0'),
- ('676','Pure White Undergarment Set','underwear','false','none','160','cloth','none','0','-1','9','0','0','6150','0','true','true','true','true','0','0'),
- ('677','One-Piece Swimsuit','underwear','true','none','150','cloth','d','0','-1','10','0','0','10400','18','true','true','true','true','0','0'),
- ('678','Bikini Set','underwear','true','none','150','cloth','d','0','-1','11','0','0','16700','30','true','true','true','true','0','0'),
- ('679','Cursed Undergarment Set','underwear','true','none','150','cloth','d','0','-1','12','0','0','25400','46','true','true','true','true','0','0'),
- ('680','Mithril Undergarment Set','underwear','true','none','140','mithril','c','0','-1','16','0','0','63100','25','true','true','true','true','0','0'),
- ('681','Fascination Undergarment Set','underwear','true','none','140','cloth','c','0','-1','17','0','0','80500','32','true','true','true','true','0','0'),
- ('682','Demon\'s Undergarment Set','underwear','true','none','140','cloth','c','0','-1','19','0','0','179000','71','true','true','true','true','0','0'),
- ('683','Holy Undergarment Set','underwear','true','none','140','cloth','b','0','-1','22','0','0','402000','53','true','true','true','true','0','0'),
- ('684','Underwear of Rule','underwear','true','none','140','cloth','a','0','-1','24','0','0','880000','70','true','true','true','true','0','0'),
- ('685','Crystal Swimsuit Set','underwear','true','none','130','crystal','s','0','-1','26','0','0','1310000','65','true','true','true','true','0','0'),
- ('845','Cat\'s Eye Earring','rear,lear','false','none','150','silver','none','0','-1','0','19','0','8890','0','true','true','true','true','0','0'),
- ('846','Coral Earring','rear,lear','false','none','150','silver','none','0','-1','0','21','0','16000','0','true','true','true','true','0','0'),
- ('847','Red Crescent Earring','rear,lear','true','none','150','silver','d','0','-1','0','24','0','26900','48','true','true','true','true','0','0'),
- ('848','Enchanted Earring','rear,lear','true','none','150','silver','d','0','-1','0','27','0','42600','77','true','true','true','true','0','0'),
- ('849','Tiger\'s Eye Earring','rear,lear','true','none','150','silver','d','0','-1','0','30','0','64300','116','true','true','true','true','0','0'),
- ('850','Elven Earring','rear,lear','true','none','150','silver','d','0','-1','0','34','0','93400','169','true','true','true','true','0','0'),
- ('851','Omen Beast\'s Eye Earring','rear,lear','true','none','150','silver','d','0','-1','0','36','0','121000','220','true','true','true','true','0','0'),
- ('852','Moonstone Earring','rear,lear','true','none','150','silver','c','0','-1','0','39','0','155000','62','true','true','true','true','0','0'),
- ('853','Earring of Protection','rear,lear','true','none','150','silver','c','0','-1','0','42','0','196000','78','true','true','true','true','0','0'),
- ('854','Earring of Binding','rear,lear','true','none','150','silver','c','0','-1','0','45','0','295000','118','true','true','true','true','0','0'),
- ('855','Nassen\'s Earring','rear,lear','true','none','150','silver','c','0','-1','0','48','0','424000','169','true','true','true','true','0','0'),
- ('856','Adamantite Earring','rear,lear','true','none','150','silver','b','0','-1','0','51','0','606000','80','true','true','true','true','0','0'),
- ('857','Blessed Earring','rear,lear','true','none','150','silver','c','0','-1','0','48','0','424000','169','true','true','true','true','0','0'),
- ('858','Tateossian Earring','rear,lear','true','none','150','silver','s','0','-1','0','71','31','4440000','222','true','true','true','true','0','0'),
- ('859','Earring of Mana','rear,lear','true','none','150','silver','b','0','-1','0','51','0','606000','80','true','true','true','true','0','0'),
- ('860','Sage\'s Earring','rear,lear','true','none','150','silver','b','0','-1','0','54','0','924000','123','true','true','true','true','0','0'),
- ('861','Paradia Earring','rear,lear','true','none','150','silver','b','0','-1','0','54','0','924000','123','true','true','true','true','0','0'),
- ('862','Majestic Earring','rear,lear','true','none','150','silver','a','0','-1','0','63','25','2590000','207','true','true','true','true','0','0'),
- ('863','Earring of Solar Eclipse','rear,lear','true','none','150','silver','b','0','-1','0','51','0','606000','80','true','true','true','true','0','0'),
- ('864','Earring of Black Ore','rear,lear','true','none','150','silver','b','0','-1','0','54','0','924000','123','true','true','true','true','0','0'),
- ('865','Earring of Summoning','rear,lear','true','none','150','silver','b','0','-1','0','51','0','606000','80','true','true','true','true','0','0'),
- ('866','Otherworldly Earring','rear,lear','true','none','150','silver','b','0','-1','0','54','0','924000','123','true','true','true','true','0','0'),
- ('867','Elemental Earring','rear,lear','true','none','150','silver','b','0','-1','0','54','0','924000','123','true','true','true','true','0','0'),
- ('868','Earring of Phantom','rear,lear','true','none','150','silver','a','0','-1','0','60','0','1950000','156','true','true','true','true','0','0'),
- ('869','Earring of Grace','rear,lear','true','none','150','silver','b','0','-1','0','51','0','606000','80','true','true','true','true','0','0'),
- ('870','Earring of Holy Spirit','rear,lear','true','none','150','silver','b','0','-1','0','54','0','924000','123','true','true','true','true','0','0'),
- ('871','Phoenix Earring','rear,lear','true','none','150','silver','a','0','-1','0','60','20','1950000','156','true','true','true','true','0','0'),
- ('872','Cerberus Earring','rear,lear','true','none','150','silver','a','0','-1','0','60','0','1950000','156','true','true','true','true','0','0'),
- ('873','Earring of Aid','rear,lear','true','none','150','silver','b','0','-1','0','51','0','606000','80','true','true','true','true','0','0'),
- ('874','Earring of Blessing','rear,lear','true','none','150','silver','b','0','-1','0','51','0','606000','80','true','true','true','true','0','0'),
- ('875','Ring of Knowledge','rfinger,lfinger','false','none','150','gold','none','0','-1','0','9','0','540','0','true','true','true','true','0','0'),
- ('876','Ring of Anguish','rfinger,lfinger','false','none','150','gold','none','0','-1','0','11','0','2340','0','true','true','true','true','0','0'),
- ('877','Ring of Wisdom','rfinger,lfinger','false','none','150','gold','none','0','-1','0','12','0','5920','0','true','true','true','true','0','0'),
- ('878','Blue Coral Ring','rfinger,lfinger','false','none','150','gold','none','0','-1','0','14','0','10700','0','true','true','true','true','0','0'),
- ('879','Enchanted Ring','rfinger,lfinger','true','none','150','gold','d','0','-1','0','18','0','28400','51','true','true','true','true','0','0'),
- ('880','Black Pearl Ring','rfinger,lfinger','true','none','150','gold','d','0','-1','0','20','0','42800','77','true','true','true','true','0','0'),
- ('881','Elven Ring','rfinger,lfinger','true','none','150','gold','d','0','-1','0','22','0','62300','113','true','true','true','true','0','0'),
- ('882','Mithril Ring','rfinger,lfinger','true','none','150','gold','d','0','-1','0','24','0','80800','146','true','true','true','true','0','0'),
- ('883','Aquastone Ring','rfinger,lfinger','true','none','150','gold','c','0','-1','0','26','0','103000','41','true','true','true','true','0','0'),
- ('884','Ring of Protection','rfinger,lfinger','true','none','150','gold','c','0','-1','0','28','0','130000','52','true','true','true','true','0','0'),
- ('885','Ring of Ages','rfinger,lfinger','true','none','150','gold','c','0','-1','0','30','0','196000','78','true','true','true','true','0','0'),
- ('886','Ring of Binding','rfinger,lfinger','true','none','150','gold','c','0','-1','0','32','0','282000','112','true','true','true','true','0','0'),
- ('887','Adamantite Ring','rfinger,lfinger','true','none','150','gold','b','0','-1','0','34','0','404000','53','true','true','true','true','0','0'),
- ('888','Blessed Ring','rfinger,lfinger','true','none','150','gold','c','0','-1','0','32','0','282000','112','true','true','true','true','0','0'),
- ('889','Tateossian Ring','rfinger,lfinger','true','none','150','gold','s','0','-1','0','48','21','2960000','148','true','true','true','true','0','0'),
- ('890','Ring of Devotion','rfinger,lfinger','true','none','150','gold','d','0','-1','0','16','0','18000','32','true','true','true','true','0','0'),
- ('891','Sage\'s Ring','rfinger,lfinger','true','none','150','gold','b','0','-1','0','36','0','616000','82','true','true','true','true','0','0'),
- ('892','Paradia Ring','rfinger,lfinger','true','none','150','gold','b','0','-1','0','36','0','616000','82','true','true','true','true','0','0'),
- ('893','Majestic Ring','rfinger,lfinger','true','none','150','gold','a','0','-1','0','42','17','1730000','138','true','true','true','true','0','0'),
- ('894','Ring of Solar Eclipse','rfinger,lfinger','true','none','150','gold','b','0','-1','0','34','0','404000','53','true','true','true','true','0','0'),
- ('895','Ring of Black Ore','rfinger,lfinger','true','none','150','gold','b','0','-1','0','36','0','616000','82','true','true','true','true','0','0'),
- ('896','Ring of Summoning','rfinger,lfinger','true','none','150','gold','b','0','-1','0','34','0','404000','53','true','true','true','true','0','0'),
- ('897','Otherworldly Ring','rfinger,lfinger','true','none','150','gold','b','0','-1','0','36','0','616000','82','true','true','true','true','0','0'),
- ('898','Elemental Ring','rfinger,lfinger','true','none','150','gold','b','0','-1','0','36','0','616000','82','true','true','true','true','0','0'),
- ('899','Ring of Phantom','rfinger,lfinger','true','none','150','gold','a','0','-1','0','40','0','1300000','104','true','true','true','true','0','0'),
- ('900','Ring of Grace','rfinger,lfinger','true','none','150','gold','b','0','-1','0','34','0','404000','53','true','true','true','true','0','0'),
- ('901','Ring of Holy Spirit','rfinger,lfinger','true','none','150','gold','b','0','-1','0','36','0','616000','82','true','true','true','true','0','0'),
- ('902','Phoenix Ring','rfinger,lfinger','true','none','150','gold','a','0','-1','0','40','13','1300000','104','true','true','true','true','0','0'),
- ('903','Cerberus Ring','rfinger,lfinger','true','none','150','gold','a','0','-1','0','40','0','1300000','104','true','true','true','true','0','0'),
- ('904','Ring of Aid','rfinger,lfinger','true','none','150','gold','b','0','-1','0','34','0','404000','53','true','true','true','true','0','0'),
- ('905','Ring of Blessing','rfinger,lfinger','true','none','150','gold','b','0','-1','0','34','0','404000','53','true','true','true','true','0','0'),
- ('906','Necklace of Knowledge','neck','false','none','150','silver','none','0','-1','0','18','0','1080','0','true','true','true','true','0','0'),
- ('907','Necklace of Anguish','neck','false','none','150','silver','none','0','-1','0','21','0','4680','0','true','true','true','true','0','0'),
- ('908','Necklace of Wisdom','neck','false','none','150','silver','none','0','-1','0','25','0','11900','0','true','true','true','true','0','0'),
- ('909','Blue Diamond Necklace','neck','false','none','150','silver','none','0','-1','0','28','0','21300','0','true','true','true','true','0','0'),
- ('910','Necklace of Devotion','neck','true','none','150','silver','d','0','-1','0','32','0','35900','65','true','true','true','true','0','0'),
- ('911','Enchanted Necklace','neck','true','none','150','silver','d','0','-1','0','36','0','56800','103','true','true','true','true','0','0'),
- ('912','Near Forest Necklace','neck','true','none','150','silver','d','0','-1','0','40','0','85700','155','true','true','true','true','0','0'),
- ('913','Elven Necklace','neck','true','none','150','silver','d','0','-1','0','45','0','125000','227','true','true','true','true','0','0'),
- ('914','Necklace of Darkness','neck','true','none','150','silver','d','0','-1','0','48','0','162000','294','true','true','true','true','0','0'),
- ('915','Aquastone Necklace','neck','true','none','150','silver','c','0','-1','0','52','0','207000','82','true','true','true','true','0','0'),
- ('916','Necklace of Protection','neck','true','none','150','silver','c','0','-1','0','56','0','261000','104','true','true','true','true','0','0'),
- ('917','Necklace of Mermaid','neck','true','none','150','silver','c','0','-1','0','60','0','393000','157','true','true','true','true','0','0'),
- ('918','Adamantite Necklace','neck','true','none','150','silver','b','0','-1','0','68','0','808000','107','true','true','true','true','0','0'),
- ('919','Blessed Necklace','neck','true','none','150','silver','c','0','-1','0','64','0','565000','226','true','true','true','true','0','0'),
- ('920','Tateossian Necklace','neck','true','none','150','silver','s','0','-1','0','95','42','5920000','296','true','true','true','true','0','0'),
- ('921','Necklace of Mana','neck','true','none','150','silver','b','0','-1','0','68','0','808000','107','true','true','true','true','0','0'),
- ('922','Sage\'s Necklace','neck','true','none','150','silver','b','0','-1','0','72','0','1230000','164','true','true','true','true','0','0'),
- ('923','Paradia Necklace','neck','true','none','150','silver','b','0','-1','0','72','0','1230000','164','true','true','true','true','0','0'),
- ('924','Majestic Necklace','neck','true','none','150','silver','a','0','-1','0','85','33','3450000','276','true','true','true','true','0','0'),
- ('925','Necklace of Solar Eclipse','neck','true','none','150','silver','b','0','-1','0','68','0','808000','107','true','true','true','true','0','0'),
- ('926','Necklace of Black Ore','neck','true','none','150','silver','b','0','-1','0','72','0','1230000','164','true','true','true','true','0','0'),
- ('927','Necklace of Summoning','neck','true','none','150','silver','b','0','-1','0','68','0','808000','107','true','true','true','true','0','0'),
- ('928','Otherworldly Necklace','neck','true','none','150','silver','b','0','-1','0','72','0','1230000','164','true','true','true','true','0','0'),
- ('929','Elemental Necklace','neck','true','none','150','silver','b','0','-1','0','72','0','1230000','164','true','true','true','true','0','0'),
- ('930','Necklace of Phantom','neck','true','none','150','silver','a','0','-1','0','80','0','2600000','208','true','true','true','true','0','0'),
- ('931','Necklace of Grace','neck','true','none','150','silver','b','0','-1','0','68','0','808000','107','true','true','true','true','0','0'),
- ('932','Necklace of Holy Spirit','neck','true','none','150','silver','b','0','-1','0','72','0','1230000','164','true','true','true','true','0','0'),
- ('933','Phoenix Necklace','neck','true','none','150','silver','a','0','-1','0','80','26','2600000','208','true','true','true','true','0','0'),
- ('934','Cerberus Necklace','neck','true','none','150','silver','a','0','-1','0','80','0','2600000','208','true','true','true','true','0','0'),
- ('935','Necklace of Aid','neck','true','none','150','silver','b','0','-1','0','68','0','808000','107','true','true','true','true','0','0'),
- ('936','Necklace of Blessing','neck','true','none','150','silver','b','0','-1','0','68','0','808000','107','true','true','true','true','0','0'),
- ('990','Mandragora Essence','gloves','false','none','60','cloth','none','0','-1','9','0','0','37','0','true','true','true','true','0','0'),
- ('991','Royen\'s Key','gloves','false','none','60','cloth','none','0','-1','9','0','0','37','0','true','true','true','true','0','0'),
- ('992','Shilen\'s 1st Mark','gloves','false','none','60','cloth','none','0','-1','9','0','0','37','0','true','true','true','true','0','0'),
- ('993','Shilen\'s 2nd Mark','gloves','false','none','60','cloth','none','0','-1','9','0','0','37','0','true','true','true','true','0','0'),
- ('994','Eye of Abyss','gloves','false','none','60','cloth','none','0','-1','9','0','0','37','0','true','true','true','true','0','0'),
- ('995','Wanted Poster','gloves','false','none','60','cloth','none','0','-1','9','0','0','37','0','true','true','true','true','0','0'),
- ('996','Alex\'s Dagger','gloves','false','none','60','cloth','none','0','-1','9','0','0','37','0','true','true','true','true','0','0'),
- ('997','Pinter\'s Bill','gloves','false','none','60','cloth','none','0','-1','9','0','0','37','0','true','true','true','true','0','0'),
- ('998','Book of Aklantoth - Part 1','gloves','false','none','60','cloth','none','0','-1','9','0','0','37','0','true','true','true','true','0','0'),
- ('999','Book of Aklantoth - Part 2','gloves','false','none','60','cloth','none','0','-1','9','0','0','37','0','true','true','true','true','0','0'),
- ('1000','Book of Aklantoth - Part 3','gloves','false','none','60','cloth','none','0','-1','9','0','0','37','0','true','true','true','true','0','0'),
- ('1100','Cotton Tunic','chest','false','magic','2120','cloth','none','0','-1','21','0','38','2430','0','true','true','true','true','0','0'),
- ('1101','Tunic of Devotion','chest','false','magic','2090','cloth','none','0','-1','30','0','67','20300','0','true','true','true','true','0','0'),
- ('1102','Tunic of Magic','chest','false','magic','2080','cloth','none','0','-1','34','0','86','36900','0','true','true','true','true','0','0'),
- ('1103','Cotton Stockings','legs','false','magic','1060','cloth','none','0','-1','13','0','23','1520','0','true','true','true','true','0','0'),
- ('1104','Stockings of Devotion','legs','false','magic','1040','cloth','none','0','-1','19','0','42','12700','0','true','true','true','true','0','0'),
- ('1105','Stockings of Magic','legs','false','magic','1030','cloth','none','0','-1','21','0','54','23000','0','true','true','true','true','0','0'),
- ('1119','Short Leather Gloves','gloves','false','none','660','leather','none','0','-1','11','0','0','607','0','true','true','true','true','0','0'),
- ('1120','Pa\'agrian Hand','gloves','true','none','1600','leather','c','0','-1','34','0','0','161000','64','true','true','true','true','0','0'),
- ('1121','Apprentice\'s Shoes','feet','false','none','1320','leather','none','0','-1','8','0','0','7','0','true','true','true','true','0','0'),
- ('1122','Cotton Shoes','feet','false','none','1320','leather','none','0','-1','11','0','0','607','0','true','true','true','true','0','0'),
- ('1123','Blue Buckskin Boots','feet','true','none','1300','leather','d','0','-1','22','0','0','33300','60','true','true','true','true','0','0'),
- ('1124','Boots of Power','feet','true','none','1250','leather','d','0','-1','27','0','0','74700','135','true','true','true','true','0','0'),
- ('1125','Assault Boots','feet','true','none','1240','leather','d','0','-1','29','0','0','97800','177','true','true','true','true','0','0'),
- ('1126','Crimson Boots','feet','true','none','1210','leather','c','0','-1','34','0','0','161000','64','true','true','true','true','0','0'),
- ('1127','Forgotten Boots','feet','true','none','4000','leather','c','0','-1','36','0','0','245000','98','true','true','true','true','0','0'),
- ('1128','Adamantite Boots','feet','true','none','4000','adamantaite','c','0','-1','39','0','0','358000','143','true','true','true','true','0','0'),
- ('1129','Crude Leather Shoes','feet','false','none','1320','leather','none','0','-1','11','0','0','607','0','true','true','true','true','0','0'),
- ('1146','Squire\'s Shirt','chest','false','light','3301','cloth','none','0','-1','33','0','0','26','0','false','false','true','false','0','0'),
- ('1147','Squire\'s Pants','legs','false','light','1750','cloth','none','0','-1','20','0','0','6','0','false','false','true','false','0','0'),
- ('1148','Hard Leather Helmet','head','false','none','640','leather','none','0','-1','26','0','0','18400','0','true','true','true','true','0','0'),
- ('1149','Shining Circlet','head','true','none','600','steel','c','0','-1','54','0','0','368000','147','true','true','true','true','0','0'),
- ('1308','Compound Scale Mail','chest','false','heavy','1400','fine_steel','none','0','-1','51','0','0','247000','0','false','true','true','false','0','0'),
- ('1309','Mithril Breastplate','chest','false','heavy','1000','mithril','none','0','-1','51','0','0','247000','0','false','true','true','false','0','0'),
- ('1310','Tunic of Magic','chest','false','magic','150','cloth','none','0','-1','51','0','96','48500','0','false','true','true','false','0','0'),
- ('1311','Puma Skin Shirt','chest','false','light','300','leather','none','0','-1','51','0','0','99900','0','false','true','true','false','0','0'),
- ('1312','White Tunic','chest','false','magic','150','cloth','none','0','-1','51','0','142','138000','0','false','true','true','false','0','0'),
- ('1313','Compound Scale Gaiters','legs','false','heavy','1000','fine_steel','none','0','-1','32','0','0','170000','0','false','true','true','false','0','0'),
- ('1314','Mithril Gaiters','legs','false','heavy','600','mithril','none','0','-1','32','0','0','170000','0','false','true','true','false','0','0'),
- ('1315','Stockings of Magic','legs','false','magic','150','cloth','none','0','-1','32','0','60','30300','0','false','true','true','false','0','0'),
- ('1316','Puma Skin Gaiters','legs','false','light','400','leather','none','0','-1','32','0','0','55800','0','false','true','true','false','0','0'),
- ('1317','Dark Stockings','legs','false','magic','150','cloth','none','0','-1','32','0','79','62500','0','false','true','true','false','0','0'),
- ('1318','Gloves','gloves','false','none','80','cloth','none','0','-1','14','0','0','3270','0','false','true','true','false','0','0'),
- ('1319','Leather Gloves','gloves','false','none','100','leather','none','0','-1','14','0','0','7950','0','false','true','true','false','0','0'),
- ('1320','Crafted Leather Gloves','gloves','false','none','100','leather','none','0','-1','14','0','0','29800','0','false','true','true','false','0','0'),
- ('1321','Rip Gauntlets','gloves','false','none','150','leather','none','0','-1','14','0','0','97800','0','false','true','true','false','0','0'),
- ('1322','Bracer','gloves','false','none','80','leather','none','0','-1','14','0','0','16200','0','false','true','true','false','0','0'),
- ('1323','Leather Shoes','feet','false','none','120','leather','none','0','-1','14','0','0','3270','0','false','true','true','false','0','0'),
- ('1324','Low Boots','feet','false','none','150','leather','none','0','-1','14','0','0','7950','0','false','true','true','false','0','0'),
- ('1325','Leather Boots','feet','false','none','250','leather','none','0','-1','14','0','0','29800','0','false','true','true','false','0','0'),
- ('1326','Iron Boots','feet','false','none','300','fine_steel','none','0','-1','14','0','0','74700','0','false','true','true','false','0','0'),
- ('1327','Boots','feet','false','none','200','cloth','none','0','-1','14','0','0','16200','0','false','true','true','false','0','0'),
- ('1506','Necklace of Courage','neck','false','none','150','silver','none','0','-1','0','15','0','66','0','true','true','true','true','0','0'),
- ('1507','Necklace of Valor','neck','false','none','150','silver','none','0','-1','0','21','0','4680','0','true','true','true','true','0','0'),
- ('1508','Ring of Raccoon','rfinger,lfinger','false','none','150','gold','none','0','-1','0','11','0','2340','0','true','true','true','true','0','0'),
- ('1509','Ring of Firefly','rfinger,lfinger','false','none','150','gold','none','0','-1','0','11','0','2340','0','true','true','true','true','0','0'),
- ('2376','Avadon Breastplate','chest','true','heavy','7920','leather','b','0','-1','157','0','0','2080000','277','true','true','true','true','0','0'),
- ('2377','Mithril Scale Gaiters','legs','true','heavy','3870','leather','d','0','-1','64','0','0','187000','340','true','true','true','true','0','0'),
- ('2378','Brigandine Gaiters','legs','true','heavy','3820','leather','d','0','-1','64','0','0','187000','340','true','true','true','true','0','0'),
- ('2379','Avadon Gaiters','legs','true','heavy','3520','leather','b','0','-1','98','0','0','1300000','173','true','true','true','true','0','0'),
- ('2380','Blue Wolf Gaiters','legs','true','heavy','3370','leather','b','0','-1','104','0','0','2010000','268','true','true','true','true','0','0'),
- ('2381','Doom Plate Armor','fullarmor','true','heavy','9980','leather','b','0','-1','270','0','0','4710000','628','true','true','true','true','0','0'),
- ('2382','Tallum Plate Armor','fullarmor','true','heavy','9780','leather','a','0','-1','278','0','0','6770000','541','true','true','true','true','0','0'),
- ('2383','Majestic Plate Armor','fullarmor','true','heavy','9200','leather','a','0','-1','293','0','0','10300000','824','true','true','true','true','0','0'),
- ('2384','Zubei\'s Leather Shirt','chest','true','light','4330','leather','b','0','-1','117','0','0','1560000','208','true','true','true','true','0','0'),
- ('2385','Dark Crystal Leather Armor','chest','true','light','4300','leather','a','0','-1','128','0','0','3470000','277','true','true','true','true','0','0'),
- ('2386','Wooden Gaiters','legs','false','light','1670','leather','none','0','-1','29','0','0','4970','0','true','true','true','true','0','0'),
- ('2387','Tempered Mithril Gaiters','legs','true','light','1530','leather','c','0','-1','56','0','0','237000','94','true','true','true','true','0','0'),
- ('2388','Zubei\'s Leather Gaiters','legs','true','light','1480','leather','b','0','-1','73','0','0','973000','129','true','true','true','true','0','0'),
- ('2389','Dark Crystal Leggings','legs','true','light','1480','leather','a','0','-1','80','0','0','2170000','173','true','true','true','true','0','0'),
- ('2390','Avadon Leather Armor','fullarmor','true','light','5600','leather','b','0','-1','191','0','0','2280000','304','true','true','true','true','0','0'),
- ('2391','Blue Wolf Leather Armor','fullarmor','true','light','5500','leather','b','0','-1','202','0','0','3530000','470','true','true','true','true','0','0'),
- ('2392','Leather Armor of Doom','fullarmor','true','light','5500','leather','b','0','-1','202','0','0','3530000','470','true','true','true','true','0','0'),
- ('2393','Tallum Leather Armor','fullarmor','true','light','5400','leather','a','0','-1','209','0','0','5080000','406','true','true','true','true','0','0'),
- ('2394','Nightmarish Leather Armor','fullarmor','true','light','5300','leather','a','0','-1','220','0','0','7730000','618','true','true','true','true','0','0'),
- ('2395','Majestic Leather Armor','fullarmor','true','light','5350','leather','a','0','-1','220','0','0','7730000','618','true','true','true','true','0','0'),
- ('2396','Elven Mithril Tunic','chest','true','magic','720','leather','d','0','-1','54','0','169','224000','407','true','true','true','true','0','0'),
- ('2397','Tunic of Zubei','chest','true','magic','1960','leather','b','0','-1','78','0','345','1560000','208','true','true','true','true','0','0'),
- ('2398','Blue Wolf Tunic','chest','true','magic','1920','leather','b','0','-1','83','0','377','2410000','321','true','true','true','true','0','0'),
- ('2399','Tunic of Doom','chest','true','magic','1900','leather','b','0','-1','83','0','377','2410000','321','true','true','true','true','0','0'),
- ('2400','Tallum Tunic','chest','true','magic','1860','leather','a','0','-1','86','0','409','3470000','277','true','true','true','true','0','0'),
- ('2401','Elven Mithril Stockings','legs','true','magic','2400','leather','d','0','-1','34','0','105','140000','254','true','true','true','true','0','0'),
- ('2402','Stockings of Zubei','legs','true','magic','940','leather','b','0','-1','49','0','216','973000','129','true','true','true','true','0','0'),
- ('2403','Blue Wolf Stockings','legs','true','magic','920','leather','b','0','-1','52','0','236','1510000','201','true','true','true','true','0','0'),
- ('2404','Stockings of Doom','legs','true','magic','910','leather','b','0','-1','52','0','236','1510000','201','true','true','true','true','0','0'),
- ('2405','Tallum Stockings','legs','true','magic','920','leather','a','0','-1','53','0','256','2170000','173','true','true','true','true','0','0'),
- ('2406','Avadon Robe','fullarmor','true','magic','2540','leather','b','0','-1','127','0','561','2280000','304','true','true','true','true','0','0'),
- ('2407','Dark Crystal Robe','fullarmor','true','magic','2450','leather','a','0','-1','139','0','665','5080000','406','true','true','true','true','0','0'),
- ('2408','Nightmare Robe','fullarmor','true','magic','2300','leather','a','0','-1','147','0','718','7730000','618','true','true','true','true','0','0'),
- ('2409','Majestic Robe','fullarmor','true','magic','2330','leather','a','0','-1','147','0','718','7730000','618','true','true','true','true','0','0'),
- ('2410','Nightmarish Tattoo','underwear','true','none','3600','leather','a','0','-1','139','0','0','5280000','422','true','true','true','true','0','0'),
- ('2411','Brigandine Helmet','head','true','none','630','leather','d','0','-1','41','0','0','112000','203','true','true','true','true','0','0'),
- ('2412','Plate Helmet','head','true','none','630','leather','d','0','-1','44','0','0','147000','267','true','true','true','true','0','0'),
- ('2413','Chain Hood','head','true','none','620','leather','c','0','-1','47','0','0','189000','75','true','true','true','true','0','0'),
- ('2414','Full Plate Helmet','head','true','none','600','leather','c','0','-1','58','0','0','536000','214','true','true','true','true','0','0'),
- ('2415','Avadon Circlet','head','true','none','590','leather','b','0','-1','62','0','0','778000','103','true','true','true','true','0','0'),
- ('2416','Blue Wolf Helmet','head','true','none','580','leather','b','0','-1','66','0','0','1210000','161','true','true','true','true','0','0'),
- ('2417','Doom Helmet','head','true','none','580','leather','b','0','-1','66','0','0','1210000','161','true','true','true','true','0','0'),
- ('2418','Helm of Nightmare','head','true','none','560','leather','a','0','-1','73','0','0','2640000','211','true','true','true','true','0','0'),
- ('2419','Majestic Circlet','head','true','none','550','leather','a','0','-1','73','0','0','2640000','211','true','true','true','true','0','0'),
- ('2420','Dragon Headgear','head','true','none','540','leather','s','0','-1','77','0','0','3590000','179','true','true','true','true','0','0'),
- ('2421','The Hood','head','true','none','540','leather','s','0','-1','77','0','0','3590000','179','true','true','true','true','0','0'),
- ('2422','Reinforced Leather Boots','feet','true','none','1280','leather','d','0','-1','24','0','0','50800','92','true','true','true','true','0','0'),
- ('2423','Boots of Knowledge','feet','true','none','1270','leather','d','0','-1','24','0','0','50800','92','true','true','true','true','0','0'),
- ('2424','Manticore Skin Boots','feet','true','none','1260','leather','d','0','-1','27','0','0','74700','135','true','true','true','true','0','0'),
- ('2425','Brigandine Boots','feet','true','none','1250','leather','d','0','-1','27','0','0','74700','135','true','true','true','true','0','0'),
- ('2426','Elven Mithril Boots','feet','true','none','1250','leather','d','0','-1','27','0','0','74700','135','true','true','true','true','0','0'),
- ('2427','Salamander Skin Boots','feet','true','none','1230','leather','d','0','-1','29','0','0','97800','177','true','true','true','true','0','0'),
- ('2428','Plate Boots','feet','true','none','1240','leather','d','0','-1','29','0','0','97800','177','true','true','true','true','0','0'),
- ('2429','Chain Boots','feet','true','none','1220','leather','c','0','-1','32','0','0','126000','50','true','true','true','true','0','0'),
- ('2430','Karmian Boots','feet','true','none','1230','leather','c','0','-1','32','0','0','126000','50','true','true','true','true','0','0'),
- ('2431','Plated Leather Boots','feet','true','none','1220','leather','c','0','-1','32','0','0','126000','50','true','true','true','true','0','0'),
- ('2432','Dwarven Chain Boots','feet','true','none','1210','leather','c','0','-1','32','0','0','126000','50','true','true','true','true','0','0'),
- ('2433','Boots of Seal','feet','true','none','1220','leather','c','0','-1','32','0','0','126000','50','true','true','true','true','0','0'),
- ('2434','Rind Leather Boots','feet','true','none','1220','leather','c','0','-1','34','0','0','161000','64','true','true','true','true','0','0'),
- ('2435','Demon\'s Boots','feet','true','none','1220','leather','c','0','-1','36','0','0','245000','98','true','true','true','true','0','0'),
- ('2436','Theca Leather Boots','feet','true','none','1210','leather','c','0','-1','37','0','0','275000','110','true','true','true','true','0','0'),
- ('2437','Drake Leather Boots','feet','true','none','1210','leather','c','0','-1','39','0','0','358000','143','true','true','true','true','0','0'),
- ('2438','Full Plate Boots','feet','true','none','1200','leather','c','0','-1','39','0','0','358000','143','true','true','true','true','0','0'),
- ('2439','Blue Wolf Boots','feet','true','none','1130','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('2440','Boots of Nightmare','feet','true','none','1110','leather','a','0','-1','48','0','0','1760000','140','true','true','true','true','0','0'),
- ('2441','Dark Legion Boots','feet','true','none','1120','leather','a','0','-1','48','0','0','1760000','140','true','true','true','true','0','0'),
- ('2442','Dasparion\'s Boots','feet','true','none','1100','leather','a','0','-1','48','0','0','1760000','140','true','true','true','true','0','0'),
- ('2443','Dragon Leather Boots','feet','true','none','1100','leather','s','0','-1','51','0','0','2390000','119','true','true','true','true','0','0'),
- ('2444','The Boots','feet','true','none','1100','leather','s','0','-1','51','0','0','2390000','119','true','true','true','true','0','0'),
- ('2445','Dragon Scale Boots','feet','true','none','1100','leather','a','0','-1','48','0','0','1760000','140','true','true','true','true','0','0'),
- ('2446','Reinforced Leather Gloves','gloves','true','none','640','leather','d','0','-1','24','0','0','50800','92','true','true','true','true','0','0'),
- ('2447','Gloves of Knowledge','gloves','true','none','640','leather','d','0','-1','24','0','0','50800','92','true','true','true','true','0','0'),
- ('2448','Manticore Skin Gloves','gloves','true','none','630','leather','d','0','-1','27','0','0','74700','135','true','true','true','true','0','0'),
- ('2449','Brigandine Gauntlets','gloves','true','none','630','leather','d','0','-1','27','0','0','74700','135','true','true','true','true','0','0'),
- ('2450','Elven Mithril Gloves','gloves','true','none','640','leather','d','0','-1','27','0','0','74700','135','true','true','true','true','0','0'),
- ('2451','Sage\'s Worn Gloves','gloves','true','none','630','leather','d','0','-1','29','0','0','97800','177','true','true','true','true','0','0'),
- ('2452','Reinforced Mithril Gloves','gloves','true','none','620','leather','c','0','-1','32','0','0','126000','50','true','true','true','true','0','0'),
- ('2453','Chain Gloves','gloves','true','none','620','leather','c','0','-1','32','0','0','126000','50','true','true','true','true','0','0'),
- ('2454','Karmian Gloves','gloves','true','none','620','leather','c','0','-1','32','0','0','126000','50','true','true','true','true','0','0'),
- ('2455','Plated Leather Gloves','gloves','true','none','610','leather','c','0','-1','33','0','0','149000','59','true','true','true','true','0','0'),
- ('2456','Dwarven Chain Gloves','gloves','true','none','600','leather','c','0','-1','34','0','0','161000','64','true','true','true','true','0','0'),
- ('2457','Gloves of Seal','gloves','true','none','620','leather','c','0','-1','34','0','0','161000','64','true','true','true','true','0','0'),
- ('2458','Rind Leather Gloves','gloves','true','none','600','leather','c','0','-1','34','0','0','161000','64','true','true','true','true','0','0'),
- ('2459','Demon\'s Gloves','gloves','true','none','610','leather','c','0','-1','36','0','0','245000','98','true','true','true','true','0','0'),
- ('2460','Theca Leather Gloves','gloves','true','none','600','leather','c','0','-1','37','0','0','275000','110','true','true','true','true','0','0'),
- ('2461','Drake Leather Gloves','gloves','true','none','600','leather','c','0','-1','39','0','0','358000','143','true','true','true','true','0','0'),
- ('2462','Full Plate Gauntlets','gloves','true','none','600','leather','c','0','-1','39','0','0','358000','143','true','true','true','true','0','0'),
- ('2463','Divine Gloves','gloves','true','none','610','leather','c','0','-1','39','0','0','358000','143','true','true','true','true','0','0'),
- ('2464','Avadon Gloves','gloves','true','none','590','leather','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('2465','Chain Gloves of Silence','gloves','true','none','590','leather','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('2466','Guardian\'s Gloves','gloves','true','none','590','leather','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('2467','Gloves of Blessing','gloves','true','none','590','leather','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('2468','Blessed Gloves','gloves','true','none','600','leather','c','0','-1','39','0','0','358000','143','true','true','true','true','0','0'),
- ('2469','Gloves of The Underworld','gloves','true','none','580','leather','a','0','-1','45','0','0','1160000','92','true','true','true','true','0','0'),
- ('2470','Gloves of Phantom','gloves','true','none','560','leather','a','0','-1','48','0','0','1760000','140','true','true','true','true','0','0'),
- ('2471','Dark Legion Gloves','gloves','true','none','560','leather','a','0','-1','48','0','0','1760000','140','true','true','true','true','0','0'),
- ('2472','Dark Crystal Gloves','gloves','true','none','580','leather','a','0','-1','45','0','0','1160000','92','true','true','true','true','0','0'),
- ('2473','The Gloves','gloves','true','none','540','leather','s','0','-1','51','0','0','2390000','119','true','true','true','true','0','0'),
- ('2474','Dasparion\'s Gloves','gloves','true','none','550','leather','a','0','-1','48','0','0','1760000','140','true','true','true','true','0','0'),
- ('2475','Doom Gloves','gloves','true','none','580','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('2476','Dragon Gauntlets','gloves','true','none','540','leather','s','0','-1','52','0','0','2610000','130','true','true','true','true','0','0'),
- ('2477','Dragon Leather Gloves','gloves','true','none','540','leather','s','0','-1','51','0','0','2390000','119','true','true','true','true','0','0'),
- ('2478','Tallum Gloves','gloves','true','none','580','leather','a','0','-1','45','0','0','1160000','92','true','true','true','true','0','0'),
- ('2479','Gauntlets of Nightmare','gloves','true','none','550','leather','a','0','-1','48','0','0','1760000','140','true','true','true','true','0','0'),
- ('2480','Elemental Gloves','gloves','true','none','580','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('2481','Gloves of Grace','gloves','true','none','580','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('2482','Majestic Gauntlets','gloves','true','none','540','leather','a','0','-1','48','0','0','1760000','140','true','true','true','true','0','0'),
- ('2483','Gust Bracer','gloves','true','none','580','leather','a','0','-1','45','0','0','1160000','92','true','true','true','true','0','0'),
- ('2484','Cerberus Gloves','gloves','true','none','540','leather','a','0','-1','48','0','0','1760000','140','true','true','true','true','0','0'),
- ('2485','Implosion Gauntlets','gloves','true','none','580','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('2486','Paradia Gloves','gloves','true','none','580','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('2487','Blue Wolf Gloves','gloves','true','none','590','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('2488','Phoenix Gloves','gloves','true','none','570','leather','a','0','-1','45','0','0','1160000','92','true','true','true','true','0','0'),
- ('2489','Gloves of Black Ore','gloves','true','none','570','leather','a','0','-1','45','0','0','1160000','92','true','true','true','true','0','0'),
- ('2490','Cloak of Silence','underwear','false','none','250','leather','none','0','-1','5','0','0','6770','0','true','true','true','true','0','0'),
- ('2491','Golden Yarn Cloak','underwear','false','none','250','leather','none','0','-1','5','0','0','12300','0','true','true','true','true','0','0'),
- ('2492','Shadow Cloak','underwear','true','none','240','leather','c','0','-1','12','0','0','126000','50','true','true','true','true','0','0'),
- ('2506','Wolf\'s Leather Armor','wolf','false','pet','160','leather','none','0','-1','9','14','0','7000','0','true','true','true','true','0','0'),
- ('3891','Wolf\'s Hide Armor','wolf','false','pet','160','leather','none','0','-1','13','16','0','18000','0','true','true','true','true','0','0'),
- ('3892','Wolf\'s Hard Leather Mail','wolf','false','pet','160','leather','none','0','-1','16','18','0','32000','0','true','true','true','true','0','0'),
- ('3893','Wolf\'s Wooden Armor','wolf','false','pet','160','leather','none','0','-1','19','20','0','55000','0','true','true','true','true','0','0'),
- ('3894','Wolf\'s Ring Mail','wolf','false','pet','160','leather','none','0','-1','22','23','0','87000','0','true','true','true','true','0','0'),
- ('3895','Wolf\'s Bone Armor','wolf','false','pet','160','leather','none','0','-1','26','26','0','130000','0','true','true','true','true','0','0'),
- ('3896','Wolf\'s Scale Male','wolf','false','pet','160','leather','none','0','-1','30','29','0','200000','0','true','true','true','true','0','0'),
- ('3897','Wof\'s Bronze Armor','wolf','false','pet','160','leather','none','0','-1','33','31','0','260000','0','true','true','true','true','0','0'),
- ('3898','Wolf\'s Plate Mail','wolf','false','pet','160','leather','none','0','-1','37','33','0','330000','0','true','true','true','true','0','0'),
- ('3899','Wolf\'s Steel Armor','wolf','false','pet','160','leather','none','0','-1','40','36','0','420000','0','true','true','true','true','0','0'),
- ('3900','Wolf\'s Luxury Plate','wolf','false','pet','160','leather','none','0','-1','43','38','0','640000','0','true','true','true','true','0','0'),
- ('3901','Wolf\'s Mithril Armor','wolf','false','pet','160','leather','none','0','-1','47','41','0','940000','0','true','true','true','true','0','0'),
- ('3912','Hatchling\'s Soft Leather','hatchling','false','pet','160','leather','none','0','-1','26','26','0','200000','0','true','true','true','true','0','0'),
- ('3913','Hatchling\'s Scale Mail','hatchling','false','pet','160','leather','none','0','-1','29','29','0','310000','0','true','true','true','true','0','0'),
- ('3914','Hatchling\'s Brigandine','hatchling','false','pet','160','leather','none','0','-1','31','31','0','420000','0','true','true','true','true','0','0'),
- ('3915','Hatchling\'s Bronze Coat','hatchling','false','pet','160','leather','none','0','-1','33','33','0','570000','0','true','true','true','true','0','0'),
- ('3916','Hatchling\'s Steel Coat','hatchling','false','pet','160','leather','none','0','-1','36','36','0','760000','0','true','true','true','true','0','0'),
- ('3917','Hatchling\'s Shadowplate','hatchling','false','pet','160','leather','none','0','-1','38','38','0','1100000','0','true','true','true','true','0','0'),
- ('3918','Hatchling\'s Mithril Coat','hatchling','false','pet','160','leather','none','0','-1','41','41','0','1600000','0','true','true','true','true','0','0'),
- ('4224','Dream Armor','chest','true','heavy','8920','bronze','none','0','-1','68','0','0','49200','0','false','false','false','false','0','0'),
- ('4225','Dream Stockings','legs','true','heavy','3960','bronze','none','0','-1','43','0','0','30700','0','false','false','false','false','0','0'),
- ('4226','Dream Gloves','gloves','true','none','650','leather','none','0','-1','17','0','0','12300','0','false','false','false','false','0','0'),
- ('4227','Dream Boots','feet','true','none','1310','cloth','none','0','-1','17','0','0','12300','0','false','false','false','false','0','0'),
- ('4228','Ubiquitous Armor','chest','true','heavy','8920','bronze','none','0','-1','68','0','0','49200','0','false','false','false','false','0','0'),
- ('4229','Ubiquitous Stockings','legs','true','heavy','3960','bronze','none','0','-1','43','0','0','30700','0','false','false','false','false','0','0'),
- ('4230','Ubiquitous Gloves','gloves','true','none','650','leather','none','0','-1','17','0','0','12300','0','false','false','false','false','0','0'),
- ('4231','Ubiquitous Boots','feet','true','none','1310','cloth','none','0','-1','17','0','0','12300','0','false','false','false','false','0','0'),
- ('4234','Hatchling\'s Level 65 Armor','hatchling','false','pet','160','leather','none','0','-1','50','50','0','5628000','0','true','true','true','true','0','0'),
- ('4235','Hatchling\'s Level 75 Armor','hatchling','false','pet','160','leather','none','0','-1','58','58','0','19073000','0','true','true','true','true','0','0'),
- ('4236','Gara Item','chest','false','light','160','leather','none','0','-1','58','58','0','19073000','0','true','true','true','true','0','0'),
- ('5170','Mithril Panzer Coat','strider','false','pet','160','leather','none','0','-1','41','41','0','1600000','0','true','true','true','true','0','0'),
- ('5171','Brigadine Panzer Coat','strider','false','pet','160','leather','none','0','-1','44','44','0','2300000','0','true','true','true','true','0','0'),
- ('5172','Draconic Panzer Coat','strider','false','pet','160','leather','none','0','-1','46','46','0','3400000','0','true','true','true','true','0','0'),
- ('5173','Blood Panzer Coat','strider','false','pet','160','leather','none','0','-1','49','49','0','4900000','0','true','true','true','true','0','0'),
- ('5174','Ophidian Panzer Coat','strider','false','pet','160','leather','none','0','-1','52','52','0','7300000','0','true','true','true','true','0','0'),
- ('5175','Inferno Panzer Coat','strider','false','pet','160','leather','none','0','-1','54','54','0','10000000','0','true','true','true','true','0','0'),
- ('5182','Hatchling\'s Gorgon Coat','hatchling','false','pet','160','leather','none','0','-1','44','44','0','2300000','0','true','true','true','true','0','0'),
- ('5183','Hatchling\'s Ophidian Plate','hatchling','false','pet','160','leather','none','0','-1','46','46','0','3400000','0','true','true','true','true','0','0'),
- ('5184','Hatchling\'s Crimson Plate','hatchling','false','pet','160','leather','none','0','-1','49','49','0','4900000','0','true','true','true','true','0','0'),
- ('5185','Hatchling\'s Draconic Plate','hatchling','false','pet','160','leather','none','0','-1','52','52','0','7300000','0','true','true','true','true','0','0'),
- ('5186','Hatchling\'s Inferno Plate','hatchling','false','pet','160','leather','none','0','-1','54','54','0','10000000','0','true','true','true','true','0','0'),
- ('5216','Wolf Level 75 Armor','wolf','false','pet','160','leather','none','0','-1','71','58','0','938705','0','true','true','true','true','0','0'),
- ('5287','Sealed Dark Crystal breastplate','chest','true','heavy','7700','crystal','a','0','-1','171','0','0','4630000','370','true','true','true','true','0','0'),
- ('5288','Sealed Dark Crystal Gaiters','legs','true','heavy','3320','crystal','a','0','-1','107','0','0','2890000','231','true','true','true','true','0','0'),
- ('5289','Sealed Dark Crystal Helmet','head','true','none','570','crystal','a','0','-1','69','0','0','1740000','139','true','true','true','true','0','0'),
- ('5290','Sealed Dark Crystal Gloves','gloves','true','none','580','leather','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5291','Sealed Dark Crystal Boots','feet','true','none','1110','crystal','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5293','Sealed Tallum Plate Armor','fullarmor','true','heavy','9780','leather','a','0','-1','278','0','0','6770000','541','true','true','true','true','0','0'),
- ('5294','Sealed Tallum Helmet','head','true','none','570','cloth','a','0','-1','69','0','0','1740000','139','true','true','true','true','0','0'),
- ('5295','Sealed Tallum Gloves','gloves','true','none','580','leather','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5296','Sealed Tallum Boots','feet','true','none','1130','blood_steel','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5297','Sealed Dark Crystal Leather Armor','chest','true','light','4300','leather','a','0','-1','128','0','0','3470000','277','true','true','true','true','0','0'),
- ('5298','Sealed Dark Crystal Leggings','legs','true','light','1480','leather','a','0','-1','80','0','0','2170000','173','true','true','true','true','0','0'),
- ('5299','Sealed Gloves of The Underworld','gloves','true','none','580','leather','a','0','-1','45','0','0','1070000','92','true','true','true','true','0','0'),
- ('5300','Sealed Boots of The Underworld','feet','true','none','1110','leather','a','0','-1','45','0','0','1070000','92','true','true','true','true','0','0'),
- ('5301','Sealed Tallum Leather Armor','fullarmor','true','light','5400','leather','a','0','-1','209','0','0','5080000','406','true','true','true','true','0','0'),
- ('5302','Sealed Gust Bracer','gloves','true','none','580','leather','a','0','-1','45','0','0','1070000','92','true','true','true','true','0','0'),
- ('5303','Sealed Gust Boots','feet','true','none','1120','blood_steel','a','0','-1','45','0','0','1070000','92','true','true','true','true','0','0'),
- ('5304','Sealed Tallum Tunic','chest','true','magic','1860','leather','a','0','-1','86','0','409','3470000','277','true','true','true','true','0','0'),
- ('5305','Sealed Tallum Stockings','legs','true','magic','920','leather','a','0','-1','53','0','256','2170000','173','true','true','true','true','0','0'),
- ('5306','Sealed Gloves of Black Ore','gloves','true','none','570','leather','a','0','-1','45','0','0','1070000','92','true','true','true','true','0','0'),
- ('5307','Sealed Red Flame Boots','feet','true','none','1120','blood_steel','a','0','-1','45','0','0','1070000','92','true','true','true','true','0','0'),
- ('5308','Sealed Dark Crystal Robe','fullarmor','true','magic','2450','leather','a','0','-1','139','0','665','5080000','406','true','true','true','true','0','0'),
- ('5309','Sealed Phoenix Gloves','gloves','true','none','570','leather','a','0','-1','45','0','0','1070000','92','true','true','true','true','0','0'),
- ('5310','Sealed Phoenix Boots','feet','true','none','1120','blood_steel','a','0','-1','45','0','0','1070000','92','true','true','true','true','0','0'),
- ('5311','Sealed Armor of Nightmare','fullarmor','true','heavy','9580','blood_steel','a','0','-1','293','0','0','10300000','824','true','true','true','true','0','0'),
- ('5312','Sealed Helm of Nightmare','head','true','none','560','leather','a','0','-1','73','0','0','2640000','211','true','true','true','true','0','0'),
- ('5313','Sealed Gauntlets of Nightmare','gloves','true','none','550','leather','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5314','Sealed Boots of Nightmare','feet','true','none','1110','leather','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5316','Sealed Majestic Plate Armor','fullarmor','true','heavy','9200','leather','a','0','-1','293','0','0','10300000','824','true','true','true','true','0','0'),
- ('5317','Sealed Majestic Circlet','head','true','none','550','leather','a','0','-1','73','0','0','2640000','211','true','true','true','true','0','0'),
- ('5318','Sealed Majestic Gauntlets','gloves','true','none','540','leather','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5319','Sealed Majestic Boots','feet','true','none','1110','blood_steel','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5320','Sealed Leather Armor of Nightmare','fullarmor','true','light','5300','leather','a','0','-1','220','0','0','7730000','618','true','true','true','true','0','0'),
- ('5321','Sealed Dark Legion Gloves','gloves','true','none','560','leather','a','0','-1','48','0','0','1630000','140','true','true','true','true','0','0'),
- ('5322','Sealed Dark Legion Boots','feet','true','none','1120','leather','a','0','-1','48','0','0','1630000','140','true','true','true','true','0','0'),
- ('5323','Sealed Majestic Leather Armor','fullarmor','true','light','5350','leather','a','0','-1','220','0','0','7730000','618','true','true','true','true','0','0'),
- ('5324','Sealed Gloves of Phantom','gloves','true','none','560','leather','a','0','-1','48','0','0','1630000','140','true','true','true','true','0','0'),
- ('5325','Sealed Boots of Phantom','feet','true','none','1120','oriharukon','a','0','-1','48','0','0','1630000','140','true','true','true','true','0','0'),
- ('5326','Sealed Nightmare Robe','fullarmor','true','magic','2300','leather','a','0','-1','147','0','718','7730000','618','true','true','true','true','0','0'),
- ('5327','Sealed Cerberus Gloves','gloves','true','none','540','leather','a','0','-1','48','0','0','1630000','140','true','true','true','true','0','0'),
- ('5328','Sealed Cerberus Boots','feet','true','none','1120','damascus','a','0','-1','48','0','0','1630000','140','true','true','true','true','0','0'),
- ('5329','Sealed Majestic Robe','fullarmor','true','magic','2330','leather','a','0','-1','147','0','718','7730000','618','true','true','true','true','0','0'),
- ('5330','Sealed Dasparion\'s Gloves','gloves','true','none','550','leather','a','0','-1','48','0','0','1630000','140','true','true','true','true','0','0'),
- ('5331','Sealed Dasparion\'s Boots','feet','true','none','1100','leather','a','0','-1','48','0','0','1630000','140','true','true','true','true','0','0'),
- ('5576','Sound Test Boots','feet','false','none','50','cloth','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('5590','Squeaking Shoes','feet','false','none','50','cloth','none','0','-1','0','0','0','350000','0','true','true','true','true','0','0'),
- ('5709','Sealed Zubei\'s Gauntlets','gloves','true','none','590','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5710','Zubei\'s Gauntlets - Heavy Armor','gloves','true','none','590','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5711','Zubei\'s Gauntlets - Light Armor','gloves','true','none','590','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5712','Zubei\'s Gauntlets - Robe','gloves','true','none','590','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5713','Sealed Avadon Gloves','gloves','true','none','590','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5714','Avadon Gloves - Heavy Armor','gloves','true','none','590','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5715','Avadon Gloves - Light Armor','gloves','true','none','590','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5716','Avadon Gloves - Robe','gloves','true','none','590','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5717','Sealed Blue Wolf Gloves','gloves','true','none','590','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5718','Blue Wolf Gloves - Heavy Armor','gloves','true','none','590','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5719','Blue Wolf Gloves - Light Armor','gloves','true','none','590','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5720','Blue Wolf Gloves - Robe','gloves','true','none','590','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5721','Sealed Doom Gloves','gloves','true','none','580','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5722','Doom Gloves - Heavy Armor','gloves','true','none','580','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5723','Doom Gloves - Light Armor','gloves','true','none','580','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5724','Doom Gloves - Robe','gloves','true','none','580','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5725','Sealed Zubei\'s Boots','feet','true','none','1180','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5726','Zubei\'s Boots - Heavy Armor','feet','true','none','1180','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5727','Zubei\'s Boots - Light Armor','feet','true','none','1180','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5728','Zubei\'s Boots - Robe','feet','true','none','1180','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5729','Sealed Avadon Boots','feet','true','none','1180','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5730','Avadon Boots - Heavy Armor','feet','true','none','1180','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5731','Avadon Boots - Light Armor','feet','true','none','1180','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5732','Avadon Boots - Robe','feet','true','none','1180','mithril','b','0','-1','41','0','0','519000','69','true','true','true','true','0','0'),
- ('5733','Sealed Blue Wolf Boots','feet','true','none','1130','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5734','Blue Wolf Boots - Heavy Armor','feet','true','none','1130','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5735','Blue Wolf Boots - Light Armor','feet','true','none','1130','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5736','Blue Wolf Boots - Robe','feet','true','none','1130','leather','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5737','Sealed Boots of Doom','feet','true','none','1130','mithril','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5738','Doom Boots - Heavy Armor','feet','true','none','1130','mithril','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5739','Doom Boots - Light Armor','feet','true','none','1130','mithril','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5740','Doom Boots - Robe','feet','true','none','1130','mithril','b','0','-1','44','0','0','804000','107','true','true','true','true','0','0'),
- ('5765','Dark Crystal Gloves - Heavy Armor','gloves','true','none','580','leather','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5766','Dark Crystal Gloves - Light Armor','gloves','true','none','580','leather','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5767','Dark Crystal Gloves - Robe','gloves','true','none','580','leather','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5768','Tallum Gloves - Heavy Armor','gloves','true','none','580','leather','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5769','Tallum Gloves - Light Armor','gloves','true','none','580','leather','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5770','Tallum Gloves - Robe','gloves','true','none','580','leather','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5771','Gauntlets of Nightmare - Heavy Armor','gloves','true','none','550','leather','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5772','Gauntlets of Nightmare - Light Armor','gloves','true','none','550','leather','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5773','Gauntlets of Nightmare - Robe','gloves','true','none','550','leather','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5774','Majestic Gauntlets - Heavy Armor','gloves','true','none','540','leather','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5775','Majestic Gauntlets - Light Armor','gloves','true','none','540','leather','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5776','Majestic Gauntlets - Robe','gloves','true','none','540','leather','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5777','Dark Crystal Boots - Heavy Armor','feet','true','none','1110','crystal','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5778','Dark Crystal Boots - Light Armor','feet','true','none','1110','crystal','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5779','Dark Crystal Boots - Robe','feet','true','none','1110','crystal','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5780','Tallum Boots - Heavy Armor','feet','true','none','1130','blood_steel','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5781','Tallum Boots - Light Armor','feet','true','none','1130','blood_steel','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5782','Tallum Boots - Robe','feet','true','none','1130','blood_steel','a','0','-1','46','0','0','1160000','92','true','true','true','true','0','0'),
- ('5783','Boots of Nightmare - Heavy Armor','feet','true','none','1110','leather','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5784','Boots of Nightmare - Light Armor','feet','true','none','1110','leather','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5785','Boots of Nightmare - Robe','feet','true','none','1110','leather','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5786','Majestic Boots - Heavy Armor','feet','true','none','1110','blood_steel','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5787','Majestic Boots - Light Armor','feet','true','none','1110','blood_steel','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5788','Majestic Boots - Robe','feet','true','none','1110','blood_steel','a','0','-1','49','0','0','1760000','140','true','true','true','true','0','0'),
- ('5808','Party Mask','face','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','0','0'),
- ('6323','Sealed Phoenix Necklace','neck','true','none','150','silver','a','0','-1','0','76','0','1740000','139','true','true','true','true','0','0'),
- ('6324','Sealed Phoenix Earring','rear,lear','true','none','150','silver','a','0','-1','0','57','0','1310000','104','true','true','true','true','0','0'),
- ('6325','Sealed Phoenix Ring','rfinger,lfinger','true','none','150','gold','a','0','-1','0','38','0','871000','69','true','true','true','true','0','0'),
- ('6326','Sealed Majestic Necklace','neck','true','none','150','silver','a','0','-1','0','80','0','2600000','208','true','true','true','true','0','0'),
- ('6327','Sealed Majestic Earring','rear,lear','true','none','150','silver','a','0','-1','0','60','0','1950000','156','true','true','true','true','0','0'),
- ('6328','Sealed Majestic Ring','rfinger,lfinger','true','none','150','silver','a','0','-1','0','40','0','1300000','104','true','true','true','true','0','0'),
- ('6373','Imperial Crusader Breastplate','chest','true','heavy','7620','scale_of_dragon','s','0','-1','205','0','0','14300000','715','true','true','true','true','0','0'),
- ('6374','Imperial Crusader Gaiters','legs','true','heavy','3260','scale_of_dragon','s','0','-1','128','0','0','8960000','448','true','true','true','true','0','0'),
- ('6375','Imperial Crusader Gauntlets','gloves','true','none','540','leather','s','0','-1','55','0','0','3580000','179','true','true','true','true','0','0'),
- ('6376','Imperial Crusader Boots','feet','true','none','1110','leather','s','0','-1','55','0','0','3580000','179','true','true','true','true','0','0'),
- ('6378','Imperial Crusader Helmet','head','true','none','550','bone','s','0','-1','83','0','0','5370000','268','true','true','true','true','0','0'),
- ('6379','Draconic Leather Armor','fullarmor','true','light','4950','leather','s','0','-1','249','0','0','17400000','870','true','true','true','true','0','0'),
- ('6380','Draconic Leather Gloves','gloves','true','none','540','leather','s','0','-1','55','0','0','3580000','179','true','true','true','true','0','0'),
- ('6381','Draconic Leather Boots','feet','true','none','1110','leather','s','0','-1','55','0','0','3580000','179','true','true','true','true','0','0'),
- ('6382','Draconic Leather Helmet','head','true','none','550','bone','s','0','-1','83','0','0','5370000','268','true','true','true','true','0','0'),
- ('6383','Major Arcana Robe','fullarmor','true','magic','2300','cloth','s','0','-1','166','0','866','17400000','870','true','true','true','true','0','0'),
- ('6384','Major Arcana Gloves','gloves','true','none','540','leather','s','0','-1','55','0','0','3580000','179','true','true','true','true','0','0'),
- ('6385','Major Arcana Boots','feet','true','none','1110','leather','s','0','-1','55','0','0','3580000','179','true','true','true','true','0','0'),
- ('6386','Major Arcana Circlet','head','true','none','550','bone','s','0','-1','83','0','0','5370000','268','true','true','true','true','0','0'),
- ('6394','Red Party Mask','face','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','0','0'),
- ('6408','Formal Wear','fullarmor','false','magic','1000','cloth','none','0','-1','0','0','0','5000000','0','true','true','true','true','0','0'),
- ('6656','Earring of Antharas','rear,lear','true','none','150','gold','s','0','-1','0','71','31','3700000','185','true','true','true','true','3558','1'),
- ('6657','Necklace of Valakas','neck','true','none','150','gold','s','0','-1','0','95','42','4940000','247','true','true','true','true','3557','1'),
- ('6658','Ring of Baium','rfinger,lfinger','true','none','150','gold','s','0','-1','0','48','21','1730000','86','true','true','true','true','3561','1'),
- ('6659','Zaken\'s Earring','rear,lear','true','none','150','gold','s','0','-1','0','71','31','2590000','129','true','true','true','true','3559','1'),
- ('6660','Ring of Queen Ant','rfinger,lfinger','true','none','150','gold','b','0','-1','0','48','21','616000','82','true','true','true','true','3562','1'),
- ('6661','Earring of Orfen','rear,lear','true','none','150','gold','a','0','-1','0','71','31','1300000','104','true','true','true','true','3560','1'),
- ('6662','Ring of Core','rfinger,lfinger','true','none','150','gold','a','0','-1','0','48','21','870000','69','true','true','true','true','3563','1'),
- ('6674','Sealed Imperial Crusader Breastplate','chest','true','heavy','7620','scale_of_dragon','s','0','-1','193','0','0','14300000','715','true','true','true','true','0','0'),
- ('6675','Sealed Imperial Crusader Gaiters','legs','true','heavy','3260','scale_of_dragon','s','0','-1','121','0','0','8960000','448','true','true','true','true','0','0'),
- ('6676','Sealed Imperial Crusader Gauntlet','gloves','true','none','540','leather','s','0','-1','55','0','0','3580000','179','true','true','true','true','0','0'),
- ('6677','Sealed Imperial Crusader Boots','feet','true','none','1110','leather','s','0','-1','55','0','0','3580000','179','true','true','true','true','0','0'),
- ('6679','Sealed Imperial Crusader Helmet','head','true','none','550','bone','s','0','-1','83','0','0','5370000','268','true','true','true','true','0','0'),
- ('6680','Sealed Draconic Leather Armor','fullarmor','true','light','4950','leather','s','0','-1','236','0','0','17400000','870','true','true','true','true','0','0'),
- ('6681','Sealed Draconic Leather Glove','gloves','true','none','540','leather','s','0','-1','55','0','0','3580000','179','true','true','true','true','0','0'),
- ('6682','Sealed Draconic Leather Boots','feet','true','none','1110','leather','s','0','-1','55','0','0','3580000','179','true','true','true','true','0','0'),
- ('6683','Sealed Draconic Leather Helmet','head','true','none','550','bone','s','0','-1','83','0','0','5370000','268','true','true','true','true','0','0'),
- ('6684','Sealed Major Arcana Robe','fullarmor','true','magic','2300','cloth','s','0','-1','157','0','866','17400000','870','true','true','true','true','0','0'),
- ('6685','Sealed Major Arcana Glove','gloves','true','none','540','leather','s','0','-1','55','0','0','3580000','179','true','true','true','true','0','0'),
- ('6686','Sealed Major Arcana Boots','feet','true','none','1110','leather','s','0','-1','55','0','0','3580000','179','true','true','true','true','0','0'),
- ('6687','Sealed Major Arcana Circlet','head','true','none','550','bone','s','0','-1','83','0','0','5370000','268','true','true','true','true','0','0'),
- ('6724','Sealed Tateossian Earring','rear,lear','true','none','150','silver','s','0','-1','0','68','0','3700000','185','true','true','true','true','0','0'),
- ('6725','Sealed Tateossian Ring','rfinger,lfinger','true','none','150','gold','s','0','-1','0','46','0','2470000','123','true','true','true','true','0','0'),
- ('6726','Sealed Tateossian Necklace','neck','true','none','150','silver','s','0','-1','0','91','0','4940000','247','true','true','true','true','0','0'),
- ('6834','Circlet of Innadril','face','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','3633','1'),
- ('6835','Circlet of Dion','face','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','3633','1'),
- ('6836','Circlet of Goddard','face','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','3633','1'),
- ('6837','Circlet of Oren','face','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','3633','1'),
- ('6838','Circlet of Gludio','face','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','3633','1'),
- ('6839','Circlet of Giran','face','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','3633','1'),
- ('6840','Circlet of Aden','face','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','3633','1'),
- ('6841','The Lord\'s Crown','face','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','3632','1'),
- ('6842','Wings of Destiny Circlet','face','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('6843','Cat Ear','hair','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','0','0'),
- ('6844','Lady\'s Hair Pin','hair','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','0','0'),
- ('6845','Pirate\'s Eye Patch','face','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','0','0'),
- ('6846','Monocle','face','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','0','0'),
- ('7059','Golden Festival Mask','face','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('7060','Tateossian Hairband','face','false','none','10','wood','none','0','-1','0','0','0','0','0','true','false','true','true','0','0'),
- ('7680','Raccoon Ears','hair','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','0','0'),
- ('7681','Outlaw\'s Eyepatch','face','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','0','0'),
- ('7682','Maiden\'s Hairpin','hair','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','0','0'),
- ('7683','Rabbit Ears','hair','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','0','0'),
- ('7694','Noblesse Tiara','face','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('7695','Forget-me-not Hairpin','hair','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','0','0'),
- ('7696','Daisy Hairpin','hair','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','0','0'),
- ('7836','Santa\'s Hat','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','false','true','true','0','0'),
- ('7837','Sayha\'s White Mask','face','false','none','10','steel','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('7839','Gran Kain\'s Black Mask','face','false','none','10','steel','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('7840','Rabbit Ears (Event)','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('7841','Racoon Ears (Event)','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('7842','Cat Ears (Event)','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('7843','Pirate\'s Eyepatch (Event)','face','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('7844','Monocle (Event)','face','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('7845','Outlaw\'s Eyepatch (Event)','face','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('7846','Lady\'s Hairpin (Event)','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('7847','Noblewoman\'s Hairpin (Event)','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('7848','Forget-me-not Hairpin (Event)','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('7849','Daisy Hairpin (Event)','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('7850','Clan Oath Helm','head','true','none','640','fine_steel','d','0','-1','37','0','0','0','0','true','true','true','true','0','0'),
- ('7851','Clan Oath Armor','fullarmor','true','heavy','9870','fine_steel','d','0','-1','158','0','0','0','0','true','true','true','true','0','0'),
- ('7852','Clan Oath Gauntlets - Heavy Armor','gloves','true','none','640','fine_steel','d','0','-1','24','0','0','0','0','true','true','true','true','0','0'),
- ('7853','Clan Oath Sabaton - Heavy Armor','feet','true','none','1280','fine_steel','d','0','-1','24','0','0','0','0','true','true','true','true','0','0'),
- ('7854','Clan Oath Brigandine','fullarmor','true','light','5400','leather','d','0','-1','119','0','0','0','0','true','true','true','true','0','0'),
- ('7855','Clan Oath Leather Gloves - Light Armor','gloves','true','none','640','leather','d','0','-1','24','0','0','0','0','true','true','true','true','0','0'),
- ('7856','Clan Oath Boots - Light Armor','feet','true','none','1280','leather','d','0','-1','24','0','0','0','0','true','true','true','true','0','0'),
- ('7857','Clan Oath Aketon','fullarmor','true','magic','2450','cloth','d','0','-1','79','0','239','0','0','true','true','true','true','0','0'),
- ('7858','Clan Oath Padded Gloves - Robe','gloves','true','none','640','cloth','d','0','-1','24','0','0','0','0','true','true','true','true','0','0'),
- ('7859','Clan Oath Sandals - Robe','feet','true','none','1280','cloth','d','0','-1','24','0','0','0','0','true','true','true','true','0','0'),
- ('7860','Apella Helm','head','true','none','570','fine_steel','a','0','-1','69','0','0','0','0','true','true','true','true','0','0'),
- ('7861','Apella Plate Armor','fullarmor','true','heavy','9780','leather','a','0','-1','278','0','0','0','0','true','true','true','true','0','0'),
- ('7862','Apella Gauntlet - Heavy Armor','gloves','true','none','580','leather','a','0','-1','46','0','0','0','0','true','true','true','true','0','0'),
- ('7863','Apella Solleret - Heavy Armor','feet','true','none','1130','blood_steel','a','0','-1','46','0','0','0','0','true','true','true','true','0','0'),
- ('7864','Apella Brigandine','fullarmor','true','light','5400','leather','a','0','-1','209','0','0','0','0','true','true','true','true','0','0'),
- ('7865','Apella Leather Gloves - Light Armor','gloves','true','none','580','leather','a','0','-1','46','0','0','0','0','true','true','true','true','0','0'),
- ('7866','Apella Boots - Light Armor','feet','true','none','1130','blood_steel','a','0','-1','46','0','0','0','0','true','true','true','true','0','0'),
- ('7867','Apella Doublet','fullarmor','true','magic','2450','leather','a','0','-1','139','0','665','0','0','true','true','true','true','0','0'),
- ('7868','Apella Silk Gloves - Robe','gloves','true','none','580','leather','a','0','-1','46','0','0','0','0','true','true','true','true','0','0'),
- ('7869','Apella Sandals - Robe','feet','true','none','1130','blood_steel','a','0','-1','46','0','0','0','0','true','true','true','true','0','0'),
- ('7870','Sealed Apella Helm','head','true','none','570','cloth','a','0','-1','69','0','0','0','0','true','true','true','true','0','0'),
- ('7871','Sealed Apella Plate Armor','fullarmor','true','heavy','9780','leather','a','0','-1','278','0','0','0','0','true','true','true','true','0','0'),
- ('7872','Sealed Apella Gauntlet','gloves','true','none','580','leather','a','0','-1','46','0','0','0','0','true','true','true','true','0','0'),
- ('7873','Sealed Apella Solleret','feet','true','none','1130','blood_steel','a','0','-1','46','0','0','0','0','true','true','true','true','0','0'),
- ('7874','Sealed Apella Brigandine','fullarmor','true','light','5400','leather','a','0','-1','209','0','0','0','0','true','true','true','true','0','0'),
- ('7875','Sealed Apella Leather Gloves','gloves','true','none','580','leather','a','0','-1','46','0','0','0','0','true','true','true','true','0','0'),
- ('7876','Sealed Apella Boots','feet','true','none','1130','blood_steel','a','0','-1','46','0','0','0','0','true','true','true','true','0','0'),
- ('7877','Sealed Apella Doublet','fullarmor','true','magic','2450','leather','a','0','-1','139','0','665','0','0','true','true','true','true','0','0'),
- ('7878','Sealed Apella Silk Gloves','gloves','true','none','580','leather','a','0','-1','46','0','0','0','0','true','true','true','true','0','0'),
- ('7879','Sealed Apella Sandals','feet','true','none','1130','blood_steel','a','0','-1','46','0','0','0','0','true','true','true','true','0','0'),
- ('8177','Raid Challenger\'s Circlet','face','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8178','Raid Adventurer\'s Circlet','face','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8179','Raid Master\'s Circlet','face','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8180','Circlet of Ice Fairy Sirra','face','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8181','Academy Circlet','face','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8182','Circlet of Rune','face','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','3633','1'),
- ('8183','Circlet of Schuttgart','face','false','none','10','wood','none','0','-1','0','0','0','500000','0','true','true','true','true','3633','1'),
- ('8184','Party Hat','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8185','Feathered Hat','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8186','Artisan\'s Goggles','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8187','Demon Horns','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8188','Little Angel Wings','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8189','Fairy Antennae','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8191','Frintezza\'s Necklace','neck','true','none','150','gold','a','0','-1','0','95','42','0','0','true','true','true','true','3604','1'),
- ('8541','Little Harness','babypet','false','pet','160','leather','none','0','-1','10','25','0','0','0','true','true','true','true','0','0'),
- ('8552','Mask of Spirits','face','false','none','10','paper','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8557','Blue Party Hat','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8558','Eva\'s Mark','face','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8559','Diadem','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8560','Teddy Bear Hat','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8561','Piggy Hat','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8562','Jester Hat','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8563','Wizard Hat','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8564','Dapper Cap','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8565','Romantic Chapeau','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8566','Iron Circlet','face','false','none','10','steel','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('8567','Valakas Slayer Circlet','face','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8568','Antharas Slayer Circlet','face','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8569','Half Face Mask','face','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8660','Demon Horns','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8661','Mask of Spirits','face','false','none','10','paper','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8662','Fairy Antennae (Event)','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('8910','Black Feather Mask (Event)','dhair','false','none','10','steel','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('8911','Black Half-Mask (Event)','face','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8912','Single Stem Flower','hair','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8913','Butterfly Hairpin','hair','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8914','Luxurious Gold Circlet','dhair','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8915','Luxurious Silver Circlet','dhair','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8916','Eye Patch','face','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8917','Goddess Circlet','dhair','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8918','Leather Cap','dhair','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8919','First Mate\'s Hat - Event Use','dhair','false','none','10','steel','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('8920','Angel Halo','dhair','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8921','Demon Circlet','dhair','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8922','Pirate Hat','dhair','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8923','Scar','face','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8936','Santa\'s Antlers','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8947','L2 Day: Rabbit Ears','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8948','L2 Day: Little Angel Wings','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8949','L2 Day: Fairy Antennae','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8950','L2 Day: Feathered Hat','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('8951','L2 Day: Artisan\'s Goggles','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('9030','Shadow Item: Bronze Breastplate','chest','false','heavy','2973','bronze','none','0','600','68','0','0','0','0','false','false','true','false','0','0'),
- ('9031','Shadow Item: Bronze Gaiters','legs','false','heavy','1320','bronze','none','0','600','43','0','0','0','0','false','false','true','false','0','0'),
- ('9032','Shadow Item: Hard Leather Shirt','chest','false','light','1573','leather','none','0','600','53','0','0','0','0','false','false','true','false','0','0'),
- ('9033','Shadow Item: Hard Leather Gaiters','legs','false','light','537','leather','none','0','600','33','0','0','0','0','false','false','true','false','0','0'),
- ('9034','Shadow Item: Tunic of Magic','chest','false','magic','693','cloth','none','0','600','34','0','86','0','0','false','false','true','false','0','0'),
- ('9035','Shadow Item: Stockings of Magic','legs','false','magic','343','cloth','none','0','600','21','0','54','0','0','false','false','true','false','0','0'),
- ('9037','Shadow Item: Hard Leather Helmet','head','false','none','213','leather','none','0','600','26','0','0','0','0','false','false','true','false','0','0'),
- ('9038','Shadow Item: Boots','feet','false','none','437','cloth','none','0','600','17','0','0','0','0','false','false','true','false','0','0'),
- ('9039','Shadow Item: Bracer','gloves','false','none','217','leather','none','0','600','17','0','0','0','0','false','false','true','false','0','0'),
- ('9040','Shadow Item: Mithril Breastplate','chest','false','heavy','2890','mithril','d','0','600','95','0','0','0','0','false','false','true','false','0','0'),
- ('9041','Shadow Item: Mithril Gaiters','legs','false','heavy','1277','mithril','d','0','600','61','0','0','0','0','false','false','true','false','0','0'),
- ('9042','Shadow Item: Gauntlet','gloves','false','none','213','cloth','d','0','600','24','0','0','0','0','false','false','true','false','0','0'),
- ('9043','Shadow Item: Iron Boots','feet','false','none','427','fine_steel','d','0','600','24','0','0','0','0','false','false','true','false','0','0'),
- ('9045','Shadow Item: Reinforced Leather Shirt','chest','false','light','1523','leather','d','0','600','73','0','0','0','0','false','false','true','false','0','0'),
- ('9046','Shadow Item: Reinforced Leather Gaiters','legs','false','light','523','leather','d','0','600','46','0','0','0','0','false','false','true','false','0','0'),
- ('9047','Shadow Item: Reinforced Leather Gloves','gloves','false','none','213','leather','d','0','600','24','0','0','0','0','false','false','true','false','0','0'),
- ('9048','Shadow Item: Reinforced Leather Boots','feet','false','none','427','leather','d','0','600','24','0','0','0','0','false','false','true','false','0','0'),
- ('9049','Shadow Item: Tunic of Knowledge','chest','false','magic','673','cloth','d','0','600','49','0','147','0','0','false','false','true','false','0','0'),
- ('9050','Shadow Item: Stockings of Knowledge','legs','false','magic','333','cloth','d','0','600','30','0','92','0','0','false','false','true','false','0','0'),
- ('9051','Shadow Item: Gloves of Knowledge','gloves','false','none','213','leather','d','0','600','24','0','0','0','0','false','false','true','false','0','0'),
- ('9052','Shadow Item: Boots of Knowledge','feet','false','none','423','leather','d','0','600','24','0','0','0','0','false','false','true','false','0','0'),
- ('9053','Shadow Item: Helmet','head','false','none','213','fine_steel','d','0','600','37','0','0','0','0','false','false','true','false','0','0'),
- ('9054','Shadow Item: Composite Armor','fullarmor','false','heavy','3660','fine_steel','c','0','600','224','0','0','0','0','false','false','true','false','0','0'),
- ('9055','Shadow Item: Composite Boots','feet','false','none','407','fine_steel','c','0','600','36','0','0','0','0','false','false','true','false','0','0'),
- ('9057','Shadow Item: Composite Helmet','head','false','none','203','fine_steel','c','0','600','54','0','0','0','0','false','false','true','false','0','0'),
- ('9058','Shadow Item: Theca Leather Armor','chest','false','light','1457','leather','c','0','600','106','0','0','0','0','false','false','true','false','0','0'),
- ('9059','Shadow Item: Theca Leather Gaiters','legs','false','light','510','leather','c','0','600','66','0','0','0','0','false','false','true','false','0','0'),
- ('9060','Shadow Item: Theca Leather Boots','feet','false','none','403','leather','c','0','600','37','0','0','0','0','false','false','true','false','0','0'),
- ('9061','Shadow Item: Theca Leather Gloves','gloves','false','none','200','leather','c','0','600','37','0','0','0','0','false','false','true','false','0','0'),
- ('9062','Shadow Item: Demon\'s Tunic','chest','false','magic','663','cloth','c','0','600','69','0','284','0','0','false','false','true','false','0','0'),
- ('9063','Shadow Item: Demon\'s Stockings','legs','false','magic','327','cloth','c','0','600','43','0','177','0','0','false','false','true','false','0','0'),
- ('9064','Shadow Item: Demon\'s Boots','feet','false','none','407','leather','c','0','600','36','0','0','0','0','false','false','true','false','0','0'),
- ('9065','Shadow Item: Demon\'s Gloves','gloves','false','none','203','leather','c','0','600','36','0','0','0','0','false','false','true','false','0','0'),
- ('9066','Shadow Item: Shining Circlet','head','false','none','200','steel','c','0','600','54','0','0','0','0','false','false','true','false','0','0'),
- ('9067','Shadow Item: Zubei\'s Breastplate','chest','false','heavy','2657','mithril','b','0','600','157','0','0','0','0','false','false','true','false','0','0'),
- ('9068','Shadow Item: Zubei\'s Gaiters','legs','false','heavy','1190','mithril','b','0','600','98','0','0','0','0','false','false','true','false','0','0'),
- ('9069','Shadow Item: Zubei\'s Helmet','head','false','none','197','mithril','b','0','600','62','0','0','0','0','false','false','true','false','0','0'),
- ('9071','Shadow Item: Zubei\'s Gauntlet','gloves','false','none','197','mithril','b','0','600','41','0','0','0','0','false','false','true','false','0','0'),
- ('9072','Shadow Item: Zubei\'s Boots','feet','false','none','393','mithril','b','0','600','41','0','0','0','0','false','false','true','false','0','0'),
- ('9073','Shadow Item: Zubei\'s Leather Shirt','chest','false','light','1443','leather','b','0','600','117','0','0','0','0','false','false','true','false','0','0'),
- ('9074','Shadow Item: Zubei\'s Leather Gaiters','legs','false','light','493','leather','b','0','600','73','0','0','0','0','false','false','true','false','0','0'),
- ('9075','Shadow Item: Zubei\'s Gauntlet','gloves','false','none','197','mithril','b','0','600','41','0','0','0','0','false','false','true','false','0','0'),
- ('9076','Shadow Item: Zubei\'s Boots','feet','false','none','393','mithril','b','0','600','41','0','0','0','0','false','false','true','false','0','0'),
- ('9077','Shadow Item: Tunic of Zubei','chest','false','magic','653','leather','b','0','600','78','0','345','0','0','false','false','true','false','0','0'),
- ('9078','Shadow Item: Stockings of Zubei','legs','false','magic','313','leather','b','0','600','49','0','216','0','0','false','false','true','false','0','0'),
- ('9079','Shadow Item: Zubei\'s Gauntlet','gloves','false','none','197','mithril','b','0','600','41','0','0','0','0','false','false','true','false','0','0'),
- ('9080','Shadow Item: Zubei\'s Boots','feet','false','none','393','mithril','b','0','600','41','0','0','0','0','false','false','true','false','0','0'),
- ('9081','Shadow Item: Dark Crystal Breastplate','chest','false','heavy','2567','crystal','a','0','600','171','0','0','0','0','false','false','true','false','0','0'),
- ('9082','Shadow Item: Dark Crystal Gaiters','legs','false','heavy','1107','crystal','a','0','600','107','0','0','0','0','false','false','true','false','0','0'),
- ('9083','Shadow Item: Dark Crystal Helmet','head','false','none','190','crystal','a','0','600','69','0','0','0','0','false','false','true','false','0','0'),
- ('9085','Shadow Item: Dark Crystal Gloves','gloves','false','none','193','leather','a','0','600','46','0','0','0','0','false','false','true','false','0','0'),
- ('9086','Shadow Item: Dark Crystal Boots','feet','false','none','370','crystal','a','0','600','46','0','0','0','0','false','false','true','false','0','0'),
- ('9087','Shadow Item: Dark Crystal Leather Armor','chest','false','light','1433','leather','a','0','600','128','0','0','0','0','false','false','true','false','0','0'),
- ('9088','Shadow Item: Dark Crystal Leggings','legs','false','light','493','leather','a','0','600','80','0','0','0','0','false','false','true','false','0','0'),
- ('9089','Shadow Item: Dark Crystal Gloves','gloves','false','none','193','leather','a','0','600','46','0','0','0','0','false','false','true','false','0','0'),
- ('9090','Shadow Item: Dark Crystal Boots','feet','false','none','370','crystal','a','0','600','46','0','0','0','0','false','false','true','false','0','0'),
- ('9091','Shadow Item: Dark Crystal Robe','fullarmor','false','magic','817','leather','a','0','600','139','0','665','0','0','false','false','true','false','0','0'),
- ('9092','Shadow Item: Dark Crystal Gloves','gloves','false','none','193','leather','a','0','600','46','0','0','0','0','false','false','true','false','0','0'),
- ('9093','Shadow Item: Dark Crystal Boots','feet','false','none','370','crystal','a','0','600','46','0','0','0','0','false','false','true','false','0','0'),
- ('9094','Shadow Item: Majestic Plate Armor','fullarmor','false','heavy','3067','leather','a','0','600','293','0','0','0','0','false','false','true','false','0','0'),
- ('9095','Shadow Item: Magestic Circlet','head','false','none','183','leather','a','0','600','73','0','0','0','0','false','false','true','false','0','0'),
- ('9096','Shadow Item: Magestic Gauntlet','gloves','false','none','180','leather','a','0','600','49','0','0','0','0','false','false','true','false','0','0'),
- ('9097','Shadow Item: Magestic Boots','feet','false','none','370','blood_steel','a','0','600','49','0','0','0','0','false','false','true','false','0','0'),
- ('9098','Shadow Item: Majestic Leather Armor','fullarmor','false','light','1783','leather','a','0','600','220','0','0','0','0','false','false','true','false','0','0'),
- ('9099','Shadow Item: Magestic Gauntlet','gloves','false','none','180','leather','a','0','600','49','0','0','0','0','false','false','true','false','0','0'),
- ('9100','Shadow Item: Magestic Boots','feet','false','none','370','blood_steel','a','0','600','49','0','0','0','0','false','false','true','false','0','0'),
- ('9101','Shadow Item: Magestic Robe','fullarmor','false','magic','777','leather','a','0','600','147','0','718','0','0','false','false','true','false','0','0'),
- ('9102','Shadow Item: Magestic Gauntlet','gloves','false','none','180','leather','a','0','600','49','0','0','0','0','false','false','true','false','0','0'),
- ('9103','Shadow Item: Magestic Boots','feet','false','none','370','blood_steel','a','0','600','49','0','0','0','0','false','false','true','false','0','0'),
- ('9128','Shadow Item: Mithril Gauntlet','gloves','false','none','200','mithril','c','0','600','36','0','0','0','0','false','false','true','false','0','0'),
- ('9138','Santa\'s Hat','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('9145','Little Angel Wings (Event)','hair','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0'),
- ('9158','Golden Circlet of Redemption','dhair','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('9159','Silver Circlet of Salvation','dhair','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('9160','Pig Wrangler\'s Cap','dhair','false','none','10','steel','none','0','-1','0','0','0','0','0','true','true','true','true','0','0'),
- ('9177','Teddy Bear Hat - Blessed Resurrection Effect','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9178','Piggy Hat - Blessed Resurrection Effect','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9179','Jester Hat - Blessed Resurrection Effect','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9180','Wizard Hat - Blessed Resurrection Effect','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9181','Dapper Cap - Blessed Resurrection Effect','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9182','Romantic Chapeau - Blessed Resurrection Effect','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9183','Iron Circlet - Blessed Resurrection Effect','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9184','Teddy Bear Hat - Blessed Escape Effect','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9185','Piggy Hat - Blessed Escape Effect','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9186','Jester Hat - Blessed Escape Effect','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9187','Wizard Hat - Blessed Escape Effect','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9188','Dapper Cap - Blessed Escape Effect','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9189','Romantic Chapeau - Blessed Escape Effect','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9190','Iron Circlet - Blessed Escape Effect','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9191','Teddy Bear Hat - Big Head','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9192','Piggy Hat - Big Head','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9193','Jester Hat - Big Head','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9194','Wizard Hat - Big Head','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9195','Dapper Hat - Big Head','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9196','Romantic Chapeau - Big Head','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9197','Iron Circlet - Big Head','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9198','Teddy Bear Hat - Firework','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9199','Piggy Hat - Firework','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9200','Jester Hat - Firework','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9201','Wizard Hat - Firework','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9202','Dapper Hat - Firework','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9203','Romantic Chapeau - Firework','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9204','Iron Circlet - Firework','dhair','false','none','10','wood','none','0','300','0','0','0','0','0','false','false','true','false','0','0'),
- ('9208','Phantom Mask (Event)','dhair','false','none','10','wood','none','0','-1','0','0','0','0','0','false','false','true','false','0','0');
\ No newline at end of file
+ ('21','Shirt','CHEST',FALSE,'LIGHT','4830','NONE','-1','147','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('22','Leather Shirt','CHEST',FALSE,'LIGHT','4830','NONE','-1','2430','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('23','Wooden Breastplate','CHEST',FALSE,'LIGHT','4820','NONE','-1','7960','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('24','Bone Breastplate','CHEST',FALSE,'LIGHT','4770','NONE','-1','20300','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('25','Piece Bone Breastplate','CHEST',FALSE,'HEAVY','8970','NONE','-1','31800','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('26','Bronze Breastplate','CHEST',FALSE,'HEAVY','8920','NONE','-1','49200','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('27','Hard Leather Shirt','CHEST',FALSE,'LIGHT','4720','NONE','-1','36900','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('28','Pants','LEGS',FALSE,'LIGHT','1740','NONE','-1','92','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('29','Leather Pants','LEGS',FALSE,'LIGHT','1730','NONE','-1','1520','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('30','Hard Leather Pants','LEGS',FALSE,'LIGHT','1700','NONE','-1','4970','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('31','Bone Gaiters','LEGS',FALSE,'LIGHT','1680','NONE','-1','12700','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('32','Piece Bone Gaiters','LEGS',FALSE,'HEAVY','4020','NONE','-1','19900','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('33','Hard Leather Gaiters','LEGS',FALSE,'LIGHT','1610','NONE','-1','23000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('34','Bronze Gaiters','LEGS',FALSE,'HEAVY','3960','NONE','-1','30700','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('35','Cloth Shoes','FEET',FALSE,'NONE','1320','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('36','Leather Sandals','FEET',FALSE,'NONE','1320','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('37','Leather Shoes','FEET',FALSE,'NONE','1320','NONE','-1','2650','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('38','Low Boots','FEET',FALSE,'NONE','1320','NONE','-1','6770','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('39','Boots','FEET',FALSE,'NONE','1310','NONE','-1','12300','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('40','Leather Boots','FEET',TRUE,'NONE','1300','D','-1','20900','38',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('41','Cloth Cap','HEAD',FALSE,'NONE','660','NONE','-1','55','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('42','Leather Cap','HEAD',FALSE,'NONE','660','NONE','-1','911','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('43','Wooden Helmet','HEAD',FALSE,'NONE','660','NONE','-1','3980','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('44','Leather Helmet','HEAD',FALSE,'NONE','650','NONE','-1','10200','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('45','Bone Helmet','HEAD',TRUE,'NONE','640','D','-1','31300','56',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('46','Bronze Helmet','HEAD',TRUE,'NONE','630','D','-1','50000','90',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('47','Helmet','HEAD',TRUE,'NONE','640','D','-1','76200','138',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('48','Short Gloves','GLOVES',FALSE,'NONE','660','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('49','Gloves','GLOVES',FALSE,'NONE','660','NONE','-1','2650','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('50','Leather Gloves','GLOVES',FALSE,'NONE','650','NONE','-1','6770','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('51','Bracer','GLOVES',FALSE,'NONE','650','NONE','-1','12300','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('52','Hemp Cloak','UNDERWEAR',FALSE,'NONE','260','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('53','Cotton Cloak','UNDERWEAR',FALSE,'NONE','250','NONE','-1','607','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('54','Silk Cloak','UNDERWEAR',FALSE,'NONE','250','NONE','-1','2650','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('55','Cotton Undergarment','UNDERWEAR',FALSE,'NONE','170','NONE','-1','18','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('56','Wool Undergarment','UNDERWEAR',FALSE,'NONE','170','NONE','-1','304','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('58','Mithril Breastplate','CHEST',TRUE,'HEAVY','8670','D','-1','183000','332',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('59','Mithril Gaiters','LEGS',TRUE,'HEAVY','3830','D','-1','127000','230',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('60','Composite Armor','FULL_ARMOR',TRUE,'HEAVY','10980','C','-1','1440000','576',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('61','Mithril Gloves','GLOVES',TRUE,'NONE','630','D','-1','97800','177',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('62','Mithril Boots','FEET',TRUE,'NONE','1230','C','-1','126000','50',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('63','Gauntlets','GLOVES',TRUE,'NONE','640','D','-1','50800','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('64','Composite Boots','FEET',TRUE,'NONE','1220','C','-1','245000','98',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('112','Apprentice\'s Earring','EAR',FALSE,'NONE','150','NONE','-1','49','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('113','Mystic\'s Earring','EAR',FALSE,'NONE','150','NONE','-1','811','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('114','Earring of Strength','EAR',FALSE,'NONE','150','NONE','-1','3510','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('115','Earring of Wisdom','EAR',FALSE,'NONE','150','NONE','-1','3510','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('116','Magic Ring','FINGER',FALSE,'NONE','150','NONE','-1','33','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('117','Ring of Mana','FINGER',TRUE,'NONE','150','B','-1','404000','53',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('118','Necklace of Magic','NECK',FALSE,'NONE','150','NONE','-1','66','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('119','Necklace of Binding','NECK',TRUE,'NONE','150','C','-1','565000','226',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('347','Ring Mail Breastplate','CHEST',TRUE,'HEAVY','8820','D','-1','83500','151',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('348','Scale Mail','CHEST',TRUE,'HEAVY','8720','D','-1','133000','241',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('349','Compound Scale Mail','CHEST',TRUE,'HEAVY','8620','D','-1','183000','332',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('350','Dwarven Scale Mail','CHEST',TRUE,'HEAVY','8540','D','-1','183000','332',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('351','Blast Plate','CHEST',TRUE,'HEAVY','8420','D','-1','203000','369',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('352','Brigandine Tunic','CHEST',TRUE,'HEAVY','8320','D','-1','299000','543',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('353','Half Plate Armor','CHEST',TRUE,'HEAVY','8220','D','-1','391000','710',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('354','Chain Mail Shirt','CHEST',TRUE,'HEAVY','8120','C','-1','505000','202',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('355','Dwarven Chain Mail Shirt','CHEST',TRUE,'HEAVY','8070','C','-1','644000','257',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('356','Full Plate Armor','FULL_ARMOR',TRUE,'HEAVY','10480','C','-1','2090000','836',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('357','Zubei\'s Breastplate','CHEST',TRUE,'HEAVY','7970','B','-1','2080000','277',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('358','Blue Wolf Breastplate','CHEST',TRUE,'HEAVY','7820','B','-1','3220000','429',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('359','Shining Dragon Armor','FULL_ARMOR',TRUE,'HEAVY','6400','B','-1','6770000','902',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('360','Armor of Victory','CHEST',TRUE,'HEAVY','3360','B','-1','3220000','429',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('361','Breastplate of Valor','CHEST',TRUE,'HEAVY','3360','B','-1','4630000','617',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('362','Glorious Armor','FULL_ARMOR',TRUE,'HEAVY','6720','B','-1','4710000','628',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('363','Red Flame Armor','FULL_ARMOR',TRUE,'HEAVY','6400','B','-1','6770000','902',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('364','Elven Crystal Breastplate','CHEST',TRUE,'HEAVY','2400','B','-1','3220000','429',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('365','Dark Crystal Breastplate','CHEST',TRUE,'HEAVY','7700','A','-1','4630000','370',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('366','Implosion Armor','FULL_ARMOR',TRUE,'HEAVY','6080','B','-1','4710000','628',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('367','Dark Dragon Armor','FULL_ARMOR',TRUE,'HEAVY','5760','B','-1','6770000','902',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('368','Elven Vagian Armor','FULL_ARMOR',TRUE,'HEAVY','2400','B','-1','4710000','628',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('369','Dark Vagian Armor','FULL_ARMOR',TRUE,'HEAVY','2400','B','-1','6770000','902',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('370','Complete Set of Plate Armor','FULL_ARMOR',TRUE,'HEAVY','6400','B','-1','4710000','628',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('371','Hell Plate','FULL_ARMOR',TRUE,'HEAVY','6400','B','-1','6770000','902',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('372','Art of Plate','FULL_ARMOR',TRUE,'HEAVY','6720','B','-1','4710000','628',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('373','Masterpiece Armor','FULL_ARMOR',TRUE,'HEAVY','5600','B','-1','6770000','902',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('374','Armor of Nightmare','FULL_ARMOR',TRUE,'HEAVY','9580','A','-1','10300000','824',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('375','Dragon Scale Mail','CHEST',TRUE,'HEAVY','7620','S','-1','10500000','525',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('376','Iron Plate Gaiters','LEGS',TRUE,'HEAVY','3820','D','-1','52200','94',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('377','Scale Gaiters','LEGS',TRUE,'HEAVY','3860','D','-1','83300','151',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('378','Compound Scale Gaiters','LEGS',TRUE,'HEAVY','3770','D','-1','127000','230',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('379','Dwarven Scale Gaiters','LEGS',TRUE,'HEAVY','3840','D','-1','127000','230',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('380','Plate Gaiters','LEGS',TRUE,'HEAVY','3770','D','-1','244000','443',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('381','Chain Gaiters','LEGS',TRUE,'HEAVY','3680','C','-1','316000','126',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('382','Dwarven Chain Gaiters','LEGS',TRUE,'HEAVY','3620','C','-1','403000','161',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('383','Zubei\'s Gaiters','LEGS',TRUE,'HEAVY','3570','B','-1','1300000','173',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('384','Wolf Gaiters','LEGS',TRUE,'HEAVY','2560','B','-1','2010000','268',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('385','Gaiters of Victory','LEGS',TRUE,'HEAVY','2240','B','-1','2010000','268',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('386','Gaiters of Valor','LEGS',TRUE,'HEAVY','2240','B','-1','2890000','385',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('387','Elven Crystal Gaiters','LEGS',TRUE,'HEAVY','2240','B','-1','2010000','268',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('388','Dark Crystal Gaiters','LEGS',TRUE,'HEAVY','3320','A','-1','2890000','231',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('389','Dragon Scale Gaiters','LEGS',TRUE,'HEAVY','3260','S','-1','5980000','299',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('390','Cotton Shirt','CHEST',FALSE,'LIGHT','4770','NONE','-1','20300','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('391','Puma Skin Shirt','CHEST',TRUE,'LIGHT','4700','D','-1','62600','113',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('392','Lion Skin Shirt','CHEST',TRUE,'LIGHT','4580','D','-1','99900','181',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('393','Mithril Banded Mail','CHEST',TRUE,'LIGHT','4570','D','-1','152000','276',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('394','Reinforced Leather Shirt','CHEST',TRUE,'LIGHT','4570','D','-1','152000','276',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('395','Manticore Skin Shirt','CHEST',TRUE,'LIGHT','4520','D','-1','224000','407',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('396','Salamander Skin Mail','FULL_ARMOR',TRUE,'LIGHT','6100','D','-1','429000','780',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('397','Mithril Shirt','CHEST',TRUE,'LIGHT','4470','C','-1','379000','151',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('398','Plated Leather','CHEST',TRUE,'LIGHT','4450','C','-1','446000','178',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('399','Rind Leather Armor','CHEST',TRUE,'LIGHT','4420','C','-1','483000','193',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('400','Theca Leather Armor','CHEST',TRUE,'LIGHT','4370','C','-1','825000','330',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('401','Drake Leather Armor','FULL_ARMOR',TRUE,'LIGHT','5800','C','-1','1570000','628',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('402','Chain Mail of Silence','FULL_ARMOR',TRUE,'LIGHT','3200','B','-1','3530000','470',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('403','Gust Chain Mail','FULL_ARMOR',TRUE,'LIGHT','2720','B','-1','5080000','677',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('404','Prairie Leather Armor','CHEST',TRUE,'LIGHT','8000','B','-1','2410000','321',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('405','Leather Armor of The Underworld','CHEST',TRUE,'LIGHT','8000','B','-1','3470000','462',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('406','Leather Suit of Concentration','FULL_ARMOR',TRUE,'LIGHT','2400','B','-1','3530000','470',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('407','Ace\'s Leather Armor','FULL_ARMOR',TRUE,'LIGHT','2400','B','-1','5080000','677',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('408','Guardian\'s Leather Armor','CHEST',TRUE,'LIGHT','8000','B','-1','2410000','321',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('409','Marksman\'s Leather Armor','CHEST',TRUE,'LIGHT','4300','B','-1','3470000','462',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('410','Unicorn Leather Armor','FULL_ARMOR',TRUE,'LIGHT','1280','A','-1','7730000','618',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('411','Dragon Leather Armor','FULL_ARMOR',TRUE,'LIGHT','4950','S','-1','10500000','525',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('412','Cotton Pants','LEGS',FALSE,'LIGHT','1630','NONE','-1','12700','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('413','Puma Skin Gaiters','LEGS',TRUE,'LIGHT','1600','D','-1','39100','71',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('414','Lion Skin Gaiters','LEGS',TRUE,'LIGHT','1570','D','-1','62500','113',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('415','Mithril Banded Gaiters','LEGS',TRUE,'LIGHT','1580','D','-1','95200','173',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('416','Reinforced Leather Gaiters','LEGS',TRUE,'LIGHT','1570','D','-1','95200','173',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('417','Manticore Skin Gaiters','LEGS',TRUE,'LIGHT','1550','D','-1','140000','254',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('418','Plated Leather Gaiters','LEGS',TRUE,'LIGHT','1560','C','-1','279000','111',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('419','Rind Leather Gaiters','LEGS',TRUE,'LIGHT','1550','C','-1','302000','120',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('420','Theca Leather Gaiters','LEGS',TRUE,'LIGHT','1530','C','-1','516000','206',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('421','Prairie Leather Gaiters','LEGS',TRUE,'LIGHT','4800','B','-1','1510000','201',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('422','Gaiters of The Underworld','LEGS',TRUE,'LIGHT','4800','B','-1','2170000','289',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('423','Guardian\'s Leather Gaiters','LEGS',TRUE,'LIGHT','4800','B','-1','1510000','201',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('424','Marksman\'s Leather Gaiters','LEGS',TRUE,'LIGHT','1490','B','-1','2170000','289',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('425','Apprentice\'s Tunic','CHEST',FALSE,'MAGIC','2150','NONE','-1','26','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('426','Tunic','CHEST',FALSE,'MAGIC','2150','NONE','-1','147','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('427','Cotton Robe','FULL_ARMOR',FALSE,'MAGIC','2750','NONE','-1','3550','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('428','Feriotic Tunic','CHEST',FALSE,'MAGIC','2140','NONE','-1','2430','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('429','Leather Tunic','CHEST',FALSE,'MAGIC','2110','NONE','-1','7960','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('430','Robe of Devotion','FULL_ARMOR',FALSE,'MAGIC','2650','NONE','-1','29700','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('431','Robe of Magic','FULL_ARMOR',FALSE,'MAGIC','2600','NONE','-1','53900','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('432','Cursed Tunic','CHEST',TRUE,'MAGIC','2090','D','-1','62600','113',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('433','Elven Tunic','CHEST',TRUE,'MAGIC','2080','D','-1','99900','181',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('434','White Tunic','CHEST',TRUE,'MAGIC','2040','D','-1','99900','181',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('435','Mystic\'s Tunic','CHEST',TRUE,'MAGIC','2030','D','-1','99900','181',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('436','Tunic of Knowledge','CHEST',TRUE,'MAGIC','2020','D','-1','152000','276',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('437','Mithril Tunic','CHEST',TRUE,'MAGIC','2010','D','-1','224000','407',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('438','Sage\'s Rag','FULL_ARMOR',TRUE,'MAGIC','2580','D','-1','429000','780',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('439','Karmian Tunic','CHEST',TRUE,'MAGIC','1980','C','-1','379000','151',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('440','Robe of Seal','FULL_ARMOR',TRUE,'MAGIC','2500','C','-1','707000','282',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('441','Demon\'s Tunic','CHEST',TRUE,'MAGIC','1990','C','-1','736000','294',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('442','Divine Tunic','CHEST',TRUE,'MAGIC','1980','C','-1','1070000','428',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('443','Tunic of Mana','CHEST',TRUE,'MAGIC','2000','B','-1','2410000','321',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('444','Sage\'s Robe','FULL_ARMOR',TRUE,'MAGIC','1600','B','-1','5080000','677',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('445','Paradia Tunic','CHEST',TRUE,'MAGIC','1990','B','-1','2410000','321',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('446','Inferno Tunic','CHEST',TRUE,'MAGIC','1880','B','-1','3470000','462',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('447','Tunic of Solar Eclipse','CHEST',TRUE,'MAGIC','1960','B','-1','2410000','321',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('448','Robe of Black Ore','FULL_ARMOR',TRUE,'MAGIC','1600','B','-1','5080000','677',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('449','Tunic of Summoning','CHEST',TRUE,'MAGIC','1950','B','-1','2410000','321',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('450','Otherworldly Robe','FULL_ARMOR',TRUE,'MAGIC','1600','B','-1','5080000','677',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('451','Elemental Tunic','CHEST',TRUE,'MAGIC','1970','B','-1','2410000','321',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('452','Tunic of Phantom','CHEST',TRUE,'MAGIC','1890','B','-1','3470000','462',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('453','Tunic of Grace','CHEST',TRUE,'MAGIC','1930','B','-1','2410000','321',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('454','Robe of Holy Spirit','FULL_ARMOR',TRUE,'MAGIC','1600','B','-1','5080000','677',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('455','Phoenix Tunic','CHEST',TRUE,'MAGIC','1950','B','-1','2410000','321',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('456','Cerberus Tunic','CHEST',TRUE,'MAGIC','1870','B','-1','3470000','462',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('457','Tunic of Aid','CHEST',TRUE,'MAGIC','1910','B','-1','2410000','321',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('458','Robe of Blessing','FULL_ARMOR',TRUE,'MAGIC','1600','B','-1','5080000','677',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('459','Dasparion\'s Robe','FULL_ARMOR',TRUE,'MAGIC','1200','A','-1','7730000','618',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('460','The Robe','FULL_ARMOR',TRUE,'MAGIC','2300','S','-1','10500000','525',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('461','Apprentice\'s Stockings','LEGS',FALSE,'MAGIC','1100','NONE','-1','6','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('462','Stockings','LEGS',FALSE,'MAGIC','1080','NONE','-1','92','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('463','Feriotic Stockings','LEGS',FALSE,'MAGIC','1070','NONE','-1','1520','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('464','Leather Stockings','LEGS',FALSE,'MAGIC','1020','NONE','-1','4970','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('465','Cursed Stockings','LEGS',TRUE,'MAGIC','1020','D','-1','39100','71',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('466','Elven Stockings','LEGS',TRUE,'MAGIC','1010','D','-1','62500','113',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('467','Dark Stockings','LEGS',TRUE,'MAGIC','1000','D','-1','62500','113',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('468','Mystic\'s Stockings','LEGS',TRUE,'MAGIC','990','D','-1','62500','113',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('469','Stockings of Knowledge','LEGS',TRUE,'MAGIC','1000','D','-1','95200','173',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('470','Mithril Stockings','LEGS',TRUE,'MAGIC','980','D','-1','140000','254',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('471','Karmian Stockings','LEGS',TRUE,'MAGIC','970','C','-1','237000','94',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('472','Demon\'s Stockings','LEGS',TRUE,'MAGIC','980','C','-1','460000','184',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('473','Divine Stockings','LEGS',TRUE,'MAGIC','960','C','-1','671000','268',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('474','Stockings of Mana','LEGS',TRUE,'MAGIC','2400','B','-1','1510000','201',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('475','Paradia Stockings','LEGS',TRUE,'MAGIC','1600','B','-1','1510000','201',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('476','Inferno Stockings','LEGS',TRUE,'MAGIC','1600','B','-1','2170000','289',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('477','Stockings of Solar Eclipse','LEGS',TRUE,'MAGIC','2400','B','-1','1510000','201',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('478','Stockings of Summoning','LEGS',TRUE,'MAGIC','2400','B','-1','1510000','201',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('479','Elemental Stockings','LEGS',TRUE,'MAGIC','1600','B','-1','1510000','201',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('480','Stockings of Phantom','LEGS',TRUE,'MAGIC','1600','B','-1','2170000','289',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('481','Stockings of Grace','LEGS',TRUE,'MAGIC','2400','B','-1','1510000','201',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('482','Phoenix Stockings','LEGS',TRUE,'MAGIC','2400','B','-1','1510000','201',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('483','Cerberus Stockings','LEGS',TRUE,'MAGIC','6400','B','-1','2170000','289',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('484','Stockings of Aid','LEGS',TRUE,'MAGIC','2400','B','-1','1510000','201',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('485','Tattoo of Power','UNDERWEAR',FALSE,'NONE','4200','NONE','-1','36900','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('486','Tattoo of Fire','UNDERWEAR',TRUE,'NONE','4050','D','-1','152000','276',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('487','Tattoo of Resolve','UNDERWEAR',TRUE,'NONE','4000','D','-1','152000','276',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('488','Tattoo of Flame','UNDERWEAR',TRUE,'NONE','800','B','-1','3470000','462',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('489','Tattoo of Bravery','UNDERWEAR',TRUE,'NONE','4100','C','-1','1070000','428',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('490','Tattoo of Blood','UNDERWEAR',TRUE,'NONE','3800','A','-1','3470000','277',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('491','Tattoo of Absolute','UNDERWEAR',TRUE,'NONE','800','A','-1','5280000','422',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('492','Tattoo of Soul','UNDERWEAR',TRUE,'NONE','4150','D','-1','99900','181',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('493','Tattoo of Avadon','UNDERWEAR',TRUE,'NONE','4000','B','-1','1560000','208',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('494','Tattoo of Doom','UNDERWEAR',TRUE,'NONE','4100','B','-1','2410000','321',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('495','Tattoo of Pledge','UNDERWEAR',TRUE,'NONE','4000','B','-1','1560000','208',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('496','Tattoo of Divine','UNDERWEAR',TRUE,'NONE','4100','B','-1','2410000','321',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('497','Chain Helmet','HEAD',TRUE,'NONE','620','C','-1','147000','59',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('498','Steel Plate Helmet','HEAD',TRUE,'NONE','610','C','-1','206000','82',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('499','Mithril Helmet','HEAD',TRUE,'NONE','240','C','-1','536000','214',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('500','Great Helmet','HEAD',TRUE,'NONE','610','C','-1','242000','96',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('501','Armet','HEAD',TRUE,'NONE','580','B','-1','1030000','4',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('502','Close Helmet','HEAD',TRUE,'NONE','570','A','-1','1560000','3',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('503','Zubei\'s Helmet','HEAD',TRUE,'NONE','590','B','-1','778000','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('504','Dragon Helmet','HEAD',TRUE,'NONE','550','S','-1','3590000','179',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('505','Wolf Helmet','HEAD',TRUE,'NONE','580','B','-1','1210000','161',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('506','Shining Dragon Helmet','HEAD',TRUE,'NONE','880','B','-1','1740000','232',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('507','Helmet of Victory','HEAD',TRUE,'NONE','640','B','-1','1210000','161',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('508','Helmet of Valor','HEAD',TRUE,'NONE','720','B','-1','1740000','232',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('509','Glorious Helmet','HEAD',TRUE,'NONE','800','A','-1','2040000','3',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('510','Red Flame Helmet','HEAD',TRUE,'NONE','960','A','-1','2640000','3',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('511','Elven Crystal Helmet','HEAD',TRUE,'NONE','580','B','-1','1210000','161',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('512','Dark Crystal Helmet','HEAD',TRUE,'NONE','570','A','-1','1740000','139',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('513','Implosion Helmet','HEAD',TRUE,'NONE','480','B','-1','1210000','161',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('514','Dark Dragon Helmet','HEAD',TRUE,'NONE','400','B','-1','1740000','232',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('515','Elven Vagian Helm','HEAD',TRUE,'NONE','560','A','-1','2040000','3',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('516','Dark Vagian Helm','HEAD',TRUE,'NONE','560','A','-1','2640000','3',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('517','Composite Helmet','HEAD',TRUE,'NONE','610','C','-1','368000','147',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('518','Hell Helm','HEAD',TRUE,'NONE','320','A','-1','2640000','3',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('519','Art of Helmet','HEAD',TRUE,'NONE','400','B','-1','1210000','161',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('520','Masterpiece Helm','HEAD',TRUE,'NONE','400','A','-1','2640000','3',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('521','Helmet of Silence','HEAD',TRUE,'NONE','320','B','-1','1210000','161',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('522','Gust Helmet','HEAD',TRUE,'NONE','570','B','-1','1740000','232',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('523','Prairie Helmet','HEAD',TRUE,'NONE','480','B','-1','1210000','161',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('524','Helm of The Underworld','HEAD',TRUE,'NONE','320','B','-1','1740000','232',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('525','Helmet of Concentration','HEAD',TRUE,'NONE','320','B','-1','1210000','161',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('526','Ace\'s Helmet','HEAD',TRUE,'NONE','320','B','-1','1740000','232',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('527','Guardian\'s Helmet','HEAD',TRUE,'NONE','240','B','-1','1210000','161',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('528','Marksman Helmet','HEAD',TRUE,'NONE','240','B','-1','1740000','232',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('529','Cap of Mana','HEAD',TRUE,'NONE','320','C','-1','536000','214',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('530','Sage\'s Cap','HEAD',TRUE,'NONE','320','B','-1','778000','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('531','Paradia Hood','HEAD',TRUE,'NONE','320','C','-1','536000','214',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('532','Inferno Hood','HEAD',TRUE,'NONE','320','B','-1','778000','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('533','Hood of Solar Eclipse','HEAD',TRUE,'NONE','320','C','-1','536000','214',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('534','Hood of Black Ore','HEAD',TRUE,'NONE','320','B','-1','778000','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('535','Hood of Summoning','HEAD',TRUE,'NONE','320','C','-1','536000','214',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('536','Otherworldly Hood','HEAD',TRUE,'NONE','320','B','-1','778000','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('537','Elemental Hood','HEAD',TRUE,'NONE','320','C','-1','536000','214',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('538','Hood of Phantom','HEAD',TRUE,'NONE','320','B','-1','778000','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('539','Hood of Grace','HEAD',TRUE,'NONE','320','C','-1','536000','214',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('540','Hood of Holy Spirit','HEAD',TRUE,'NONE','320','B','-1','778000','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('541','Phoenix Hood','HEAD',TRUE,'NONE','590','C','-1','536000','214',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('542','Cerberus Hood','HEAD',TRUE,'NONE','320','B','-1','778000','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('543','Hood of Aid','HEAD',TRUE,'NONE','320','C','-1','536000','214',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('544','Hood of Blessing','HEAD',TRUE,'NONE','320','B','-1','778000','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('545','Flame Helm','HEAD',TRUE,'NONE','400','C','-1','536000','214',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('546','Helm of Bravery','HEAD',TRUE,'NONE','400','B','-1','778000','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('547','Tallum Helm','HEAD',TRUE,'NONE','570','A','-1','1740000','139',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('548','Absolute Helm','HEAD',TRUE,'NONE','400','B','-1','778000','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('549','Helm of Avadon','HEAD',TRUE,'NONE','400','C','-1','536000','214',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('550','Helm of Doom','HEAD',TRUE,'NONE','400','B','-1','778000','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('551','Helmet of Pledge','HEAD',TRUE,'NONE','400','C','-1','536000','214',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('552','Divine Helm','HEAD',TRUE,'NONE','400','B','-1','778000','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('553','Iron Boots','FEET',TRUE,'NONE','1280','D','-1','50800','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('554','Zubei\'s Boots','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('555','Dragon Boots','FEET',TRUE,'NONE','1110','A','-1','1760000','140',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('556','Wolf Boots','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('557','Shining Dragon Boots','FEET',TRUE,'NONE','1150','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('558','Boots of Victory','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('559','Boots of Valor','FEET',TRUE,'NONE','1150','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('560','Glorious Boots','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('561','Red Flame Boots','FEET',TRUE,'NONE','1120','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('562','Elven Crystal Boots','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('563','Dark Crystal Boots','FEET',TRUE,'NONE','1110','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('564','Implosion Boots','FEET',TRUE,'NONE','1150','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('565','Dark Dragon Boots','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('566','Elven Vagian Boots','FEET',TRUE,'NONE','1150','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('567','Dark Vagian Boots','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('568','Composite Boots','FEET',TRUE,'NONE','200','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('569','Hell Boots','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('570','Art of Boots','FEET',TRUE,'NONE','1150','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('571','Masterpiece Boots','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('572','Boots of Silence','FEET',TRUE,'NONE','1190','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('573','Gust Boots','FEET',TRUE,'NONE','1120','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('574','Prairie Boots','FEET',TRUE,'NONE','1140','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('575','Boots of The Underworld','FEET',TRUE,'NONE','1110','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('576','Boots of Concentration','FEET',TRUE,'NONE','1170','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('577','Ace\'s Boots','FEET',TRUE,'NONE','1150','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('578','Guardian\'s Boots','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('579','Marksman Boots','FEET',TRUE,'NONE','1150','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('580','Boots of Mana','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('581','Sage\'s Boots','FEET',TRUE,'NONE','1150','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('582','Paradia Boots','FEET',TRUE,'NONE','1140','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('583','Majestic Boots','FEET',TRUE,'NONE','1110','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('584','Boots of Solar Eclipse','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('585','Boots of Black Ore','FEET',TRUE,'NONE','1200','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('586','Boots of Summoning','FEET',TRUE,'NONE','1170','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('587','Otherworldly Boots','FEET',TRUE,'NONE','1200','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('588','Elemental Boots','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('589','Boots of Phantom','FEET',TRUE,'NONE','1120','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('590','Boots of Grace','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('591','Boots of Holy Spirit','FEET',TRUE,'NONE','1200','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('592','Phoenix Boots','FEET',TRUE,'NONE','1120','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('593','Cerberus Boots','FEET',TRUE,'NONE','1120','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('594','Boots of Aid','FEET',TRUE,'NONE','1200','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('595','Boots of Blessing','FEET',TRUE,'NONE','1160','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('596','Flame Boots','FEET',TRUE,'NONE','1020','B','-1','1160000','154',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('597','Boots of Bravery','FEET',TRUE,'NONE','1050','B','-1','1160000','154',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('598','Blood Boots','FEET',TRUE,'NONE','1130','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('599','Absolute Boots','FEET',TRUE,'NONE','1130','B','-1','1160000','154',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('600','Avadon Boots','FEET',TRUE,'NONE','1170','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('601','Boots of Doom','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('602','Boots of Pledge','FEET',TRUE,'NONE','1130','B','-1','1160000','154',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('603','Divine Boots','FEET',TRUE,'NONE','1200','C','-1','358000','143',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('604','Crafted Leather Gloves','GLOVES',TRUE,'NONE','650','D','-1','20900','38',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('605','Leather Gauntlets','GLOVES',TRUE,'NONE','640','D','-1','33300','60',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('606','Rip Gauntlets','GLOVES',TRUE,'NONE','630','D','-1','74700','135',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('607','Ogre Power Gauntlets','GLOVES',TRUE,'NONE','620','D','-1','97800','177',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('608','Mithril Gauntlets','GLOVES',TRUE,'NONE','600','C','-1','245000','98',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('609','Gauntlets of Ghost','GLOVES',TRUE,'NONE','1920','C','-1','358000','143',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('610','Saint Knight\'s Gauntlets','GLOVES',TRUE,'NONE','6400','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('611','Soul Leech Gauntlets','GLOVES',TRUE,'NONE','4800','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('612','Zubei\'s Gauntlets','GLOVES',TRUE,'NONE','590','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('613','Sand Dragon Gloves','GLOVES',TRUE,'NONE','3200','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('614','Knight\'s Cloak','UNDERWEAR',TRUE,'NONE','240','D','-1','20900','38',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('615','Cobweb Cloak','UNDERWEAR',TRUE,'NONE','240','D','-1','33300','60',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('616','Cloak of Magic','UNDERWEAR',TRUE,'NONE','240','D','-1','74700','135',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('617','Mithril Cloak','UNDERWEAR',TRUE,'NONE','240','D','-1','97800','177',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('618','Cloak of Self Protection','UNDERWEAR',TRUE,'NONE','240','C','-1','161000','64',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('619','Ancient Cloak','UNDERWEAR',TRUE,'NONE','230','C','-1','245000','98',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('620','Cloak of Protection','UNDERWEAR',TRUE,'NONE','230','C','-1','358000','143',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('621','Cloak of Hell','UNDERWEAR',TRUE,'NONE','220','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('622','Holy Spirit\'s Cloak','UNDERWEAR',TRUE,'NONE','220','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('623','Divine Cloak','UNDERWEAR',TRUE,'NONE','220','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('624','Cloak of Invisibility','UNDERWEAR',FALSE,'NONE','260','NONE','-1','37','0',TRUE,FALSE,TRUE,TRUE,'0','0'),
+ ('675','Silk Yarn Undergarment Set','UNDERWEAR',FALSE,'NONE','170','NONE','-1','1330','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('676','Pure White Undergarment Set','UNDERWEAR',FALSE,'NONE','160','NONE','-1','6150','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('677','One-Piece Swimsuit','UNDERWEAR',TRUE,'NONE','150','D','-1','10400','18',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('678','Bikini Set','UNDERWEAR',TRUE,'NONE','150','D','-1','16700','30',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('679','Cursed Undergarment Set','UNDERWEAR',TRUE,'NONE','150','D','-1','25400','46',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('680','Mithril Undergarment Set','UNDERWEAR',TRUE,'NONE','140','C','-1','63100','25',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('681','Fascination Undergarment Set','UNDERWEAR',TRUE,'NONE','140','C','-1','80500','32',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('682','Demon\'s Undergarment Set','UNDERWEAR',TRUE,'NONE','140','C','-1','179000','71',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('683','Holy Undergarment Set','UNDERWEAR',TRUE,'NONE','140','B','-1','402000','53',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('684','Underwear of Rule','UNDERWEAR',TRUE,'NONE','140','A','-1','880000','70',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('685','Crystal Swimsuit Set','UNDERWEAR',TRUE,'NONE','130','S','-1','1310000','65',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('845','Cat\'s Eye Earring','EAR',FALSE,'NONE','150','NONE','-1','8890','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('846','Coral Earring','EAR',FALSE,'NONE','150','NONE','-1','16000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('847','Red Crescent Earring','EAR',TRUE,'NONE','150','D','-1','26900','48',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('848','Enchanted Earring','EAR',TRUE,'NONE','150','D','-1','42600','77',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('849','Tiger\'s Eye Earring','EAR',TRUE,'NONE','150','D','-1','64300','116',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('850','Elven Earring','EAR',TRUE,'NONE','150','D','-1','93400','169',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('851','Omen Beast\'s Eye Earring','EAR',TRUE,'NONE','150','D','-1','121000','220',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('852','Moonstone Earring','EAR',TRUE,'NONE','150','C','-1','155000','62',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('853','Earring of Protection','EAR',TRUE,'NONE','150','C','-1','196000','78',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('854','Earring of Binding','EAR',TRUE,'NONE','150','C','-1','295000','118',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('855','Nassen\'s Earring','EAR',TRUE,'NONE','150','C','-1','424000','169',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('856','Adamantite Earring','EAR',TRUE,'NONE','150','B','-1','606000','80',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('857','Blessed Earring','EAR',TRUE,'NONE','150','C','-1','424000','169',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('858','Tateossian Earring','EAR',TRUE,'NONE','150','S','-1','4440000','222',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('859','Earring of Mana','EAR',TRUE,'NONE','150','B','-1','606000','80',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('860','Sage\'s Earring','EAR',TRUE,'NONE','150','B','-1','924000','123',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('861','Paradia Earring','EAR',TRUE,'NONE','150','B','-1','924000','123',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('862','Majestic Earring','EAR',TRUE,'NONE','150','A','-1','2590000','207',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('863','Earring of Solar Eclipse','EAR',TRUE,'NONE','150','B','-1','606000','80',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('864','Earring of Black Ore','EAR',TRUE,'NONE','150','B','-1','924000','123',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('865','Earring of Summoning','EAR',TRUE,'NONE','150','B','-1','606000','80',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('866','Otherworldly Earring','EAR',TRUE,'NONE','150','B','-1','924000','123',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('867','Elemental Earring','EAR',TRUE,'NONE','150','B','-1','924000','123',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('868','Earring of Phantom','EAR',TRUE,'NONE','150','A','-1','1950000','156',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('869','Earring of Grace','EAR',TRUE,'NONE','150','B','-1','606000','80',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('870','Earring of Holy Spirit','EAR',TRUE,'NONE','150','B','-1','924000','123',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('871','Phoenix Earring','EAR',TRUE,'NONE','150','A','-1','1950000','156',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('872','Cerberus Earring','EAR',TRUE,'NONE','150','A','-1','1950000','156',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('873','Earring of Aid','EAR',TRUE,'NONE','150','B','-1','606000','80',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('874','Earring of Blessing','EAR',TRUE,'NONE','150','B','-1','606000','80',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('875','Ring of Knowledge','FINGER',FALSE,'NONE','150','NONE','-1','540','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('876','Ring of Anguish','FINGER',FALSE,'NONE','150','NONE','-1','2340','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('877','Ring of Wisdom','FINGER',FALSE,'NONE','150','NONE','-1','5920','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('878','Blue Coral Ring','FINGER',FALSE,'NONE','150','NONE','-1','10700','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('879','Enchanted Ring','FINGER',TRUE,'NONE','150','D','-1','28400','51',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('880','Black Pearl Ring','FINGER',TRUE,'NONE','150','D','-1','42800','77',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('881','Elven Ring','FINGER',TRUE,'NONE','150','D','-1','62300','113',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('882','Mithril Ring','FINGER',TRUE,'NONE','150','D','-1','80800','146',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('883','Aquastone Ring','FINGER',TRUE,'NONE','150','C','-1','103000','41',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('884','Ring of Protection','FINGER',TRUE,'NONE','150','C','-1','130000','52',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('885','Ring of Ages','FINGER',TRUE,'NONE','150','C','-1','196000','78',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('886','Ring of Binding','FINGER',TRUE,'NONE','150','C','-1','282000','112',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('887','Adamantite Ring','FINGER',TRUE,'NONE','150','B','-1','404000','53',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('888','Blessed Ring','FINGER',TRUE,'NONE','150','C','-1','282000','112',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('889','Tateossian Ring','FINGER',TRUE,'NONE','150','S','-1','2960000','148',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('890','Ring of Devotion','FINGER',TRUE,'NONE','150','D','-1','18000','32',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('891','Sage\'s Ring','FINGER',TRUE,'NONE','150','B','-1','616000','82',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('892','Paradia Ring','FINGER',TRUE,'NONE','150','B','-1','616000','82',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('893','Majestic Ring','FINGER',TRUE,'NONE','150','A','-1','1730000','138',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('894','Ring of Solar Eclipse','FINGER',TRUE,'NONE','150','B','-1','404000','53',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('895','Ring of Black Ore','FINGER',TRUE,'NONE','150','B','-1','616000','82',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('896','Ring of Summoning','FINGER',TRUE,'NONE','150','B','-1','404000','53',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('897','Otherworldly Ring','FINGER',TRUE,'NONE','150','B','-1','616000','82',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('898','Elemental Ring','FINGER',TRUE,'NONE','150','B','-1','616000','82',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('899','Ring of Phantom','FINGER',TRUE,'NONE','150','A','-1','1300000','104',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('900','Ring of Grace','FINGER',TRUE,'NONE','150','B','-1','404000','53',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('901','Ring of Holy Spirit','FINGER',TRUE,'NONE','150','B','-1','616000','82',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('902','Phoenix Ring','FINGER',TRUE,'NONE','150','A','-1','1300000','104',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('903','Cerberus Ring','FINGER',TRUE,'NONE','150','A','-1','1300000','104',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('904','Ring of Aid','FINGER',TRUE,'NONE','150','B','-1','404000','53',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('905','Ring of Blessing','FINGER',TRUE,'NONE','150','B','-1','404000','53',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('906','Necklace of Knowledge','NECK',FALSE,'NONE','150','NONE','-1','1080','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('907','Necklace of Anguish','NECK',FALSE,'NONE','150','NONE','-1','4680','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('908','Necklace of Wisdom','NECK',FALSE,'NONE','150','NONE','-1','11900','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('909','Blue Diamond Necklace','NECK',FALSE,'NONE','150','NONE','-1','21300','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('910','Necklace of Devotion','NECK',TRUE,'NONE','150','D','-1','35900','65',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('911','Enchanted Necklace','NECK',TRUE,'NONE','150','D','-1','56800','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('912','Near Forest Necklace','NECK',TRUE,'NONE','150','D','-1','85700','155',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('913','Elven Necklace','NECK',TRUE,'NONE','150','D','-1','125000','227',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('914','Necklace of Darkness','NECK',TRUE,'NONE','150','D','-1','162000','294',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('915','Aquastone Necklace','NECK',TRUE,'NONE','150','C','-1','207000','82',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('916','Necklace of Protection','NECK',TRUE,'NONE','150','C','-1','261000','104',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('917','Necklace of Mermaid','NECK',TRUE,'NONE','150','C','-1','393000','157',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('918','Adamantite Necklace','NECK',TRUE,'NONE','150','B','-1','808000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('919','Blessed Necklace','NECK',TRUE,'NONE','150','C','-1','565000','226',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('920','Tateossian Necklace','NECK',TRUE,'NONE','150','S','-1','5920000','296',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('921','Necklace of Mana','NECK',TRUE,'NONE','150','B','-1','808000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('922','Sage\'s Necklace','NECK',TRUE,'NONE','150','B','-1','1230000','164',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('923','Paradia Necklace','NECK',TRUE,'NONE','150','B','-1','1230000','164',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('924','Majestic Necklace','NECK',TRUE,'NONE','150','A','-1','3450000','276',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('925','Necklace of Solar Eclipse','NECK',TRUE,'NONE','150','B','-1','808000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('926','Necklace of Black Ore','NECK',TRUE,'NONE','150','B','-1','1230000','164',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('927','Necklace of Summoning','NECK',TRUE,'NONE','150','B','-1','808000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('928','Otherworldly Necklace','NECK',TRUE,'NONE','150','B','-1','1230000','164',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('929','Elemental Necklace','NECK',TRUE,'NONE','150','B','-1','1230000','164',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('930','Necklace of Phantom','NECK',TRUE,'NONE','150','A','-1','2600000','208',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('931','Necklace of Grace','NECK',TRUE,'NONE','150','B','-1','808000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('932','Necklace of Holy Spirit','NECK',TRUE,'NONE','150','B','-1','1230000','164',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('933','Phoenix Necklace','NECK',TRUE,'NONE','150','A','-1','2600000','208',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('934','Cerberus Necklace','NECK',TRUE,'NONE','150','A','-1','2600000','208',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('935','Necklace of Aid','NECK',TRUE,'NONE','150','B','-1','808000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('936','Necklace of Blessing','NECK',TRUE,'NONE','150','B','-1','808000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('990','Mandragora Essence','GLOVES',FALSE,'NONE','60','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('991','Royen\'s Key','GLOVES',FALSE,'NONE','60','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('992','Shilen\'s 1st Mark','GLOVES',FALSE,'NONE','60','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('993','Shilen\'s 2nd Mark','GLOVES',FALSE,'NONE','60','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('994','Eye of Abyss','GLOVES',FALSE,'NONE','60','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('995','Wanted Poster','GLOVES',FALSE,'NONE','60','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('996','Alex\'s Dagger','GLOVES',FALSE,'NONE','60','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('997','Pinter\'s Bill','GLOVES',FALSE,'NONE','60','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('998','Book of Aklantoth - Part 1','GLOVES',FALSE,'NONE','60','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('999','Book of Aklantoth - Part 2','GLOVES',FALSE,'NONE','60','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1000','Book of Aklantoth - Part 3','GLOVES',FALSE,'NONE','60','NONE','-1','37','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1100','Cotton Tunic','CHEST',FALSE,'MAGIC','2120','NONE','-1','2430','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1101','Tunic of Devotion','CHEST',FALSE,'MAGIC','2090','NONE','-1','20300','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1102','Tunic of Magic','CHEST',FALSE,'MAGIC','2080','NONE','-1','36900','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1103','Cotton Stockings','LEGS',FALSE,'MAGIC','1060','NONE','-1','1520','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1104','Stockings of Devotion','LEGS',FALSE,'MAGIC','1040','NONE','-1','12700','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1105','Stockings of Magic','LEGS',FALSE,'MAGIC','1030','NONE','-1','23000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1119','Short Leather Gloves','GLOVES',FALSE,'NONE','660','NONE','-1','607','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1120','Pa\'agrian Hand','GLOVES',TRUE,'NONE','1600','C','-1','161000','64',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1121','Apprentice\'s Shoes','FEET',FALSE,'NONE','1320','NONE','-1','7','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1122','Cotton Shoes','FEET',FALSE,'NONE','1320','NONE','-1','607','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1123','Blue Buckskin Boots','FEET',TRUE,'NONE','1300','D','-1','33300','60',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1124','Boots of Power','FEET',TRUE,'NONE','1250','D','-1','74700','135',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1125','Assault Boots','FEET',TRUE,'NONE','1240','D','-1','97800','177',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1126','Crimson Boots','FEET',TRUE,'NONE','1210','C','-1','161000','64',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1127','Forgotten Boots','FEET',TRUE,'NONE','4000','C','-1','245000','98',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1128','Adamantite Boots','FEET',TRUE,'NONE','4000','C','-1','358000','143',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1129','Crude Leather Shoes','FEET',FALSE,'NONE','1320','NONE','-1','607','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1146','Squire\'s Shirt','CHEST',FALSE,'LIGHT','3301','NONE','-1','26','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('1147','Squire\'s Pants','LEGS',FALSE,'LIGHT','1750','NONE','-1','6','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('1148','Hard Leather Helmet','HEAD',FALSE,'NONE','640','NONE','-1','18400','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1149','Shining Circlet','HEAD',TRUE,'NONE','600','C','-1','368000','147',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1308','Compound Scale Mail','CHEST',FALSE,'HEAVY','1400','NONE','-1','247000','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1309','Mithril Breastplate','CHEST',FALSE,'HEAVY','1000','NONE','-1','247000','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1310','Tunic of Magic','CHEST',FALSE,'MAGIC','150','NONE','-1','48500','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1311','Puma Skin Shirt','CHEST',FALSE,'LIGHT','300','NONE','-1','99900','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1312','White Tunic','CHEST',FALSE,'MAGIC','150','NONE','-1','138000','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1313','Compound Scale Gaiters','LEGS',FALSE,'HEAVY','1000','NONE','-1','170000','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1314','Mithril Gaiters','LEGS',FALSE,'HEAVY','600','NONE','-1','170000','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1315','Stockings of Magic','LEGS',FALSE,'MAGIC','150','NONE','-1','30300','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1316','Puma Skin Gaiters','LEGS',FALSE,'LIGHT','400','NONE','-1','55800','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1317','Dark Stockings','LEGS',FALSE,'MAGIC','150','NONE','-1','62500','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1318','Gloves','GLOVES',FALSE,'NONE','80','NONE','-1','3270','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1319','Leather Gloves','GLOVES',FALSE,'NONE','100','NONE','-1','7950','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1320','Crafted Leather Gloves','GLOVES',FALSE,'NONE','100','NONE','-1','29800','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1321','Rip Gauntlets','GLOVES',FALSE,'NONE','150','NONE','-1','97800','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1322','Bracer','GLOVES',FALSE,'NONE','80','NONE','-1','16200','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1323','Leather Shoes','FEET',FALSE,'NONE','120','NONE','-1','3270','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1324','Low Boots','FEET',FALSE,'NONE','150','NONE','-1','7950','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1325','Leather Boots','FEET',FALSE,'NONE','250','NONE','-1','29800','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1326','Iron Boots','FEET',FALSE,'NONE','300','NONE','-1','74700','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1327','Boots','FEET',FALSE,'NONE','200','NONE','-1','16200','0',FALSE,TRUE,TRUE,FALSE,'0','0'),
+ ('1506','Necklace of Courage','NECK',FALSE,'NONE','150','NONE','-1','66','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1507','Necklace of Valor','NECK',FALSE,'NONE','150','NONE','-1','4680','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1508','Ring of Raccoon','FINGER',FALSE,'NONE','150','NONE','-1','2340','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('1509','Ring of Firefly','FINGER',FALSE,'NONE','150','NONE','-1','2340','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2376','Avadon Breastplate','CHEST',TRUE,'HEAVY','7920','B','-1','2080000','277',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2377','Mithril Scale Gaiters','LEGS',TRUE,'HEAVY','3870','D','-1','187000','340',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2378','Brigandine Gaiters','LEGS',TRUE,'HEAVY','3820','D','-1','187000','340',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2379','Avadon Gaiters','LEGS',TRUE,'HEAVY','3520','B','-1','1300000','173',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2380','Blue Wolf Gaiters','LEGS',TRUE,'HEAVY','3370','B','-1','2010000','268',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2381','Doom Plate Armor','FULL_ARMOR',TRUE,'HEAVY','9980','B','-1','4710000','628',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2382','Tallum Plate Armor','FULL_ARMOR',TRUE,'HEAVY','9780','A','-1','6770000','541',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2383','Majestic Plate Armor','FULL_ARMOR',TRUE,'HEAVY','9200','A','-1','10300000','824',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2384','Zubei\'s Leather Shirt','CHEST',TRUE,'LIGHT','4330','B','-1','1560000','208',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2385','Dark Crystal Leather Armor','CHEST',TRUE,'LIGHT','4300','A','-1','3470000','277',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2386','Wooden Gaiters','LEGS',FALSE,'LIGHT','1670','NONE','-1','4970','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2387','Tempered Mithril Gaiters','LEGS',TRUE,'LIGHT','1530','C','-1','237000','94',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2388','Zubei\'s Leather Gaiters','LEGS',TRUE,'LIGHT','1480','B','-1','973000','129',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2389','Dark Crystal Leggings','LEGS',TRUE,'LIGHT','1480','A','-1','2170000','173',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2390','Avadon Leather Armor','FULL_ARMOR',TRUE,'LIGHT','5600','B','-1','2280000','304',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2391','Blue Wolf Leather Armor','FULL_ARMOR',TRUE,'LIGHT','5500','B','-1','3530000','470',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2392','Leather Armor of Doom','FULL_ARMOR',TRUE,'LIGHT','5500','B','-1','3530000','470',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2393','Tallum Leather Armor','FULL_ARMOR',TRUE,'LIGHT','5400','A','-1','5080000','406',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2394','Nightmarish Leather Armor','FULL_ARMOR',TRUE,'LIGHT','5300','A','-1','7730000','618',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2395','Majestic Leather Armor','FULL_ARMOR',TRUE,'LIGHT','5350','A','-1','7730000','618',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2396','Elven Mithril Tunic','CHEST',TRUE,'MAGIC','720','D','-1','224000','407',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2397','Tunic of Zubei','CHEST',TRUE,'MAGIC','1960','B','-1','1560000','208',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2398','Blue Wolf Tunic','CHEST',TRUE,'MAGIC','1920','B','-1','2410000','321',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2399','Tunic of Doom','CHEST',TRUE,'MAGIC','1900','B','-1','2410000','321',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2400','Tallum Tunic','CHEST',TRUE,'MAGIC','1860','A','-1','3470000','277',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2401','Elven Mithril Stockings','LEGS',TRUE,'MAGIC','2400','D','-1','140000','254',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2402','Stockings of Zubei','LEGS',TRUE,'MAGIC','940','B','-1','973000','129',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2403','Blue Wolf Stockings','LEGS',TRUE,'MAGIC','920','B','-1','1510000','201',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2404','Stockings of Doom','LEGS',TRUE,'MAGIC','910','B','-1','1510000','201',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2405','Tallum Stockings','LEGS',TRUE,'MAGIC','920','A','-1','2170000','173',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2406','Avadon Robe','FULL_ARMOR',TRUE,'MAGIC','2540','B','-1','2280000','304',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2407','Dark Crystal Robe','FULL_ARMOR',TRUE,'MAGIC','2450','A','-1','5080000','406',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2408','Nightmare Robe','FULL_ARMOR',TRUE,'MAGIC','2300','A','-1','7730000','618',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2409','Majestic Robe','FULL_ARMOR',TRUE,'MAGIC','2330','A','-1','7730000','618',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2410','Nightmarish Tattoo','UNDERWEAR',TRUE,'NONE','3600','A','-1','5280000','422',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2411','Brigandine Helmet','HEAD',TRUE,'NONE','630','D','-1','112000','203',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2412','Plate Helmet','HEAD',TRUE,'NONE','630','D','-1','147000','267',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2413','Chain Hood','HEAD',TRUE,'NONE','620','C','-1','189000','75',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2414','Full Plate Helmet','HEAD',TRUE,'NONE','600','C','-1','536000','214',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2415','Avadon Circlet','HEAD',TRUE,'NONE','590','B','-1','778000','103',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2416','Blue Wolf Helmet','HEAD',TRUE,'NONE','580','B','-1','1210000','161',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2417','Doom Helmet','HEAD',TRUE,'NONE','580','B','-1','1210000','161',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2418','Helm of Nightmare','HEAD',TRUE,'NONE','560','A','-1','2640000','211',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2419','Majestic Circlet','HEAD',TRUE,'NONE','550','A','-1','2640000','211',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2420','Dragon Headgear','HEAD',TRUE,'NONE','540','S','-1','3590000','179',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2421','The Hood','HEAD',TRUE,'NONE','540','S','-1','3590000','179',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2422','Reinforced Leather Boots','FEET',TRUE,'NONE','1280','D','-1','50800','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2423','Boots of Knowledge','FEET',TRUE,'NONE','1270','D','-1','50800','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2424','Manticore Skin Boots','FEET',TRUE,'NONE','1260','D','-1','74700','135',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2425','Brigandine Boots','FEET',TRUE,'NONE','1250','D','-1','74700','135',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2426','Elven Mithril Boots','FEET',TRUE,'NONE','1250','D','-1','74700','135',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2427','Salamander Skin Boots','FEET',TRUE,'NONE','1230','D','-1','97800','177',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2428','Plate Boots','FEET',TRUE,'NONE','1240','D','-1','97800','177',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2429','Chain Boots','FEET',TRUE,'NONE','1220','C','-1','126000','50',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2430','Karmian Boots','FEET',TRUE,'NONE','1230','C','-1','126000','50',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2431','Plated Leather Boots','FEET',TRUE,'NONE','1220','C','-1','126000','50',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2432','Dwarven Chain Boots','FEET',TRUE,'NONE','1210','C','-1','126000','50',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2433','Boots of Seal','FEET',TRUE,'NONE','1220','C','-1','126000','50',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2434','Rind Leather Boots','FEET',TRUE,'NONE','1220','C','-1','161000','64',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2435','Demon\'s Boots','FEET',TRUE,'NONE','1220','C','-1','245000','98',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2436','Theca Leather Boots','FEET',TRUE,'NONE','1210','C','-1','275000','110',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2437','Drake Leather Boots','FEET',TRUE,'NONE','1210','C','-1','358000','143',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2438','Full Plate Boots','FEET',TRUE,'NONE','1200','C','-1','358000','143',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2439','Blue Wolf Boots','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2440','Boots of Nightmare','FEET',TRUE,'NONE','1110','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2441','Dark Legion Boots','FEET',TRUE,'NONE','1120','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2442','Dasparion\'s Boots','FEET',TRUE,'NONE','1100','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2443','Dragon Leather Boots','FEET',TRUE,'NONE','1100','S','-1','2390000','119',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2444','The Boots','FEET',TRUE,'NONE','1100','S','-1','2390000','119',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2445','Dragon Scale Boots','FEET',TRUE,'NONE','1100','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2446','Reinforced Leather Gloves','GLOVES',TRUE,'NONE','640','D','-1','50800','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2447','Gloves of Knowledge','GLOVES',TRUE,'NONE','640','D','-1','50800','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2448','Manticore Skin Gloves','GLOVES',TRUE,'NONE','630','D','-1','74700','135',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2449','Brigandine Gauntlets','GLOVES',TRUE,'NONE','630','D','-1','74700','135',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2450','Elven Mithril Gloves','GLOVES',TRUE,'NONE','640','D','-1','74700','135',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2451','Sage\'s Worn Gloves','GLOVES',TRUE,'NONE','630','D','-1','97800','177',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2452','Reinforced Mithril Gloves','GLOVES',TRUE,'NONE','620','C','-1','126000','50',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2453','Chain Gloves','GLOVES',TRUE,'NONE','620','C','-1','126000','50',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2454','Karmian Gloves','GLOVES',TRUE,'NONE','620','C','-1','126000','50',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2455','Plated Leather Gloves','GLOVES',TRUE,'NONE','610','C','-1','149000','59',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2456','Dwarven Chain Gloves','GLOVES',TRUE,'NONE','600','C','-1','161000','64',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2457','Gloves of Seal','GLOVES',TRUE,'NONE','620','C','-1','161000','64',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2458','Rind Leather Gloves','GLOVES',TRUE,'NONE','600','C','-1','161000','64',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2459','Demon\'s Gloves','GLOVES',TRUE,'NONE','610','C','-1','245000','98',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2460','Theca Leather Gloves','GLOVES',TRUE,'NONE','600','C','-1','275000','110',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2461','Drake Leather Gloves','GLOVES',TRUE,'NONE','600','C','-1','358000','143',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2462','Full Plate Gauntlets','GLOVES',TRUE,'NONE','600','C','-1','358000','143',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2463','Divine Gloves','GLOVES',TRUE,'NONE','610','C','-1','358000','143',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2464','Avadon Gloves','GLOVES',TRUE,'NONE','590','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2465','Chain Gloves of Silence','GLOVES',TRUE,'NONE','590','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2466','Guardian\'s Gloves','GLOVES',TRUE,'NONE','590','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2467','Gloves of Blessing','GLOVES',TRUE,'NONE','590','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2468','Blessed Gloves','GLOVES',TRUE,'NONE','600','C','-1','358000','143',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2469','Gloves of The Underworld','GLOVES',TRUE,'NONE','580','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2470','Gloves of Phantom','GLOVES',TRUE,'NONE','560','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2471','Dark Legion Gloves','GLOVES',TRUE,'NONE','560','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2472','Dark Crystal Gloves','GLOVES',TRUE,'NONE','580','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2473','The Gloves','GLOVES',TRUE,'NONE','540','S','-1','2390000','119',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2474','Dasparion\'s Gloves','GLOVES',TRUE,'NONE','550','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2475','Doom Gloves','GLOVES',TRUE,'NONE','580','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2476','Dragon Gauntlets','GLOVES',TRUE,'NONE','540','S','-1','2610000','130',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2477','Dragon Leather Gloves','GLOVES',TRUE,'NONE','540','S','-1','2390000','119',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2478','Tallum Gloves','GLOVES',TRUE,'NONE','580','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2479','Gauntlets of Nightmare','GLOVES',TRUE,'NONE','550','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2480','Elemental Gloves','GLOVES',TRUE,'NONE','580','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2481','Gloves of Grace','GLOVES',TRUE,'NONE','580','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2482','Majestic Gauntlets','GLOVES',TRUE,'NONE','540','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2483','Gust Bracer','GLOVES',TRUE,'NONE','580','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2484','Cerberus Gloves','GLOVES',TRUE,'NONE','540','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2485','Implosion Gauntlets','GLOVES',TRUE,'NONE','580','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2486','Paradia Gloves','GLOVES',TRUE,'NONE','580','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2487','Blue Wolf Gloves','GLOVES',TRUE,'NONE','590','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2488','Phoenix Gloves','GLOVES',TRUE,'NONE','570','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2489','Gloves of Black Ore','GLOVES',TRUE,'NONE','570','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2490','Cloak of Silence','UNDERWEAR',FALSE,'NONE','250','NONE','-1','6770','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2491','Golden Yarn Cloak','UNDERWEAR',FALSE,'NONE','250','NONE','-1','12300','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2492','Shadow Cloak','UNDERWEAR',TRUE,'NONE','240','C','-1','126000','50',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('2506','Wolf\'s Leather Armor','WOLF',FALSE,'PET_ARMOR','160','NONE','-1','7000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3891','Wolf\'s Hide Armor','WOLF',FALSE,'PET_ARMOR','160','NONE','-1','18000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3892','Wolf\'s Hard Leather Mail','WOLF',FALSE,'PET_ARMOR','160','NONE','-1','32000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3893','Wolf\'s Wooden Armor','WOLF',FALSE,'PET_ARMOR','160','NONE','-1','55000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3894','Wolf\'s Ring Mail','WOLF',FALSE,'PET_ARMOR','160','NONE','-1','87000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3895','Wolf\'s Bone Armor','WOLF',FALSE,'PET_ARMOR','160','NONE','-1','130000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3896','Wolf\'s Scale Male','WOLF',FALSE,'PET_ARMOR','160','NONE','-1','200000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3897','Wof\'s Bronze Armor','WOLF',FALSE,'PET_ARMOR','160','NONE','-1','260000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3898','Wolf\'s Plate Mail','WOLF',FALSE,'PET_ARMOR','160','NONE','-1','330000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3899','Wolf\'s Steel Armor','WOLF',FALSE,'PET_ARMOR','160','NONE','-1','420000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3900','Wolf\'s Luxury Plate','WOLF',FALSE,'PET_ARMOR','160','NONE','-1','640000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3901','Wolf\'s Mithril Armor','WOLF',FALSE,'PET_ARMOR','160','NONE','-1','940000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3912','Hatchling\'s Soft Leather','HATCHLING',FALSE,'PET_ARMOR','160','NONE','-1','200000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3913','Hatchling\'s Scale Mail','HATCHLING',FALSE,'PET_ARMOR','160','NONE','-1','310000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3914','Hatchling\'s Brigandine','HATCHLING',FALSE,'PET_ARMOR','160','NONE','-1','420000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3915','Hatchling\'s Bronze Coat','HATCHLING',FALSE,'PET_ARMOR','160','NONE','-1','570000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3916','Hatchling\'s Steel Coat','HATCHLING',FALSE,'PET_ARMOR','160','NONE','-1','760000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3917','Hatchling\'s Shadowplate','HATCHLING',FALSE,'PET_ARMOR','160','NONE','-1','1100000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('3918','Hatchling\'s Mithril Coat','HATCHLING',FALSE,'PET_ARMOR','160','NONE','-1','1600000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('4224','Dream Armor','CHEST',TRUE,'HEAVY','8920','NONE','-1','49200','0',FALSE,FALSE,FALSE,FALSE,'0','0'),
+ ('4225','Dream Stockings','LEGS',TRUE,'HEAVY','3960','NONE','-1','30700','0',FALSE,FALSE,FALSE,FALSE,'0','0'),
+ ('4226','Dream Gloves','GLOVES',TRUE,'NONE','650','NONE','-1','12300','0',FALSE,FALSE,FALSE,FALSE,'0','0'),
+ ('4227','Dream Boots','FEET',TRUE,'NONE','1310','NONE','-1','12300','0',FALSE,FALSE,FALSE,FALSE,'0','0'),
+ ('4228','Ubiquitous Armor','CHEST',TRUE,'HEAVY','8920','NONE','-1','49200','0',FALSE,FALSE,FALSE,FALSE,'0','0'),
+ ('4229','Ubiquitous Stockings','LEGS',TRUE,'HEAVY','3960','NONE','-1','30700','0',FALSE,FALSE,FALSE,FALSE,'0','0'),
+ ('4230','Ubiquitous Gloves','GLOVES',TRUE,'NONE','650','NONE','-1','12300','0',FALSE,FALSE,FALSE,FALSE,'0','0'),
+ ('4231','Ubiquitous Boots','FEET',TRUE,'NONE','1310','NONE','-1','12300','0',FALSE,FALSE,FALSE,FALSE,'0','0'),
+ ('4234','Hatchling\'s Level 65 Armor','HATCHLING',FALSE,'PET_ARMOR','160','NONE','-1','5628000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('4235','Hatchling\'s Level 75 Armor','HATCHLING',FALSE,'PET_ARMOR','160','NONE','-1','19073000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('4236','Gara Item','CHEST',FALSE,'LIGHT','160','NONE','-1','19073000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5170','Mithril Panzer Coat','STRIDER',FALSE,'PET_ARMOR','160','NONE','-1','1600000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5171','Brigadine Panzer Coat','STRIDER',FALSE,'PET_ARMOR','160','NONE','-1','2300000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5172','Draconic Panzer Coat','STRIDER',FALSE,'PET_ARMOR','160','NONE','-1','3400000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5173','Blood Panzer Coat','STRIDER',FALSE,'PET_ARMOR','160','NONE','-1','4900000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5174','Ophidian Panzer Coat','STRIDER',FALSE,'PET_ARMOR','160','NONE','-1','7300000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5175','Inferno Panzer Coat','STRIDER',FALSE,'PET_ARMOR','160','NONE','-1','10000000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5182','Hatchling\'s Gorgon Coat','HATCHLING',FALSE,'PET_ARMOR','160','NONE','-1','2300000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5183','Hatchling\'s Ophidian Plate','HATCHLING',FALSE,'PET_ARMOR','160','NONE','-1','3400000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5184','Hatchling\'s Crimson Plate','HATCHLING',FALSE,'PET_ARMOR','160','NONE','-1','4900000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5185','Hatchling\'s Draconic Plate','HATCHLING',FALSE,'PET_ARMOR','160','NONE','-1','7300000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5186','Hatchling\'s Inferno Plate','HATCHLING',FALSE,'PET_ARMOR','160','NONE','-1','10000000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5216','Wolf Level 75 Armor','WOLF',FALSE,'PET_ARMOR','160','NONE','-1','938705','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5287','Sealed Dark Crystal breastplate','CHEST',TRUE,'HEAVY','7700','A','-1','4630000','370',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5288','Sealed Dark Crystal Gaiters','LEGS',TRUE,'HEAVY','3320','A','-1','2890000','231',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5289','Sealed Dark Crystal Helmet','HEAD',TRUE,'NONE','570','A','-1','1740000','139',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5290','Sealed Dark Crystal Gloves','GLOVES',TRUE,'NONE','580','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5291','Sealed Dark Crystal Boots','FEET',TRUE,'NONE','1110','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5293','Sealed Tallum Plate Armor','FULL_ARMOR',TRUE,'HEAVY','9780','A','-1','6770000','541',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5294','Sealed Tallum Helmet','HEAD',TRUE,'NONE','570','A','-1','1740000','139',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5295','Sealed Tallum Gloves','GLOVES',TRUE,'NONE','580','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5296','Sealed Tallum Boots','FEET',TRUE,'NONE','1130','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5297','Sealed Dark Crystal Leather Armor','CHEST',TRUE,'LIGHT','4300','A','-1','3470000','277',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5298','Sealed Dark Crystal Leggings','LEGS',TRUE,'LIGHT','1480','A','-1','2170000','173',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5299','Sealed Gloves of The Underworld','GLOVES',TRUE,'NONE','580','A','-1','1070000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5300','Sealed Boots of The Underworld','FEET',TRUE,'NONE','1110','A','-1','1070000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5301','Sealed Tallum Leather Armor','FULL_ARMOR',TRUE,'LIGHT','5400','A','-1','5080000','406',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5302','Sealed Gust Bracer','GLOVES',TRUE,'NONE','580','A','-1','1070000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5303','Sealed Gust Boots','FEET',TRUE,'NONE','1120','A','-1','1070000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5304','Sealed Tallum Tunic','CHEST',TRUE,'MAGIC','1860','A','-1','3470000','277',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5305','Sealed Tallum Stockings','LEGS',TRUE,'MAGIC','920','A','-1','2170000','173',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5306','Sealed Gloves of Black Ore','GLOVES',TRUE,'NONE','570','A','-1','1070000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5307','Sealed Red Flame Boots','FEET',TRUE,'NONE','1120','A','-1','1070000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5308','Sealed Dark Crystal Robe','FULL_ARMOR',TRUE,'MAGIC','2450','A','-1','5080000','406',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5309','Sealed Phoenix Gloves','GLOVES',TRUE,'NONE','570','A','-1','1070000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5310','Sealed Phoenix Boots','FEET',TRUE,'NONE','1120','A','-1','1070000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5311','Sealed Armor of Nightmare','FULL_ARMOR',TRUE,'HEAVY','9580','A','-1','10300000','824',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5312','Sealed Helm of Nightmare','HEAD',TRUE,'NONE','560','A','-1','2640000','211',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5313','Sealed Gauntlets of Nightmare','GLOVES',TRUE,'NONE','550','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5314','Sealed Boots of Nightmare','FEET',TRUE,'NONE','1110','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5316','Sealed Majestic Plate Armor','FULL_ARMOR',TRUE,'HEAVY','9200','A','-1','10300000','824',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5317','Sealed Majestic Circlet','HEAD',TRUE,'NONE','550','A','-1','2640000','211',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5318','Sealed Majestic Gauntlets','GLOVES',TRUE,'NONE','540','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5319','Sealed Majestic Boots','FEET',TRUE,'NONE','1110','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5320','Sealed Leather Armor of Nightmare','FULL_ARMOR',TRUE,'LIGHT','5300','A','-1','7730000','618',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5321','Sealed Dark Legion Gloves','GLOVES',TRUE,'NONE','560','A','-1','1630000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5322','Sealed Dark Legion Boots','FEET',TRUE,'NONE','1120','A','-1','1630000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5323','Sealed Majestic Leather Armor','FULL_ARMOR',TRUE,'LIGHT','5350','A','-1','7730000','618',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5324','Sealed Gloves of Phantom','GLOVES',TRUE,'NONE','560','A','-1','1630000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5325','Sealed Boots of Phantom','FEET',TRUE,'NONE','1120','A','-1','1630000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5326','Sealed Nightmare Robe','FULL_ARMOR',TRUE,'MAGIC','2300','A','-1','7730000','618',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5327','Sealed Cerberus Gloves','GLOVES',TRUE,'NONE','540','A','-1','1630000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5328','Sealed Cerberus Boots','FEET',TRUE,'NONE','1120','A','-1','1630000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5329','Sealed Majestic Robe','FULL_ARMOR',TRUE,'MAGIC','2330','A','-1','7730000','618',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5330','Sealed Dasparion\'s Gloves','GLOVES',TRUE,'NONE','550','A','-1','1630000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5331','Sealed Dasparion\'s Boots','FEET',TRUE,'NONE','1100','A','-1','1630000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5576','Sound Test Boots','FEET',FALSE,'NONE','50','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5590','Squeaking Shoes','FEET',FALSE,'NONE','50','NONE','-1','350000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5709','Sealed Zubei\'s Gauntlets','GLOVES',TRUE,'NONE','590','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5710','Zubei\'s Gauntlets - Heavy Armor','GLOVES',TRUE,'NONE','590','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5711','Zubei\'s Gauntlets - Light Armor','GLOVES',TRUE,'NONE','590','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5712','Zubei\'s Gauntlets - Robe','GLOVES',TRUE,'NONE','590','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5713','Sealed Avadon Gloves','GLOVES',TRUE,'NONE','590','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5714','Avadon Gloves - Heavy Armor','GLOVES',TRUE,'NONE','590','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5715','Avadon Gloves - Light Armor','GLOVES',TRUE,'NONE','590','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5716','Avadon Gloves - Robe','GLOVES',TRUE,'NONE','590','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5717','Sealed Blue Wolf Gloves','GLOVES',TRUE,'NONE','590','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5718','Blue Wolf Gloves - Heavy Armor','GLOVES',TRUE,'NONE','590','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5719','Blue Wolf Gloves - Light Armor','GLOVES',TRUE,'NONE','590','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5720','Blue Wolf Gloves - Robe','GLOVES',TRUE,'NONE','590','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5721','Sealed Doom Gloves','GLOVES',TRUE,'NONE','580','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5722','Doom Gloves - Heavy Armor','GLOVES',TRUE,'NONE','580','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5723','Doom Gloves - Light Armor','GLOVES',TRUE,'NONE','580','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5724','Doom Gloves - Robe','GLOVES',TRUE,'NONE','580','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5725','Sealed Zubei\'s Boots','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5726','Zubei\'s Boots - Heavy Armor','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5727','Zubei\'s Boots - Light Armor','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5728','Zubei\'s Boots - Robe','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5729','Sealed Avadon Boots','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5730','Avadon Boots - Heavy Armor','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5731','Avadon Boots - Light Armor','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5732','Avadon Boots - Robe','FEET',TRUE,'NONE','1180','B','-1','519000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5733','Sealed Blue Wolf Boots','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5734','Blue Wolf Boots - Heavy Armor','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5735','Blue Wolf Boots - Light Armor','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5736','Blue Wolf Boots - Robe','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5737','Sealed Boots of Doom','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5738','Doom Boots - Heavy Armor','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5739','Doom Boots - Light Armor','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5740','Doom Boots - Robe','FEET',TRUE,'NONE','1130','B','-1','804000','107',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5765','Dark Crystal Gloves - Heavy Armor','GLOVES',TRUE,'NONE','580','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5766','Dark Crystal Gloves - Light Armor','GLOVES',TRUE,'NONE','580','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5767','Dark Crystal Gloves - Robe','GLOVES',TRUE,'NONE','580','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5768','Tallum Gloves - Heavy Armor','GLOVES',TRUE,'NONE','580','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5769','Tallum Gloves - Light Armor','GLOVES',TRUE,'NONE','580','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5770','Tallum Gloves - Robe','GLOVES',TRUE,'NONE','580','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5771','Gauntlets of Nightmare - Heavy Armor','GLOVES',TRUE,'NONE','550','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5772','Gauntlets of Nightmare - Light Armor','GLOVES',TRUE,'NONE','550','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5773','Gauntlets of Nightmare - Robe','GLOVES',TRUE,'NONE','550','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5774','Majestic Gauntlets - Heavy Armor','GLOVES',TRUE,'NONE','540','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5775','Majestic Gauntlets - Light Armor','GLOVES',TRUE,'NONE','540','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5776','Majestic Gauntlets - Robe','GLOVES',TRUE,'NONE','540','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5777','Dark Crystal Boots - Heavy Armor','FEET',TRUE,'NONE','1110','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5778','Dark Crystal Boots - Light Armor','FEET',TRUE,'NONE','1110','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5779','Dark Crystal Boots - Robe','FEET',TRUE,'NONE','1110','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5780','Tallum Boots - Heavy Armor','FEET',TRUE,'NONE','1130','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5781','Tallum Boots - Light Armor','FEET',TRUE,'NONE','1130','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5782','Tallum Boots - Robe','FEET',TRUE,'NONE','1130','A','-1','1160000','92',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5783','Boots of Nightmare - Heavy Armor','FEET',TRUE,'NONE','1110','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5784','Boots of Nightmare - Light Armor','FEET',TRUE,'NONE','1110','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5785','Boots of Nightmare - Robe','FEET',TRUE,'NONE','1110','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5786','Majestic Boots - Heavy Armor','FEET',TRUE,'NONE','1110','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5787','Majestic Boots - Light Armor','FEET',TRUE,'NONE','1110','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5788','Majestic Boots - Robe','FEET',TRUE,'NONE','1110','A','-1','1760000','140',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('5808','Party Mask','FACE',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6323','Sealed Phoenix Necklace','NECK',TRUE,'NONE','150','A','-1','1740000','139',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6324','Sealed Phoenix Earring','EAR',TRUE,'NONE','150','A','-1','1310000','104',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6325','Sealed Phoenix Ring','FINGER',TRUE,'NONE','150','A','-1','871000','69',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6326','Sealed Majestic Necklace','NECK',TRUE,'NONE','150','A','-1','2600000','208',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6327','Sealed Majestic Earring','EAR',TRUE,'NONE','150','A','-1','1950000','156',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6328','Sealed Majestic Ring','FINGER',TRUE,'NONE','150','A','-1','1300000','104',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6373','Imperial Crusader Breastplate','CHEST',TRUE,'HEAVY','7620','S','-1','14300000','715',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6374','Imperial Crusader Gaiters','LEGS',TRUE,'HEAVY','3260','S','-1','8960000','448',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6375','Imperial Crusader Gauntlets','GLOVES',TRUE,'NONE','540','S','-1','3580000','179',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6376','Imperial Crusader Boots','FEET',TRUE,'NONE','1110','S','-1','3580000','179',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6378','Imperial Crusader Helmet','HEAD',TRUE,'NONE','550','S','-1','5370000','268',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6379','Draconic Leather Armor','FULL_ARMOR',TRUE,'LIGHT','4950','S','-1','17400000','870',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6380','Draconic Leather Gloves','GLOVES',TRUE,'NONE','540','S','-1','3580000','179',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6381','Draconic Leather Boots','FEET',TRUE,'NONE','1110','S','-1','3580000','179',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6382','Draconic Leather Helmet','HEAD',TRUE,'NONE','550','S','-1','5370000','268',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6383','Major Arcana Robe','FULL_ARMOR',TRUE,'MAGIC','2300','S','-1','17400000','870',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6384','Major Arcana Gloves','GLOVES',TRUE,'NONE','540','S','-1','3580000','179',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6385','Major Arcana Boots','FEET',TRUE,'NONE','1110','S','-1','3580000','179',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6386','Major Arcana Circlet','HEAD',TRUE,'NONE','550','S','-1','5370000','268',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6394','Red Party Mask','FACE',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6408','Formal Wear','FULL_ARMOR',FALSE,'MAGIC','1000','NONE','-1','5000000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6656','Earring of Antharas','EAR',TRUE,'NONE','150','S','-1','3700000','185',TRUE,TRUE,TRUE,TRUE,'3558','1'),
+ ('6657','Necklace of Valakas','NECK',TRUE,'NONE','150','S','-1','4940000','247',TRUE,TRUE,TRUE,TRUE,'3557','1'),
+ ('6658','Ring of Baium','FINGER',TRUE,'NONE','150','S','-1','1730000','86',TRUE,TRUE,TRUE,TRUE,'3561','1'),
+ ('6659','Zaken\'s Earring','EAR',TRUE,'NONE','150','S','-1','2590000','129',TRUE,TRUE,TRUE,TRUE,'3559','1'),
+ ('6660','Ring of Queen Ant','FINGER',TRUE,'NONE','150','B','-1','616000','82',TRUE,TRUE,TRUE,TRUE,'3562','1'),
+ ('6661','Earring of Orfen','EAR',TRUE,'NONE','150','A','-1','1300000','104',TRUE,TRUE,TRUE,TRUE,'3560','1'),
+ ('6662','Ring of Core','FINGER',TRUE,'NONE','150','A','-1','870000','69',TRUE,TRUE,TRUE,TRUE,'3563','1'),
+ ('6674','Sealed Imperial Crusader Breastplate','CHEST',TRUE,'HEAVY','7620','S','-1','14300000','715',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6675','Sealed Imperial Crusader Gaiters','LEGS',TRUE,'HEAVY','3260','S','-1','8960000','448',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6676','Sealed Imperial Crusader Gauntlet','GLOVES',TRUE,'NONE','540','S','-1','3580000','179',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6677','Sealed Imperial Crusader Boots','FEET',TRUE,'NONE','1110','S','-1','3580000','179',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6679','Sealed Imperial Crusader Helmet','HEAD',TRUE,'NONE','550','S','-1','5370000','268',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6680','Sealed Draconic Leather Armor','FULL_ARMOR',TRUE,'LIGHT','4950','S','-1','17400000','870',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6681','Sealed Draconic Leather Glove','GLOVES',TRUE,'NONE','540','S','-1','3580000','179',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6682','Sealed Draconic Leather Boots','FEET',TRUE,'NONE','1110','S','-1','3580000','179',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6683','Sealed Draconic Leather Helmet','HEAD',TRUE,'NONE','550','S','-1','5370000','268',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6684','Sealed Major Arcana Robe','FULL_ARMOR',TRUE,'MAGIC','2300','S','-1','17400000','870',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6685','Sealed Major Arcana Glove','GLOVES',TRUE,'NONE','540','S','-1','3580000','179',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6686','Sealed Major Arcana Boots','FEET',TRUE,'NONE','1110','S','-1','3580000','179',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6687','Sealed Major Arcana Circlet','HEAD',TRUE,'NONE','550','S','-1','5370000','268',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6724','Sealed Tateossian Earring','EAR',TRUE,'NONE','150','S','-1','3700000','185',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6725','Sealed Tateossian Ring','FINGER',TRUE,'NONE','150','S','-1','2470000','123',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6726','Sealed Tateossian Necklace','NECK',TRUE,'NONE','150','S','-1','4940000','247',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6834','Circlet of Innadril','FACE',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'3633','1'),
+ ('6835','Circlet of Dion','FACE',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'3633','1'),
+ ('6836','Circlet of Goddard','FACE',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'3633','1'),
+ ('6837','Circlet of Oren','FACE',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'3633','1'),
+ ('6838','Circlet of Gludio','FACE',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'3633','1'),
+ ('6839','Circlet of Giran','FACE',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'3633','1'),
+ ('6840','Circlet of Aden','FACE',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'3633','1'),
+ ('6841','The Lord\'s Crown','FACE',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'3632','1'),
+ ('6842','Wings of Destiny Circlet','FACE',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('6843','Cat Ear','HAIR',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6844','Lady\'s Hair Pin','HAIR',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6845','Pirate\'s Eye Patch','FACE',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('6846','Monocle','FACE',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7059','Golden Festival Mask','FACE',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('7060','Tateossian Hairband','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,FALSE,TRUE,TRUE,'0','0'),
+ ('7680','Raccoon Ears','HAIR',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7681','Outlaw\'s Eyepatch','FACE',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7682','Maiden\'s Hairpin','HAIR',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7683','Rabbit Ears','HAIR',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7694','Noblesse Tiara','FACE',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('7695','Forget-me-not Hairpin','HAIR',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7696','Daisy Hairpin','HAIR',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7836','Santa\'s Hat','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,FALSE,TRUE,TRUE,'0','0'),
+ ('7837','Sayha\'s White Mask','FACE',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('7839','Gran Kain\'s Black Mask','FACE',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('7840','Rabbit Ears (Event)','HAIR',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('7841','Racoon Ears (Event)','HAIR',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('7842','Cat Ears (Event)','HAIR',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('7843','Pirate\'s Eyepatch (Event)','FACE',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('7844','Monocle (Event)','FACE',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('7845','Outlaw\'s Eyepatch (Event)','FACE',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('7846','Lady\'s Hairpin (Event)','HAIR',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('7847','Noblewoman\'s Hairpin (Event)','HAIR',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('7848','Forget-me-not Hairpin (Event)','HAIR',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('7849','Daisy Hairpin (Event)','HAIR',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('7850','Clan Oath Helm','HEAD',TRUE,'NONE','640','D','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7851','Clan Oath Armor','FULL_ARMOR',TRUE,'HEAVY','9870','D','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7852','Clan Oath Gauntlets - Heavy Armor','GLOVES',TRUE,'NONE','640','D','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7853','Clan Oath Sabaton - Heavy Armor','FEET',TRUE,'NONE','1280','D','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7854','Clan Oath Brigandine','FULL_ARMOR',TRUE,'LIGHT','5400','D','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7855','Clan Oath Leather Gloves - Light Armor','GLOVES',TRUE,'NONE','640','D','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7856','Clan Oath Boots - Light Armor','FEET',TRUE,'NONE','1280','D','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7857','Clan Oath Aketon','FULL_ARMOR',TRUE,'MAGIC','2450','D','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7858','Clan Oath Padded Gloves - Robe','GLOVES',TRUE,'NONE','640','D','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7859','Clan Oath Sandals - Robe','FEET',TRUE,'NONE','1280','D','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7860','Apella Helm','HEAD',TRUE,'NONE','570','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7861','Apella Plate Armor','FULL_ARMOR',TRUE,'HEAVY','9780','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7862','Apella Gauntlet - Heavy Armor','GLOVES',TRUE,'NONE','580','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7863','Apella Solleret - Heavy Armor','FEET',TRUE,'NONE','1130','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7864','Apella Brigandine','FULL_ARMOR',TRUE,'LIGHT','5400','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7865','Apella Leather Gloves - Light Armor','GLOVES',TRUE,'NONE','580','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7866','Apella Boots - Light Armor','FEET',TRUE,'NONE','1130','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7867','Apella Doublet','FULL_ARMOR',TRUE,'MAGIC','2450','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7868','Apella Silk Gloves - Robe','GLOVES',TRUE,'NONE','580','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7869','Apella Sandals - Robe','FEET',TRUE,'NONE','1130','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7870','Sealed Apella Helm','HEAD',TRUE,'NONE','570','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7871','Sealed Apella Plate Armor','FULL_ARMOR',TRUE,'HEAVY','9780','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7872','Sealed Apella Gauntlet','GLOVES',TRUE,'NONE','580','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7873','Sealed Apella Solleret','FEET',TRUE,'NONE','1130','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7874','Sealed Apella Brigandine','FULL_ARMOR',TRUE,'LIGHT','5400','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7875','Sealed Apella Leather Gloves','GLOVES',TRUE,'NONE','580','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7876','Sealed Apella Boots','FEET',TRUE,'NONE','1130','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7877','Sealed Apella Doublet','FULL_ARMOR',TRUE,'MAGIC','2450','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7878','Sealed Apella Silk Gloves','GLOVES',TRUE,'NONE','580','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('7879','Sealed Apella Sandals','FEET',TRUE,'NONE','1130','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8177','Raid Challenger\'s Circlet','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8178','Raid Adventurer\'s Circlet','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8179','Raid Master\'s Circlet','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8180','Circlet of Ice Fairy Sirra','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8181','Academy Circlet','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8182','Circlet of Rune','FACE',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'3633','1'),
+ ('8183','Circlet of Schuttgart','FACE',FALSE,'NONE','10','NONE','-1','500000','0',TRUE,TRUE,TRUE,TRUE,'3633','1'),
+ ('8184','Party Hat','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8185','Feathered Hat','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8186','Artisan\'s Goggles','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8187','Demon Horns','HAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8188','Little Angel Wings','HAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8189','Fairy Antennae','HAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8191','Frintezza\'s Necklace','NECK',TRUE,'NONE','150','A','-1','0','0',TRUE,TRUE,TRUE,TRUE,'3604','1'),
+ ('8541','Little Harness','BABYPET',FALSE,'PET_ARMOR','160','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8552','Mask of Spirits','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8557','Blue Party Hat','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8558','Eva\'s Mark','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8559','Diadem','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8560','Teddy Bear Hat','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8561','Piggy Hat','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8562','Jester Hat','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8563','Wizard Hat','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8564','Dapper Cap','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8565','Romantic Chapeau','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8566','Iron Circlet','FACE',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('8567','Valakas Slayer Circlet','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8568','Antharas Slayer Circlet','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8569','Half Face Mask','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8660','Demon Horns','HAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8661','Mask of Spirits','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8662','Fairy Antennae (Event)','HAIR',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('8910','Black Feather Mask (Event)','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('8911','Black Half-Mask (Event)','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8912','Single Stem Flower','HAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8913','Butterfly Hairpin','HAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8914','Luxurious Gold Circlet','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8915','Luxurious Silver Circlet','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8916','Eye Patch','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8917','Goddess Circlet','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8918','Leather Cap','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8919','First Mate\'s Hat - Event Use','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('8920','Angel Halo','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8921','Demon Circlet','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8922','Pirate Hat','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8923','Scar','FACE',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8936','Santa\'s Antlers','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8947','L2 Day: Rabbit Ears','HAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8948','L2 Day: Little Angel Wings','HAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8949','L2 Day: Fairy Antennae','HAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8950','L2 Day: Feathered Hat','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('8951','L2 Day: Artisan\'s Goggles','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('9030','Shadow Item: Bronze Breastplate','CHEST',FALSE,'HEAVY','2973','NONE','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9031','Shadow Item: Bronze Gaiters','LEGS',FALSE,'HEAVY','1320','NONE','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9032','Shadow Item: Hard Leather Shirt','CHEST',FALSE,'LIGHT','1573','NONE','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9033','Shadow Item: Hard Leather Gaiters','LEGS',FALSE,'LIGHT','537','NONE','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9034','Shadow Item: Tunic of Magic','CHEST',FALSE,'MAGIC','693','NONE','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9035','Shadow Item: Stockings of Magic','LEGS',FALSE,'MAGIC','343','NONE','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9037','Shadow Item: Hard Leather Helmet','HEAD',FALSE,'NONE','213','NONE','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9038','Shadow Item: Boots','FEET',FALSE,'NONE','437','NONE','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9039','Shadow Item: Bracer','GLOVES',FALSE,'NONE','217','NONE','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9040','Shadow Item: Mithril Breastplate','CHEST',FALSE,'HEAVY','2890','D','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9041','Shadow Item: Mithril Gaiters','LEGS',FALSE,'HEAVY','1277','D','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9042','Shadow Item: Gauntlet','GLOVES',FALSE,'NONE','213','D','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9043','Shadow Item: Iron Boots','FEET',FALSE,'NONE','427','D','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9045','Shadow Item: Reinforced Leather Shirt','CHEST',FALSE,'LIGHT','1523','D','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9046','Shadow Item: Reinforced Leather Gaiters','LEGS',FALSE,'LIGHT','523','D','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9047','Shadow Item: Reinforced Leather Gloves','GLOVES',FALSE,'NONE','213','D','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9048','Shadow Item: Reinforced Leather Boots','FEET',FALSE,'NONE','427','D','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9049','Shadow Item: Tunic of Knowledge','CHEST',FALSE,'MAGIC','673','D','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9050','Shadow Item: Stockings of Knowledge','LEGS',FALSE,'MAGIC','333','D','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9051','Shadow Item: Gloves of Knowledge','GLOVES',FALSE,'NONE','213','D','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9052','Shadow Item: Boots of Knowledge','FEET',FALSE,'NONE','423','D','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9053','Shadow Item: Helmet','HEAD',FALSE,'NONE','213','D','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9054','Shadow Item: Composite Armor','FULL_ARMOR',FALSE,'HEAVY','3660','C','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9055','Shadow Item: Composite Boots','FEET',FALSE,'NONE','407','C','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9057','Shadow Item: Composite Helmet','HEAD',FALSE,'NONE','203','C','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9058','Shadow Item: Theca Leather Armor','CHEST',FALSE,'LIGHT','1457','C','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9059','Shadow Item: Theca Leather Gaiters','LEGS',FALSE,'LIGHT','510','C','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9060','Shadow Item: Theca Leather Boots','FEET',FALSE,'NONE','403','C','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9061','Shadow Item: Theca Leather Gloves','GLOVES',FALSE,'NONE','200','C','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9062','Shadow Item: Demon\'s Tunic','CHEST',FALSE,'MAGIC','663','C','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9063','Shadow Item: Demon\'s Stockings','LEGS',FALSE,'MAGIC','327','C','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9064','Shadow Item: Demon\'s Boots','FEET',FALSE,'NONE','407','C','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9065','Shadow Item: Demon\'s Gloves','GLOVES',FALSE,'NONE','203','C','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9066','Shadow Item: Shining Circlet','HEAD',FALSE,'NONE','200','C','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9067','Shadow Item: Zubei\'s Breastplate','CHEST',FALSE,'HEAVY','2657','B','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9068','Shadow Item: Zubei\'s Gaiters','LEGS',FALSE,'HEAVY','1190','B','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9069','Shadow Item: Zubei\'s Helmet','HEAD',FALSE,'NONE','197','B','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9071','Shadow Item: Zubei\'s Gauntlet','GLOVES',FALSE,'NONE','197','B','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9072','Shadow Item: Zubei\'s Boots','FEET',FALSE,'NONE','393','B','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9073','Shadow Item: Zubei\'s Leather Shirt','CHEST',FALSE,'LIGHT','1443','B','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9074','Shadow Item: Zubei\'s Leather Gaiters','LEGS',FALSE,'LIGHT','493','B','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9075','Shadow Item: Zubei\'s Gauntlet','GLOVES',FALSE,'NONE','197','B','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9076','Shadow Item: Zubei\'s Boots','FEET',FALSE,'NONE','393','B','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9077','Shadow Item: Tunic of Zubei','CHEST',FALSE,'MAGIC','653','B','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9078','Shadow Item: Stockings of Zubei','LEGS',FALSE,'MAGIC','313','B','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9079','Shadow Item: Zubei\'s Gauntlet','GLOVES',FALSE,'NONE','197','B','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9080','Shadow Item: Zubei\'s Boots','FEET',FALSE,'NONE','393','B','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9081','Shadow Item: Dark Crystal Breastplate','CHEST',FALSE,'HEAVY','2567','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9082','Shadow Item: Dark Crystal Gaiters','LEGS',FALSE,'HEAVY','1107','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9083','Shadow Item: Dark Crystal Helmet','HEAD',FALSE,'NONE','190','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9085','Shadow Item: Dark Crystal Gloves','GLOVES',FALSE,'NONE','193','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9086','Shadow Item: Dark Crystal Boots','FEET',FALSE,'NONE','370','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9087','Shadow Item: Dark Crystal Leather Armor','CHEST',FALSE,'LIGHT','1433','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9088','Shadow Item: Dark Crystal Leggings','LEGS',FALSE,'LIGHT','493','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9089','Shadow Item: Dark Crystal Gloves','GLOVES',FALSE,'NONE','193','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9090','Shadow Item: Dark Crystal Boots','FEET',FALSE,'NONE','370','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9091','Shadow Item: Dark Crystal Robe','FULL_ARMOR',FALSE,'MAGIC','817','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9092','Shadow Item: Dark Crystal Gloves','GLOVES',FALSE,'NONE','193','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9093','Shadow Item: Dark Crystal Boots','FEET',FALSE,'NONE','370','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9094','Shadow Item: Majestic Plate Armor','FULL_ARMOR',FALSE,'HEAVY','3067','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9095','Shadow Item: Magestic Circlet','HEAD',FALSE,'NONE','183','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9096','Shadow Item: Magestic Gauntlet','GLOVES',FALSE,'NONE','180','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9097','Shadow Item: Magestic Boots','FEET',FALSE,'NONE','370','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9098','Shadow Item: Majestic Leather Armor','FULL_ARMOR',FALSE,'LIGHT','1783','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9099','Shadow Item: Magestic Gauntlet','GLOVES',FALSE,'NONE','180','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9100','Shadow Item: Magestic Boots','FEET',FALSE,'NONE','370','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9101','Shadow Item: Magestic Robe','FULL_ARMOR',FALSE,'MAGIC','777','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9102','Shadow Item: Magestic Gauntlet','GLOVES',FALSE,'NONE','180','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9103','Shadow Item: Magestic Boots','FEET',FALSE,'NONE','370','A','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9128','Shadow Item: Mithril Gauntlet','GLOVES',FALSE,'NONE','200','C','600','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9138','Santa\'s Hat','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('9145','Little Angel Wings (Event)','HAIR',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9158','Golden Circlet of Redemption','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('9159','Silver Circlet of Salvation','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('9160','Pig Wrangler\'s Cap','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',TRUE,TRUE,TRUE,TRUE,'0','0'),
+ ('9177','Teddy Bear Hat - Blessed Resurrection Effect','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9178','Piggy Hat - Blessed Resurrection Effect','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9179','Jester Hat - Blessed Resurrection Effect','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9180','Wizard Hat - Blessed Resurrection Effect','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9181','Dapper Cap - Blessed Resurrection Effect','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9182','Romantic Chapeau - Blessed Resurrection Effect','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9183','Iron Circlet - Blessed Resurrection Effect','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9184','Teddy Bear Hat - Blessed Escape Effect','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9185','Piggy Hat - Blessed Escape Effect','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9186','Jester Hat - Blessed Escape Effect','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9187','Wizard Hat - Blessed Escape Effect','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9188','Dapper Cap - Blessed Escape Effect','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9189','Romantic Chapeau - Blessed Escape Effect','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9190','Iron Circlet - Blessed Escape Effect','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9191','Teddy Bear Hat - Big Head','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9192','Piggy Hat - Big Head','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9193','Jester Hat - Big Head','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9194','Wizard Hat - Big Head','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9195','Dapper Hat - Big Head','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9196','Romantic Chapeau - Big Head','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9197','Iron Circlet - Big Head','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9198','Teddy Bear Hat - Firework','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9199','Piggy Hat - Firework','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9200','Jester Hat - Firework','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9201','Wizard Hat - Firework','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9202','Dapper Hat - Firework','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9203','Romantic Chapeau - Firework','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9204','Iron Circlet - Firework','DHAIR',FALSE,'NONE','10','NONE','300','0','0',FALSE,FALSE,TRUE,FALSE,'0','0'),
+ ('9208','Phantom Mask (Event)','DHAIR',FALSE,'NONE','10','NONE','-1','0','0',FALSE,FALSE,TRUE,FALSE,'0','0');
\ No newline at end of file
diff --git a/Datapack/sql/armorsets.sql b/Datapack/sql/armorsets.sql
index 273804f7..af89c1bf 100644
--- a/Datapack/sql/armorsets.sql
+++ b/Datapack/sql/armorsets.sql
@@ -15,87 +15,88 @@ CREATE TABLE armorsets (
shield_skill_id decimal(11,0) NOT NULL default '0',
enchant6skill decimal(11,0) NOT NULL default '0',
PRIMARY KEY (id,chest)
-) ENGINE=MyISAM;
+);
-- NO GRADE -------------
-- ######################## id chest legs head gloves feet skill shield sh_skill enchant6
-INSERT INTO armorsets VALUES(1, 23, 2386, 43, 0, 0, 3500, 0, 0, 0); -- Wooden Breastplate set (heavy)
-INSERT INTO armorsets VALUES(2, 1101, 1104, 44, 0, 0, 3501, 0, 0, 0); -- Devotion robe set (robe)
+INSERT INTO armorsets VALUES
+ (1, 23, 2386, 43, 0, 0, 3500, 0, 0, 0), -- Wooden Breastplate set (heavy)
+ (2, 1101, 1104, 44, 0, 0, 3501, 0, 0, 0), -- Devotion robe set (robe)
-- D GRADE -------------
-- ######################## id chest legs head gloves feet skill shield sh_skill enchant6
-INSERT INTO armorsets VALUES(3, 58, 59, 47, 0, 0, 3502, 628, 3543, 3611); -- Mithril Breastplate set(heavy)
-INSERT INTO armorsets VALUES(4, 352, 2378, 2411, 0, 0, 3506, 2493, 3544, 3611); -- Brigandine Armor set
+(3, 58, 59, 47, 0, 0, 3502, 628, 3543, 3611), -- Mithril Breastplate set(heavy)
+(4, 352, 2378, 2411, 0, 0, 3506, 2493, 3544, 3611), -- Brigandine Armor set
-INSERT INTO armorsets VALUES(5, 394, 416, 0, 0, 2422, 3503, 0, 0, 3612); -- Reinforced leather set
-INSERT INTO armorsets VALUES(6, 395, 417, 0, 0, 2424, 3505, 0, 0, 3612); -- Manticore skin set
+(5, 394, 416, 0, 0, 2422, 3503, 0, 0, 3612), -- Reinforced leather set
+(6, 395, 417, 0, 0, 2424, 3505, 0, 0, 3612), -- Manticore skin set
-INSERT INTO armorsets VALUES(7, 436, 469, 0, 2447, 0, 3504, 0, 0, 3613); -- Tunic of knowledge set
-INSERT INTO armorsets VALUES(8, 437, 470, 0, 2450, 0, 3507, 0, 0, 3613); -- Mithril Tunic
+(7, 436, 469, 0, 2447, 0, 3504, 0, 0, 3613), -- Tunic of knowledge set
+(8, 437, 470, 0, 2450, 0, 3507, 0, 0, 3613), -- Mithril Tunic
-- C GRADE -------------
-- ######################## id chest legs head gloves feet skill shield sh_skill enchant6
-INSERT INTO armorsets VALUES(9, 354, 381, 2413, 0, 0, 3509, 2495, 3545, 3614); -- Chain Mail Shirt set
-INSERT INTO armorsets VALUES(10, 60, 0, 517, 0, 0, 3512, 107, 3546, 3614); -- Composite Armor set
-INSERT INTO armorsets VALUES(11, 356, 0, 2414, 0, 0, 3516, 2497, 3547, 3614); -- Full Plate Armor set
+(9, 354, 381, 2413, 0, 0, 3509, 2495, 3545, 3614), -- Chain Mail Shirt set
+(10, 60, 0, 517, 0, 0, 3512, 107, 3546, 3614), -- Composite Armor set
+(11, 356, 0, 2414, 0, 0, 3516, 2497, 3547, 3614), -- Full Plate Armor set
-INSERT INTO armorsets VALUES(12, 397, 2387, 0, 0, 62, 3508, 0, 0, 3615); -- Mithrill shirt set
-INSERT INTO armorsets VALUES(13, 398, 418, 0, 0, 2431, 3511, 0, 0, 3615); -- Plated leather set
-INSERT INTO armorsets VALUES(14, 400, 420, 0, 0, 2436, 3514, 0, 0, 3615); -- Theca leather set
-INSERT INTO armorsets VALUES(15, 401, 0, 0, 0, 2437, 3515, 0, 0, 3615); -- Drake leather set
+(12, 397, 2387, 0, 0, 62, 3508, 0, 0, 3615), -- Mithrill shirt set
+(13, 398, 418, 0, 0, 2431, 3511, 0, 0, 3615), -- Plated leather set
+(14, 400, 420, 0, 0, 2436, 3514, 0, 0, 3615), -- Theca leather set
+(15, 401, 0, 0, 0, 2437, 3515, 0, 0, 3615), -- Drake leather set
-INSERT INTO armorsets VALUES(16, 439, 471, 0, 2454, 0, 3510, 0, 0, 3616); -- Karmian robe set
-INSERT INTO armorsets VALUES(17, 441, 472, 0, 2459, 0, 3513, 0, 0, 3616); -- Demon robe set
-INSERT INTO armorsets VALUES(18, 442, 473, 0, 2463, 0, 3517, 0, 0, 3616); -- Divine robe set
+(16, 439, 471, 0, 2454, 0, 3510, 0, 0, 3616), -- Karmian robe set
+(17, 441, 472, 0, 2459, 0, 3513, 0, 0, 3616), -- Demon robe set
+(18, 442, 473, 0, 2463, 0, 3517, 0, 0, 3616), -- Divine robe set
-- B GRADE -------------
-- ######################## id chest legs head gloves feet skill shield sh_skill enchant6
-INSERT INTO armorsets VALUES(19, 357, 383, 503, 5710, 5726, 3518, 0, 0, 3617); -- Zubei's Breastplate set
-INSERT INTO armorsets VALUES(20, 2384, 2388, 503, 5711, 5727, 3520, 0, 0, 3618); -- Zubei's leather set
-INSERT INTO armorsets VALUES(21, 2397, 2402, 503, 5712, 5728, 3522, 0, 0, 3619); -- Zubei robe set
+(19, 357, 383, 503, 5710, 5726, 3518, 0, 0, 3617), -- Zubei's Breastplate set
+(20, 2384, 2388, 503, 5711, 5727, 3520, 0, 0, 3618), -- Zubei's leather set
+(21, 2397, 2402, 503, 5712, 5728, 3522, 0, 0, 3619), -- Zubei robe set
-INSERT INTO armorsets VALUES(22, 2376, 2379, 2415, 5714, 5730, 3519, 673, 3548, 3617); -- Avadon heavy set
-INSERT INTO armorsets VALUES(23, 2390, 0, 2415, 5715, 5731, 3521, 0, 0, 3618); -- Avadon leather set
-INSERT INTO armorsets VALUES(24, 2406, 0, 2415, 5716, 5732, 3523, 0, 0, 3619); -- Avadon robe set
+(22, 2376, 2379, 2415, 5714, 5730, 3519, 673, 3548, 3617), -- Avadon heavy set
+(23, 2390, 0, 2415, 5715, 5731, 3521, 0, 0, 3618), -- Avadon leather set
+(24, 2406, 0, 2415, 5716, 5732, 3523, 0, 0, 3619), -- Avadon robe set
-INSERT INTO armorsets VALUES(25, 358, 2380, 2416, 5718, 5734, 3524, 0, 0, 3617); -- Blue Wolf's Breastplate set
-INSERT INTO armorsets VALUES(26, 2391, 0, 2416, 5719, 5735, 3526, 0, 0, 3618); -- Blue wolf leather set
-INSERT INTO armorsets VALUES(27, 2398, 2403, 2416, 5720, 5736, 3528, 0, 0, 3619); -- Blue Wolf robe set
+(25, 358, 2380, 2416, 5718, 5734, 3524, 0, 0, 3617), -- Blue Wolf's Breastplate set
+(26, 2391, 0, 2416, 5719, 5735, 3526, 0, 0, 3618), -- Blue wolf leather set
+(27, 2398, 2403, 2416, 5720, 5736, 3528, 0, 0, 3619), -- Blue Wolf robe set
-INSERT INTO armorsets VALUES(28, 2381, 0, 2417, 5722, 5738, 3525, 110, 3549, 3617); -- Doom plate heavy set
-INSERT INTO armorsets VALUES(29, 2392, 0, 2417, 5723, 5739, 3527, 0, 0, 3618); -- Doom leather set
-INSERT INTO armorsets VALUES(30, 2399, 2404, 2417, 5724, 5740, 3529, 0, 0, 3619); -- Doom robe set
+(28, 2381, 0, 2417, 5722, 5738, 3525, 110, 3549, 3617), -- Doom plate heavy set
+(29, 2392, 0, 2417, 5723, 5739, 3527, 0, 0, 3618), -- Doom leather set
+(30, 2399, 2404, 2417, 5724, 5740, 3529, 0, 0, 3619), -- Doom robe set
-- A GRADE -------------
-- ######################## id chest legs head gloves feet skill shield sh_skill enchant6
-INSERT INTO armorsets VALUES(31, 365, 388, 512, 5765, 5777, 3530, 641, 3550, 3620); -- Dark Crystal Breastplate set
-INSERT INTO armorsets VALUES(32, 2385, 2389, 512, 5766, 5778, 3532, 0, 0, 3621); -- Dark Crystal leather set
-INSERT INTO armorsets VALUES(33, 2407, 0, 512, 5767, 5779, 3535, 0, 0, 3622); -- Dark Crystal robe set
+(31, 365, 388, 512, 5765, 5777, 3530, 641, 3550, 3620), -- Dark Crystal Breastplate set
+(32, 2385, 2389, 512, 5766, 5778, 3532, 0, 0, 3621), -- Dark Crystal leather set
+(33, 2407, 0, 512, 5767, 5779, 3535, 0, 0, 3622), -- Dark Crystal robe set
-INSERT INTO armorsets VALUES(34, 2382, 0, 547, 5768, 5780, 3531, 0, 0, 3620); -- Tallum plate heavy set
-INSERT INTO armorsets VALUES(35, 2393, 0, 547, 5769, 5781, 3533, 0, 0, 3621); -- Tallum leather set
-INSERT INTO armorsets VALUES(36, 2400, 2405, 547, 5770, 5782, 3534, 0, 0, 3622); -- Tallum robe set
+(34, 2382, 0, 547, 5768, 5780, 3531, 0, 0, 3620), -- Tallum plate heavy set
+(35, 2393, 0, 547, 5769, 5781, 3533, 0, 0, 3621), -- Tallum leather set
+(36, 2400, 2405, 547, 5770, 5782, 3534, 0, 0, 3622), -- Tallum robe set
-INSERT INTO armorsets VALUES(37, 374, 0, 2418, 5771, 5783, 3536, 2498, 3551, 3620); -- Nightmare heavy set
-INSERT INTO armorsets VALUES(38, 2394, 0, 2418, 5772, 5784, 3538, 0, 0, 3621); -- Nightmare leather set
-INSERT INTO armorsets VALUES(39, 2408, 0, 2418, 5773, 5785, 3540, 0, 0, 3622); -- Robe of nightmare set
+(37, 374, 0, 2418, 5771, 5783, 3536, 2498, 3551, 3620), -- Nightmare heavy set
+(38, 2394, 0, 2418, 5772, 5784, 3538, 0, 0, 3621), -- Nightmare leather set
+(39, 2408, 0, 2418, 5773, 5785, 3540, 0, 0, 3622), -- Robe of nightmare set
-INSERT INTO armorsets VALUES(40, 2383, 0, 2419, 5774, 5786, 3537, 0, 0, 3620); -- Majestic plate heavy set
-INSERT INTO armorsets VALUES(41, 2395, 0, 2419, 5775, 5787, 3539, 0, 0, 3621); -- Majestic leather set
-INSERT INTO armorsets VALUES(42, 2409, 0, 2419, 5776, 5788, 3541, 0, 0, 3622); -- Majestic robe set
+(40, 2383, 0, 2419, 5774, 5786, 3537, 0, 0, 3620), -- Majestic plate heavy set
+(41, 2395, 0, 2419, 5775, 5787, 3539, 0, 0, 3621), -- Majestic leather set
+(42, 2409, 0, 2419, 5776, 5788, 3541, 0, 0, 3622), -- Majestic robe set
-- S GRADE -------------
-- ######################## id chest legs head gloves feet skill shield sh_skill enchant6
-INSERT INTO armorsets VALUES(43, 6373, 6374, 6378, 6375, 6376, 3553, 6377, 3554, 3623); -- Imperial crusader set
-INSERT INTO armorsets VALUES(44, 6379, 0, 6382, 6380, 6381, 3555, 0, 0, 3624); -- Draconic leather set
-INSERT INTO armorsets VALUES(45, 6383, 0, 6386, 6384, 6385, 3556, 0, 0, 3625); -- Major arcana robe set
+(43, 6373, 6374, 6378, 6375, 6376, 3553, 6377, 3554, 3623), -- Imperial crusader set
+(44, 6379, 0, 6382, 6380, 6381, 3555, 0, 0, 3624), -- Draconic leather set
+(45, 6383, 0, 6386, 6384, 6385, 3556, 0, 0, 3625), -- Major arcana robe set
-- Clan Sets -------------
-- ######################## id chest legs head gloves feet skill shield sh_skill enchant6
-INSERT INTO armorsets VALUES(46, 7851, 0, 7850, 7852, 7853, 3605, 0, 0, 3611); -- Clan oath Armor set (heavy)
-INSERT INTO armorsets VALUES(47, 7854, 0, 7850, 7855, 7856, 3606, 0, 0, 3612); -- Clan Oath Brigandine set (light)
-INSERT INTO armorsets VALUES(48, 7857, 0, 7850, 7858, 7859, 3607, 0, 0, 3613); -- Clan Oath Aketon set (robe)
+(46, 7851, 0, 7850, 7852, 7853, 3605, 0, 0, 3611), -- Clan oath Armor set (heavy)
+(47, 7854, 0, 7850, 7855, 7856, 3606, 0, 0, 3612), -- Clan Oath Brigandine set (light)
+(48, 7857, 0, 7850, 7858, 7859, 3607, 0, 0, 3613), -- Clan Oath Aketon set (robe)
-INSERT INTO armorsets VALUES(49, 7861, 0, 7860, 7862, 7863, 3608, 0, 0, 3620); -- Apella plate armor set (heavy)
-INSERT INTO armorsets VALUES(50, 7864, 0, 7860, 7865, 7866, 3609, 0, 0, 3621); -- Apella Brigandine set (light)
-INSERT INTO armorsets VALUES(51, 7867, 0, 7860, 7868, 7869, 3610, 0, 0, 3622); -- Apella Doublet set (robe)
+(49, 7861, 0, 7860, 7862, 7863, 3608, 0, 0, 3620), -- Apella plate armor set (heavy)
+(50, 7864, 0, 7860, 7865, 7866, 3609, 0, 0, 3621), -- Apella Brigandine set (light)
+(51, 7867, 0, 7860, 7868, 7869, 3610, 0, 0, 3622); -- Apella Doublet set (robe)
diff --git a/Datapack/sql/auction.sql b/Datapack/sql/auction.sql
index 0fe235f7..42031bda 100644
--- a/Datapack/sql/auction.sql
+++ b/Datapack/sql/auction.sql
@@ -16,7 +16,7 @@ CREATE TABLE IF NOT EXISTS `auction` (
endDate decimal(20,0) NOT NULL default '0',
PRIMARY KEY (`itemType`,`itemId`,`itemObjectId`),
KEY `id` (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+);
--
-- Dumping data for table `auction`
diff --git a/Datapack/sql/auction_bid.sql b/Datapack/sql/auction_bid.sql
index 512921c8..9c0eef5e 100644
--- a/Datapack/sql/auction_bid.sql
+++ b/Datapack/sql/auction_bid.sql
@@ -10,5 +10,6 @@ CREATE TABLE IF NOT EXISTS auction_bid (
maxBid int(11) NOT NULL default 0,
time_bid decimal(20,0) NOT NULL default '0',
PRIMARY KEY (auctionId, bidderId),
- KEY id (id)
+ KEY id (id),
+ INDEX (bidderId)
);
diff --git a/Datapack/sql/auction_watch.sql b/Datapack/sql/auction_watch.sql
deleted file mode 100644
index 84ebc024..00000000
--- a/Datapack/sql/auction_watch.sql
+++ /dev/null
@@ -1,8 +0,0 @@
--- ---------------------------
--- Table structure for auction_watch
--- ---------------------------
-CREATE TABLE IF NOT EXISTS auction_watch (
- charObjId INT NOT NULL default 0,
- auctionId INT NOT NULL default 0,
- PRIMARY KEY (charObjId, auctionId)
-);
diff --git a/Datapack/sql/augmentations.sql b/Datapack/sql/augmentations.sql
index 86dbd633..c578a6a4 100644
--- a/Datapack/sql/augmentations.sql
+++ b/Datapack/sql/augmentations.sql
@@ -3,9 +3,9 @@
-- ---------------------------
CREATE TABLE IF NOT EXISTS augmentations (
- item_id int(11) NOT NULL default 0,
- attributes int(11) default 0,
- skill int(11) default 0,
- level int(11) default 0,
+ item_id INT NOT NULL,
+ attributes INT default 0,
+ skill INT default 0,
+ level INT default 0,
PRIMARY KEY (item_id)
);
\ No newline at end of file
diff --git a/Datapack/sql/auto_chat.sql b/Datapack/sql/auto_chat.sql
index 19f9fe26..bd2e8a51 100644
--- a/Datapack/sql/auto_chat.sql
+++ b/Datapack/sql/auto_chat.sql
@@ -4,7 +4,7 @@ CREATE TABLE `auto_chat` (
`npcId` INT NOT NULL default '0',
`chatDelay` BIGINT NOT NULL default '-1',
PRIMARY KEY (`groupId`)
-) ENGINE=InnoDB;
+) ;
INSERT INTO `auto_chat` VALUES
diff --git a/Datapack/sql/auto_chat_text.sql b/Datapack/sql/auto_chat_text.sql
index 46cab218..ed4b5d7f 100644
--- a/Datapack/sql/auto_chat_text.sql
+++ b/Datapack/sql/auto_chat_text.sql
@@ -3,7 +3,7 @@ CREATE TABLE `auto_chat_text` (
`groupId` INT NOT NULL default '0',
`chatText` VARCHAR(255) NOT NULL default '',
PRIMARY KEY (`groupId`,`chatText`)
-) ENGINE=InnoDB;
+);
INSERT INTO `auto_chat_text` VALUES
(1,'%player_cabal_loser%! All is lost! Prepare to meet the goddess of death!'),
diff --git a/Datapack/sql/boxaccess.sql b/Datapack/sql/boxaccess.sql
deleted file mode 100644
index 6c4d28fb..00000000
--- a/Datapack/sql/boxaccess.sql
+++ /dev/null
@@ -1,8 +0,0 @@
---
--- Table structure for table `boxaccess`
---
-
-CREATE TABLE IF NOT EXISTS boxaccess (
- spawn decimal(11,0) default NULL,
- charname varchar(32) default NULL
-);
\ No newline at end of file
diff --git a/Datapack/sql/boxes.sql b/Datapack/sql/boxes.sql
deleted file mode 100644
index ddaf2f39..00000000
--- a/Datapack/sql/boxes.sql
+++ /dev/null
@@ -1,15 +0,0 @@
---
--- Table structure for table `boxes`
---
-
-CREATE TABLE IF NOT EXISTS boxes (
- id int(11) NOT NULL auto_increment,
- spawn decimal(11,0) default NULL,
- npcid decimal(11,0) default NULL,
- drawer varchar(32) default NULL,
- itemid decimal(11,0) default NULL,
- name varchar(32) default '',
- count decimal(11,0) default NULL,
- enchant decimal(2,0) default NULL,
- PRIMARY KEY (id)
-);
\ No newline at end of file
diff --git a/Datapack/sql/castle.sql b/Datapack/sql/castle.sql
index e9362e20..1fdf5cd7 100644
--- a/Datapack/sql/castle.sql
+++ b/Datapack/sql/castle.sql
@@ -9,8 +9,8 @@ CREATE TABLE IF NOT EXISTS castle (
siegeDate DECIMAL(20,0) NOT NULL default 0,
siegeDayOfWeek INT NOT NULL default 7,
siegeHourOfDay INT NOT NULL default 20,
- PRIMARY KEY (name),
- KEY id (id)
+ PRIMARY KEY (id),
+ KEY id (name)
);
INSERT IGNORE INTO `castle` VALUES
diff --git a/Datapack/sql/castle_doorupgrade.sql b/Datapack/sql/castle_doorupgrade.sql
deleted file mode 100644
index ff85efa8..00000000
--- a/Datapack/sql/castle_doorupgrade.sql
+++ /dev/null
@@ -1,10 +0,0 @@
--- ---------------------------
--- Table structure for castle_doorupgrade
--- ---------------------------
-CREATE TABLE IF NOT EXISTS castle_doorupgrade (
- doorId INT NOT NULL default 0,
- hp INT NOT NULL default 0,
- pDef INT NOT NULL default 0,
- mDef INT NOT NULL default 0,
- PRIMARY KEY (doorId )
-);
\ No newline at end of file
diff --git a/Datapack/sql/castle_manor_procure.sql b/Datapack/sql/castle_manor_procure.sql
index 8a397035..e64ac2ee 100644
--- a/Datapack/sql/castle_manor_procure.sql
+++ b/Datapack/sql/castle_manor_procure.sql
@@ -9,5 +9,6 @@ CREATE TABLE IF NOT EXISTS `castle_manor_procure` (
`price` int(11) NOT NULL DEFAULT '0',
`reward_type` int(11) NOT NULL DEFAULT '0',
`period` INT NOT NULL DEFAULT '1',
- PRIMARY KEY (`castle_id`,`crop_id`,`period`)
-) DEFAULT CHARSET=utf8;
+ PRIMARY KEY (`castle_id`,`crop_id`,`period`),
+ INDEX (castle_id, period)
+);
diff --git a/Datapack/sql/castle_manor_production.sql b/Datapack/sql/castle_manor_production.sql
index 81d1b831..7fe3bff6 100644
--- a/Datapack/sql/castle_manor_production.sql
+++ b/Datapack/sql/castle_manor_production.sql
@@ -2,11 +2,12 @@
-- Table structure for `castle_manor_production`
-- ---------------------------
CREATE TABLE IF NOT EXISTS `castle_manor_production` (
- `castle_id` INT NOT NULL DEFAULT '0',
- `seed_id` int(11) NOT NULL DEFAULT '0',
- `can_produce` int(11) NOT NULL DEFAULT '0',
- `start_produce` int(11) NOT NULL DEFAULT '0',
- `seed_price` int(11) NOT NULL DEFAULT '0',
- `period` INT NOT NULL DEFAULT '1',
- PRIMARY KEY (`castle_id`,`seed_id`,`period`)
-) DEFAULT CHARSET=utf8;
+ castle_id INT NOT NULL,
+ seed_id INT NOT NULL DEFAULT '0',
+ can_produce INT NOT NULL DEFAULT '0',
+ start_produce INT NOT NULL DEFAULT '0',
+ seed_price INT NOT NULL DEFAULT '0',
+ period INT NOT NULL DEFAULT '1',
+ PRIMARY KEY (castle_id,seed_id, period),
+ INDEX (castle_id, period)
+);
diff --git a/Datapack/sql/castle_siege_guards.sql b/Datapack/sql/castle_siege_guards.sql
index 103f2fcf..49fbe7c9 100644
--- a/Datapack/sql/castle_siege_guards.sql
+++ b/Datapack/sql/castle_siege_guards.sql
@@ -11,8 +11,10 @@ CREATE TABLE IF NOT EXISTS castle_siege_guards (
heading INT NOT NULL default 0,
respawnDelay INT NOT NULL default 0,
isHired INT NOT NULL default 1,
- PRIMARY KEY (id),
- KEY id (castleId)
+ PRIMARY KEY (id),
+ INDEX (npcId, x, y, z, isHired),
+ INDEX (isHired),
+ INDEX (castleId, isHired)
);
-- Gludio Castle
diff --git a/Datapack/sql/char_templates.sql b/Datapack/sql/char_templates.sql
index c051c31f..754fc6db 100644
--- a/Datapack/sql/char_templates.sql
+++ b/Datapack/sql/char_templates.sql
@@ -1,139 +1,152 @@
--
-- Table structure for table `char_templates`
---
-
-DROP TABLE IF EXISTS `char_templates`;
-CREATE TABLE `char_templates` (
- `ClassId` int(11) NOT NULL default '0',
- `ClassName` varchar(20) NOT NULL default '',
- `RaceId` int(1) NOT NULL default '0',
- `STR` int(2) NOT NULL default '0',
- `CON` int(2) NOT NULL default '0',
- `DEX` int(2) NOT NULL default '0',
- `_INT` int(2) NOT NULL default '0',
- `WIT` int(2) NOT NULL default '0',
- `MEN` int(2) NOT NULL default '0',
- `P_ATK` int(3) NOT NULL default '0',
- `P_DEF` int(3) NOT NULL default '0',
- `M_ATK` int(3) NOT NULL default '0',
- `M_DEF` int(2) NOT NULL default '0',
- `P_SPD` int(3) NOT NULL default '0',
- `M_SPD` int(3) NOT NULL default '0',
- `ACC` int(3) NOT NULL default '0',
- `CRITICAL` int(3) NOT NULL default '0',
- `EVASION` int(3) NOT NULL default '0',
- `MOVE_SPD` int(3) NOT NULL default '0',
- `_LOAD` int(11) NOT NULL default '0',
- `x` int(9) NOT NULL default '0',
- `y` int(9) NOT NULL default '0',
- `z` int(9) NOT NULL default '0',
- `canCraft` int(1) NOT NULL default '0',
- `M_UNK1` decimal(4,2) NOT NULL default '0.00',
- `M_UNK2` decimal(8,6) NOT NULL default '0.000000',
- `M_COL_R` decimal(3,1) NOT NULL default '0.0',
- `M_COL_H` decimal(4,1) NOT NULL default '0.0',
- `F_UNK1` decimal(4,2) NOT NULL default '0.00',
- `F_UNK2` decimal(8,6) NOT NULL default '0.000000',
- `F_COL_R` decimal(3,1) NOT NULL default '0.0',
- `F_COL_H` decimal(4,1) NOT NULL default '0.0',
- `items1` int(4) NOT NULL default '0',
- `items2` int(4) NOT NULL default '0',
- `items3` int(4) NOT NULL default '0',
- `items4` int(4) NOT NULL default '0',
- `items5` int(10) NOT NULL default '0',
- PRIMARY KEY (`ClassId`)
-) ENGINE=MyISAM;
+--
+DROP TABLE IF EXISTS `player_templates`;
+CREATE TABLE IF NOT EXISTS `player_templates` (
+ `id` INT NOT NULL DEFAULT '0',
+ `player_class` ENUM( 'FIGHTER','WARRIOR','GLADIATOR','WARLORD','KNIGHT','PALADIN','DARK_AVENGER','ROGUE','TREASURE_HUNTER','HAWKEYE','MAGE','WIZARD','SORCEROR','NECROMANCER','WARLOCK','CLERIC','BISHOP','PROPHET','ELVEN_FIGHTER','ELVEN_KNIGHT','TEMPLE_KNIGHT','SWORD_SINGER','ELVEN_SCOUT','PLAINS_WALKER','SILVER_RANGER','ELVEN_MAGE','ELVEN_WIZARD','SPELLSINGER','ELEMENTAL_SUMMONER','ORACLE','ELDER','DARK_FIGHTER','PALUS_KNIGHT','SHILLIEN_KNIGHT','BLADEDANCER','ASSASSIN','ABYSS_WALKER','PHANTOM_RANGER','DARK_MAGE','DARK_WIZARD','SPELLHOWLER','PHANTOM_SUMMONER','SHILLIEN_ORACLE','SHILLEN_ELDER','ORC_FIGHTER','ORC_RAIDER','DESTROYER','ORC_MONK','TYRANT','ORC_MAGE','ORC_SHAMAN','OVERLORD','WARCRYER','DWARVEN_FIGHTER','SCAVENGER','BOUNTY_HUNTER','ARTISAN','WARSMITH','DUELIST','DREADNOUGHT','PHOENIX_KNIGHT','HELL_KNIGHT','SAGITTARIUS','ADVENTURER','ARCHMAGE','SOULTAKER','ARCANA_LORD','CARDINAL','HIEROPHANT','EVA_TEMPLAR','SWORD_MUSE','WIND_RIDER','MOONLIGHT_SENTINEL','MYSTIC_MUSE','ELEMENTAL_MASTER','EVA_SAINT','SHILLIEN_TEMPLAR','SPECTRAL_DANCER','GHOST_HUNTER','GHOST_SENTINEL','STORM_SCREAMER','SPECTRAL_MASTER','SHILLIEN_SAINT','TITAN','GRAND_KHAUATARI','DOMINATOR','DOOMCRYER','FORTUNE_SEEKER','MAESTRO'),
+ `strength` SMALLINT NOT NULL DEFAULT 0,
+ `constitution` SMALLINT NOT NULL DEFAULT 0,
+ `dexterity` SMALLINT NOT NULL DEFAULT 0,
+ `intelligence` SMALLINT NOT NULL DEFAULT 0,
+ `witness` SMALLINT NOT NULL DEFAULT 0,
+ `mentality` SMALLINT NOT NULL DEFAULT 0,
+ `p_atk` SMALLINT NOT NULL DEFAULT 0,
+ `p_def` SMALLINT NOT NULL DEFAULT 0,
+ `p_atk_spd` SMALLINT NOT NULL DEFAULT 0,
+ `m_atk` SMALLINT NOT NULL DEFAULT 0,
+ `m_def` SMALLINT NOT NULL DEFAULT 0,
+ `m_atk_spd` SMALLINT NOT NULL DEFAULT 0,
+ `atk_range` SMALLINT NOT NULL DEFAULT 40,
+ `accuracy` SMALLINT NOT NULL DEFAULT 0,
+ `crit_rate` SMALLINT NOT NULL DEFAULT 0,
+ `evasion` SMALLINT NOT NULL DEFAULT 0,
+ `walk_spd` SMALLINT NOT NULL DEFAULT 0,
+ `run_spd` SMALLINT NOT NULL DEFAULT 0,
+ `_load` INT(11) NOT NULL DEFAULT '0',
+ `hp` DECIMAL(8,1) NOT NULL DEFAULT 0.0,
+ `hp_add` DECIMAL(4,2) NOT NULL DEFAULT 0.00,
+ `hp_mod` DECIMAL(4,2) NOT NULL DEFAULT 0.00,
+ `hp_regen` DECIMAL(5,2) NOT NULL DEFAULT 1.5,
+ `cp` DECIMAL(5,1) NOT NULL DEFAULT 0.0,
+ `cp_add` DECIMAL(4,2) NOT NULL DEFAULT 0.00,
+ `cp_mod` DECIMAL(4,2) NOT NULL DEFAULT 0.00,
+ `mp` DECIMAL(5,1) NOT NULL DEFAULT 0.0,
+ `mp_add` DECIMAL(4,2) NOT NULL DEFAULT 0.00,
+ `mp_mod` DECIMAL(4,2) NOT NULL DEFAULT 0.00,
+ `mp_regen` DECIMAL(5,2) NOT NULL DEFAULT 0.9,
+ `x` INT(9) NOT NULL DEFAULT 0,
+ `y` INT(9) NOT NULL DEFAULT 0,
+ `z` INT(9) NOT NULL DEFAULT 0,
+ `can_craft` BOOL NOT NULL DEFAULT FALSE,
+ `M_UNK1` DECIMAL(4,2) NOT NULL DEFAULT 0.00,
+ `M_UNK2` DECIMAL(8,6) NOT NULL DEFAULT 0.000000,
+ `collision_radius` DECIMAL(5,2) NOT NULL DEFAULT 0.0,
+ `collision_height` DECIMAL(5,2) NOT NULL DEFAULT 0.0,
+ `F_UNK1` DECIMAL(4,2) NOT NULL DEFAULT 0.00,
+ `F_UNK2` DECIMAL(8,6) NOT NULL DEFAULT 0.000000,
+ `f_collision_radius` DECIMAL(5,2) NOT NULL DEFAULT 0.0,
+ `f_collision_height` DECIMAL(5,2) NOT NULL DEFAULT 0.0,
+ `item1` INT NOT NULL DEFAULT 0,
+ `item2` INT NOT NULL DEFAULT 0,
+ `item3` INT NOT NULL DEFAULT 0,
+ `item4` INT NOT NULL DEFAULT 0,
+ `item5` INT NOT NULL DEFAULT 0,
+ PRIMARY KEY (`id`))
+ENGINE = InnoDB;
--
-- Dumping data for table `char_templates`
--
-
-INSERT INTO `char_templates` VALUES (0, 'Human Fighter', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (1, 'Warrior', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (2, 'Gladiator', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (3, 'Warlord', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (4, 'Human Knight', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (5, 'Paladin', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (6, 'Dark Avenger', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (7, 'Rogue', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (8, 'Treasure Hunter', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (9, 'Hawkeye', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (10, 'Human Mage', 0, 22, 27, 21, 41, 20, 39, 3, 54, 6, 41, 300, 333, 28, 40, 28, 120, 62500, -90890, 248027, -3570, 0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (11, 'Human Wizard', 0, 22, 27, 21, 41, 20, 39, 3, 54, 6, 41, 300, 333, 28, 40, 28, 120, 62500, -90890, 248027, -3570, 0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (12, 'Sorcerer', 0, 22, 27, 21, 41, 20, 39, 3, 54, 6, 41, 300, 333, 28, 40, 28, 120, 62500, -90890, 248027, -3570, 0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (13, 'Necromancer', 0, 22, 27, 21, 41, 20, 39, 3, 54, 6, 41, 300, 333, 28, 40, 28, 120, 62500, -90890, 248027, -3570, 0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (14, 'Warlock', 0, 22, 27, 21, 41, 20, 39, 3, 54, 6, 41, 300, 333, 28, 40, 28, 120, 62500, -90890, 248027, -3570, 0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (15, 'Cleric', 0, 22, 27, 21, 41, 20, 39, 3, 54, 6, 41, 300, 333, 28, 40, 28, 120, 62500, -90890, 248027, -3570, 0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (16, 'Bishop', 0, 22, 27, 21, 41, 20, 39, 3, 54, 6, 41, 300, 333, 28, 40, 28, 120, 62500, -90890, 248027, -3570, 0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (17, 'Human Prophet', 0, 22, 27, 21, 41, 20, 39, 3, 54, 6, 41, 300, 333, 28, 40, 28, 120, 62500, -90890, 248027, -3570, 0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (18, 'Elf Fighter', 1, 36, 36, 35, 23, 14, 26, 4, 80, 6, 41, 300, 333, 36, 46, 36, 125, 73000, 45978, 41196, -3440, 0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (19, 'Elf Knight', 1, 36, 36, 35, 23, 14, 26, 4, 80, 6, 41, 300, 333, 36, 46, 36, 125, 73000, 45978, 41196, -3440, 0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (20, 'Temple Knight', 1, 36, 36, 35, 23, 14, 26, 4, 80, 6, 41, 300, 333, 36, 46, 36, 125, 73000, 45978, 41196, -3440, 0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (21, 'Swordsinger', 1, 36, 36, 35, 23, 14, 26, 4, 80, 6, 41, 300, 333, 36, 46, 36, 125, 73000, 45978, 41196, -3440, 0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (22, 'Scout', 1, 36, 36, 35, 23, 14, 26, 4, 80, 6, 41, 300, 333, 36, 46, 36, 125, 73000, 45978, 41196, -3440, 0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (23, 'Plains Walker', 1, 36, 36, 35, 23, 14, 26, 4, 80, 6, 41, 300, 333, 36, 46, 36, 125, 73000, 45978, 41196, -3440, 0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (24, 'Silver Ranger', 1, 36, 36, 35, 23, 14, 26, 4, 80, 6, 41, 300, 333, 36, 46, 36, 125, 73000, 45978, 41196, -3440, 0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (25, 'Elf Mage', 1, 21, 25, 24, 37, 23, 40, 3, 54, 6, 41, 300, 333, 30, 41, 30, 122, 62400, 46182, 41198, -3440, 0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (26, 'Elf Wizard', 1, 21, 25, 24, 37, 23, 40, 3, 54, 6, 41, 300, 333, 30, 41, 30, 122, 62400, 46182, 41198, -3440, 0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (27, 'Spellsinger', 1, 21, 25, 24, 37, 23, 40, 3, 54, 6, 41, 300, 333, 30, 41, 30, 122, 62400, 46182, 41198, -3440, 0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (28, 'Elemental Summoner', 1, 21, 25, 24, 37, 23, 40, 3, 54, 6, 41, 300, 333, 30, 41, 30, 122, 62400, 46182, 41198, -3440, 0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (29, 'Oracle', 1, 21, 25, 24, 37, 23, 40, 3, 54, 6, 41, 300, 333, 30, 41, 30, 122, 62400, 46182, 41198, -3440, 0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (30, 'Elder', 1, 21, 25, 24, 37, 23, 40, 3, 54, 6, 41, 300, 333, 30, 41, 30, 122, 62400, 46182, 41198, -3440, 0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (31, 'DE Fighter', 2, 41, 32, 34, 25, 12, 26, 4, 80, 6, 41, 300, 333, 35, 45, 35, 122, 69000, 28377, 10916, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (32, 'Palus Knight', 2, 41, 32, 34, 25, 12, 26, 4, 80, 6, 41, 300, 333, 35, 45, 35, 122, 69000, 28377, 10916, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (33, 'Shillien Knight', 2, 41, 32, 34, 25, 12, 26, 4, 80, 6, 41, 300, 333, 35, 45, 35, 122, 69000, 28377, 10916, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (34, 'Bladedancer', 2, 41, 32, 34, 25, 12, 26, 4, 80, 6, 41, 300, 333, 35, 45, 35, 122, 69000, 28377, 10916, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (35, 'Assassin', 2, 41, 32, 34, 25, 12, 26, 4, 80, 6, 41, 300, 333, 35, 45, 35, 122, 69000, 28377, 10916, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (36, 'Abyss Walker', 2, 41, 32, 34, 25, 12, 26, 4, 80, 6, 41, 300, 333, 35, 45, 35, 122, 69000, 28377, 10916, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (37, 'Phantom Ranger', 2, 41, 32, 34, 25, 12, 26, 4, 80, 6, 41, 300, 333, 35, 45, 35, 122, 69000, 28377, 10916, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (38, 'DE Mage', 2, 23, 24, 23, 44, 19, 37, 3, 54, 6, 41, 300, 333, 29, 41, 29, 122, 61000, 28295, 11063, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (39, 'DE Wizard', 2, 23, 24, 23, 44, 19, 37, 3, 54, 6, 41, 300, 333, 29, 41, 29, 122, 61000, 28295, 11063, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (40, 'Spell Howler', 2, 23, 24, 23, 44, 19, 37, 3, 54, 6, 41, 300, 333, 29, 41, 29, 122, 61000, 28295, 11063, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (41, 'Phantom Summoner', 2, 23, 24, 23, 44, 19, 37, 3, 54, 6, 41, 300, 333, 29, 41, 29, 122, 61000, 28295, 11063, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (42, 'Shillien Oracle', 2, 23, 24, 23, 44, 19, 37, 3, 54, 6, 41, 300, 333, 29, 41, 29, 122, 61000, 28295, 11063, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (43, 'Shillien Elder', 2, 23, 24, 23, 44, 19, 37, 3, 54, 6, 41, 300, 333, 29, 41, 29, 122, 61000, 28295, 11063, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (44, 'Orc Fighter', 3, 40, 47, 26, 18, 12, 27, 4, 80, 6, 41, 300, 333, 31, 42, 31, 117, 87000, -56693, -113610, -690, 0, 1.06, 1.144800, 11.0, 28.0, 1.06, 1.144800, 7.0, 27.0, 1147, 1146, 2368, 2369, 5588);
-INSERT INTO `char_templates` VALUES (45, 'Raider', 3, 40, 47, 26, 18, 12, 27, 4, 80, 6, 41, 300, 333, 31, 42, 31, 117, 87000, -56693, -113610, -690, 0, 1.06, 1.144800, 11.0, 28.0, 1.06, 1.144800, 7.0, 27.0, 1147, 1146, 2368, 2369, 5588);
-INSERT INTO `char_templates` VALUES (46, 'Destroyer', 3, 40, 47, 26, 18, 12, 27, 4, 80, 6, 41, 300, 333, 31, 42, 31, 117, 87000, -56693, -113610, -690, 0, 1.06, 1.144800, 11.0, 28.0, 1.06, 1.144800, 7.0, 27.0, 1147, 1146, 2368, 2369, 5588);
-INSERT INTO `char_templates` VALUES (47, 'Monk', 3, 40, 47, 26, 18, 12, 27, 4, 80, 6, 41, 300, 333, 31, 42, 31, 117, 87000, -56682, -113610, -690, 0, 1.06, 1.144800, 11.0, 28.0, 1.06, 1.144800, 7.0, 27.0, 1147, 1146, 2368, 2369, 5588);
-INSERT INTO `char_templates` VALUES (48, 'Tyrant', 3, 40, 47, 26, 18, 12, 27, 4, 80, 6, 41, 300, 333, 31, 42, 31, 117, 87000, -56693, -113610, -690, 0, 1.06, 1.144800, 11.0, 28.0, 1.06, 1.144800, 7.0, 27.0, 1147, 1146, 2368, 2369, 5588);
-INSERT INTO `char_templates` VALUES (49, 'Orc Mage', 3, 27, 31, 24, 31, 15, 42, 3, 54, 6, 41, 300, 333, 30, 41, 30, 121, 68000, -56682, -113730, -690, 0, 1.04, 0.898560, 7.0, 27.5, 1.04, 0.898560, 8.0, 25.5, 425, 461, 2368, 5588, 0);
-INSERT INTO `char_templates` VALUES (50, 'Shaman', 3, 27, 31, 24, 31, 15, 42, 3, 54, 6, 41, 300, 333, 30, 41, 30, 121, 68000, -56682, -113730, -690, 0, 1.04, 0.898560, 7.0, 27.5, 1.04, 0.898560, 8.0, 25.5, 425, 461, 2368, 5588, 0);
-INSERT INTO `char_templates` VALUES (51, 'Overlord', 3, 27, 31, 24, 31, 15, 42, 3, 54, 6, 41, 300, 333, 30, 41, 30, 121, 68000, -56682, -113730, -690, 0, 1.04, 0.898560, 7.0, 27.5, 1.04, 0.898560, 8.0, 25.5, 425, 461, 2368, 5588, 0);
-INSERT INTO `char_templates` VALUES (52, 'Warcryer', 3, 27, 31, 24, 31, 15, 42, 3, 54, 6, 41, 300, 333, 30, 41, 30, 121, 68000, -56682, -113730, -690, 0, 1.04, 0.898560, 7.0, 27.5, 1.04, 0.898560, 8.0, 25.5, 425, 461, 2368, 5588, 0);
-INSERT INTO `char_templates` VALUES (53, 'Dwarf Fighter', 4, 39, 45, 29, 20, 10, 27, 4, 80, 6, 41, 300, 333, 33, 43, 33, 115, 83000, 108512, -174026, -400, 1, 1.09, 1.487196, 9.0, 18.0, 1.09, 1.487196, 5.0, 19.0, 1147, 1146, 10, 2370, 5588);
-INSERT INTO `char_templates` VALUES (54, 'Scavenger', 4, 39, 45, 29, 20, 10, 27, 4, 80, 6, 41, 300, 333, 33, 43, 33, 115, 83000, 108512, -174026, -400, 1, 1.09, 1.487196, 9.0, 18.0, 1.09, 1.487196, 5.0, 19.0, 1147, 1146, 10, 2370, 5588);
-INSERT INTO `char_templates` VALUES (55, 'Bounty Hunter', 4, 39, 45, 29, 20, 10, 27, 4, 80, 6, 41, 300, 333, 33, 43, 33, 115, 83000, 108512, -174026, -400, 1, 1.09, 1.487196, 9.0, 18.0, 1.09, 1.487196, 5.0, 19.0, 1147, 1146, 10, 2370, 5588);
-INSERT INTO `char_templates` VALUES (56, 'Artisan', 4, 39, 45, 29, 20, 10, 27, 4, 80, 6, 41, 300, 333, 33, 43, 33, 115, 83000, 108512, -174026, -400, 1, 1.09, 1.487196, 9.0, 18.0, 1.09, 1.487196, 5.0, 19.0, 1147, 1146, 10, 2370, 5588);
-INSERT INTO `char_templates` VALUES (57, 'Warsmith', 4, 39, 45, 29, 20, 10, 27, 4, 80, 6, 41, 300, 333, 33, 43, 33, 115, 83000, 108512, -174026, -400, 1, 1.09, 1.487196, 9.0, 18.0, 1.09, 1.487196, 5.0, 19.0, 1147, 1146, 10, 2370, 5588);
-INSERT INTO `char_templates` VALUES (88, 'Duelist', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (89, 'DreadNought', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (90, 'Phoenix Knight', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (91, 'Hell Knight', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (92, 'Sagittarius', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (93, 'Adventurer', 0, 40, 43, 30, 21, 11, 25, 4, 80, 6, 41, 300, 333, 33, 44, 33, 115, 81900, -71338, 258271, -3104, 0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (94, 'Archmage', 0, 22, 27, 21, 41, 20, 39, 3, 54, 6, 41, 300, 333, 28, 40, 28, 120, 62500, -90890, 248027, -3570, 0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (95, 'Soultaker', 0, 22, 27, 21, 41, 20, 39, 3, 54, 6, 41, 300, 333, 28, 40, 28, 120, 62500, -90890, 248027, -3570, 0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (96, 'Arcana Lord', 0, 22, 27, 21, 41, 20, 39, 3, 54, 6, 41, 300, 333, 28, 40, 28, 120, 62500, -90890, 248027, -3570, 0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (97, 'Cardinal', 0, 22, 27, 21, 41, 20, 39, 3, 54, 6, 41, 300, 333, 28, 40, 28, 120, 62500, -90890, 248027, -3570, 0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (98, 'Hierophant', 0, 22, 27, 21, 41, 20, 39, 3, 54, 6, 41, 300, 333, 28, 40, 28, 120, 62500, -90890, 248027, -3570, 0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (99, 'Eva Templar', 1, 36, 36, 35, 23, 14, 26, 4, 80, 6, 41, 300, 333, 36, 46, 36, 125, 73000, 45978, 41196, -3440, 0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (100, 'Sword Muse', 1, 36, 36, 35, 23, 14, 26, 4, 80, 6, 41, 300, 333, 36, 46, 36, 125, 73000, 45978, 41196, -3440, 0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (101, 'Wind Rider', 1, 36, 36, 35, 23, 14, 26, 4, 80, 6, 41, 300, 333, 36, 46, 36, 125, 73000, 45978, 41196, -3440, 0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (102, 'Moonlight Sentinel', 1, 36, 36, 35, 23, 14, 26, 4, 80, 6, 41, 300, 333, 36, 46, 36, 125, 73000, 45978, 41196, -3440, 0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (103, 'Mystic Muse', 1, 21, 25, 24, 37, 23, 40, 3, 54, 6, 41, 300, 333, 30, 41, 30, 122, 62400, 46182, 41198, -3440, 0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (104, 'Elemental Master', 1, 21, 25, 24, 37, 23, 40, 3, 54, 6, 41, 300, 333, 30, 41, 30, 122, 62400, 46182, 41198, -3440, 0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (105, 'Eva Saint', 1, 21, 25, 24, 37, 23, 40, 3, 54, 6, 41, 300, 333, 30, 41, 30, 122, 62400, 46182, 41198, -3440, 0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (106, 'Shillien Templar', 2, 41, 32, 34, 25, 12, 26, 4, 80, 6, 41, 300, 333, 35, 45, 35, 122, 69000, 28377, 10916, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (107, 'Spectral Dancer', 2, 41, 32, 34, 25, 12, 26, 4, 80, 6, 41, 300, 333, 35, 45, 35, 122, 69000, 28377, 10916, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (108, 'Ghost Hunter', 2, 41, 32, 34, 25, 12, 26, 4, 80, 6, 41, 300, 333, 35, 45, 35, 122, 69000, 28377, 10916, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (109, 'Ghost Sentinel', 2, 41, 32, 34, 25, 12, 26, 4, 80, 6, 41, 300, 333, 35, 45, 35, 122, 69000, 28377, 10916, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5, 1147, 1146, 10, 2369, 5588);
-INSERT INTO `char_templates` VALUES (110, 'Storm Screamer', 2, 23, 24, 23, 44, 19, 37, 3, 54, 6, 41, 300, 333, 29, 41, 29, 122, 61000, 28295, 11063, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (111, 'Spectral Master', 2, 23, 24, 23, 44, 19, 37, 3, 54, 6, 41, 300, 333, 29, 41, 29, 122, 61000, 28295, 11063, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (112, 'Shillen Saint', 2, 23, 24, 23, 44, 19, 37, 3, 54, 6, 41, 300, 333, 29, 41, 29, 122, 61000, 28295, 11063, -4224, 0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5, 425, 461, 6, 5588, 0);
-INSERT INTO `char_templates` VALUES (113, 'Titan', 3, 40, 47, 26, 18, 12, 27, 4, 80, 6, 41, 300, 333, 31, 42, 31, 117, 87000, -56693, -113610, -690, 0, 1.06, 1.144800, 11.0, 28.0, 1.06, 1.144800, 7.0, 27.0, 1147, 1146, 2368, 2369, 5588);
-INSERT INTO `char_templates` VALUES (114, 'Grand Khauatari', 3, 40, 47, 26, 18, 12, 27, 4, 80, 6, 41, 300, 333, 31, 42, 31, 117, 87000, -56693, -113610, -690, 0, 1.06, 1.144800, 11.0, 28.0, 1.06, 1.144800, 7.0, 27.0, 1147, 1146, 2368, 2369, 5588);
-INSERT INTO `char_templates` VALUES (115, 'Dominator', 3, 27, 31, 24, 31, 15, 42, 3, 54, 6, 41, 300, 333, 30, 41, 30, 121, 68000, -56682, -113730, -690, 0, 1.04, 0.898560, 7.0, 27.5, 1.04, 0.898560, 8.0, 25.5, 425, 461, 2368, 5588, 0);
-INSERT INTO `char_templates` VALUES (116, 'Doomcryer', 3, 27, 31, 24, 31, 15, 42, 3, 54, 6, 41, 300, 333, 30, 41, 30, 121, 68000, -56682, -113730, -690, 0, 1.04, 0.898560, 7.0, 27.5, 1.04, 0.898560, 8.0, 25.5, 425, 461, 2368, 5588, 0);
-INSERT INTO `char_templates` VALUES (117, 'Fortune Seeker', 4, 39, 45, 29, 20, 10, 27, 4, 80, 6, 41, 300, 333, 33, 43, 33, 115, 83000, 108512, -174026, -400, 1, 1.09, 1.487196, 9.0, 18.0, 1.09, 1.487196, 5.0, 19.0, 1147, 1146, 10, 2370, 5588);
-INSERT INTO `char_templates` VALUES (118, 'Maestro', 4, 39, 45, 29, 20, 10, 27, 4, 80, 6, 41, 300, 333, 33, 43, 33, 115, 83000, 108512, -174026, -400, 1, 1.09, 1.487196, 9.0, 18.0, 1.09, 1.487196, 5.0, 19.0, 1147, 1146, 10, 2370, 5588);
\ No newline at end of file
+INSERT INTO `player_templates`
+(id, player_class, strength, constitution, dexterity, intelligence, witness, mentality, p_atk, p_def, m_atk, m_def, p_atk_spd, m_atk_spd, accuracy, crit_rate, evasion, run_spd, `_load`, hp, hp_add, hp_mod, cp, cp_add, cp_mod, mp, mp_add, mp_mod, x, y, z, can_craft, M_UNK1, M_UNK2, collision_radius, collision_height, F_UNK1, F_UNK2, f_collision_radius, f_collision_height, item1, item2, item3, item4, item5)
+VALUES
+ (0, 'FIGHTER',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900, 80.0, 11.83, 0.37, 32.0, 4.73, 0.22, 30.0, 5.46, 0.14,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (1, 'WARRIOR',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,327.0, 33.00, 0.37, 261.6, 26.40, 0.22, 144.0, 9.90, 0.14,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (2, 'GLADIATOR',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,1044.0, 49.40, 0.37, 939.6, 44.46, 0.22, 359.1, 19.50, 0.14,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (3, 'WARLORD',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,1044.0, 54.60, 0.37, 835.2, 43.68, 0.22, 359.1, 19.50, 0.14,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (4, 'KNIGHT',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,327.0, 29.70, 0.37, 196.2, 17.82, 0.22, 144.0, 9.90, 0.14,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (5, 'PALADIN',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,972.3, 46.80, 0.37, 583.3, 28.08, 0.22, 359.1, 19.50, 0.14,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (6, 'DARK_AVENGER',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,972.3, 46.80, 0.37, 583.3, 28.08, 0.22, 359.1, 19.50, 0.14,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (7, 'ROGUE',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,327.0, 27.50, 0.37, 130.8, 11.00, 0.22, 144.0, 9.90, 0.14,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (8, 'TREASURE_HUNTER',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,924.5, 41.60, 0.37, 369.8, 16.64, 0.22, 359.1, 19.50, 0.14,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (9, 'HAWKEYE',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,924.5, 44.20, 0.37, 647.1, 30.94, 0.22, 359.1, 19.50, 0.14,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (10, 'MAGE',22,27,21,41,20,39,3,54,6,41,300,333,28,40,28,120,62500,101.0, 15.57, 0.37, 50.5, 7.84, 0.22, 40.0, 7.38, 0.14,-90890,248027,-3570,0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5,425,461,6,5588, 0),
+ (11, 'WIZARD',22,27,21,41,20,39,3,54,6,41,300,333,28,40,28,120,62500,424.0, 27.60, 0.37, 212.0, 13.85, 0.22, 192.0, 13.30, 0.14,-90890,248027,-3570,0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5,425,461,6,5588, 0),
+ (12, 'SORCEROR',22,27,21,41,20,39,3,54,6,41,300,333,28,40,28,120,62500,1021.5, 45.60, 0.37, 510.7, 22.85, 0.22, 478.8, 26.10, 0.14,-90890,248027,-3570,0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5,425,461,6,5588, 0),
+ (13, 'NECROMANCER',22,27,21,41,20,39,3,54,6,41,300,333,28,40,28,120,62500,1021.5, 45.60, 0.37, 510.7, 22.85, 0.22, 478.8, 26.10, 0.14,-90890,248027,-3570,0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5,425,461,6,5588, 0),
+ (14, 'WARLOCK',22,27,21,41,20,39,3,54,6,41,300,333,28,40,28,120,62500,1021.5, 49.50, 0.37, 612.9, 29.74, 0.22, 478.8, 26.10, 0.14,-90890,248027,-3570,0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5,425,461,6,5588, 0),
+ (15, 'CLERIC',22,27,21,41,20,39,3,54,6,41,300,333,28,40,28,120,62500,424.0, 34.20, 0.37, 212.0, 17.15, 0.22, 192.0, 13.30, 0.14,-90890,248027,-3570,0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5,425,461,6,5588, 0),
+ (16, 'BISHOP',22,27,21,41,20,39,3,54,6,41,300,333,28,40,28,120,62500,1164.9, 49.50, 0.37, 815.4, 34.68, 0.22, 478.8, 26.10, 0.14,-90890,248027,-3570,0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5,425,461,6,5588, 0),
+ (17, 'PROPHET',22,27,21,41,20,39,3,54,6,41,300,333,28,40,28,120,62500,1164.9, 53.40, 0.37, 582.4, 26.75, 0.22, 478.8, 26.10, 0.14,-90890,248027,-3570,0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5,425,461,6,5588, 0),
+ (18, 'ELVEN_FIGHTER',36,36,35,23,14,26,4,80,6,41,300,333,36,46,36,125,73000,89.0, 12.74, 0.37, 35.6, 5.00, 0.22, 30.0, 5.46, 0.14,45978,41196,-3440,0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0,1147,1146,10,2369, 5588),
+ (19, 'ELVEN_KNIGHT',36,36,35,23,14,26,4,80,6,41,300,333,36,46,36,125,73000,355.0, 33.00, 0.37, 177.5, 16.50, 0.22, 144.0, 9.90, 0.14,45978,41196,-3440,0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0,1147,1146,10,2369, 5588),
+ (20, 'TEMPLE_KNIGHT',36,36,35,23,14,26,4,80,6,41,300,333,36,46,36,125,73000,1072.0, 52.00, 0.37, 643.2, 31.20, 0.22, 359.1, 19.50, 0.14,45978,41196,-3440,0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0,1147,1146,10,2369, 5588),
+ (21, 'SWORD_SINGER',36,36,35,23,14,26,4,80,6,41,300,333,36,46,36,125,73000,1072.0, 54.60, 0.37, 536.0, 27.30, 0.22, 359.1, 19.50, 0.14,45978,41196,-3440,0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0,1147,1146,10,2369, 5588),
+ (22, 'ELVEN_SCOUT',36,36,35,23,14,26,4,80,6,41,300,333,36,46,36,125,73000,355.0, 30.80, 0.37, 142.0, 12.32, 0.22, 144.0, 9.90, 0.14,45978,41196,-3440,0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0,1147,1146,10,2369, 5588),
+ (23, 'PLAINS_WALKER',36,36,35,23,14,26,4,80,6,41,300,333,36,46,36,125,73000,1024.2, 46.80, 0.37, 409.6, 18.72, 0.22, 359.1, 19.50, 0.14,45978,41196,-3440,0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0,1147,1146,10,2369, 5588),
+ (24, 'SILVER_RANGER',36,36,35,23,14,26,4,80,6,41,300,333,36,46,36,125,73000,1024.2, 49.40, 0.37, 512.1, 24.70, 0.22, 359.1, 19.50, 0.14,45978,41196,-3440,0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0,1147,1146,10,2369, 5588),
+ (25, 'ELVEN_MAGE',21,25,24,37,23,40,3,54,6,41,300,333,30,41,30,122,62400,104.0, 15.57, 0.37, 52.0, 7.84, 0.22, 40.0, 7.38, 0.14,46182,41198,-3440,0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0,425,461,6,5588, 0),
+ (26, 'ELVEN_WIZARD',21,25,24,37,23,40,3,54,6,41,300,333,30,41,30,122,62400,427.0, 28.70, 0.37, 213.5, 14.40, 0.22, 192.0, 13.30, 0.14,46182,41198,-3440,0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0,425,461,6,5588, 0),
+ (27, 'SPELLSINGER',21,25,24,37,23,40,3,54,6,41,300,333,30,41,30,122,62400,1048.4, 48.20, 0.37, 524.2, 24.15, 0.22, 478.8, 26.10, 0.14,46182,41198,-3440,0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0,425,461,6,5588, 0),
+ (28, 'ELEMENTAL_SUMMONER',21,25,24,37,23,40,3,54,6,41,300,333,30,41,30,122,62400,1048.4, 50.80, 0.37, 629.0, 30.52, 0.22, 478.8, 26.10, 0.14,46182,41198,-3440,0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0,425,461,6,5588, 0),
+ (29, 'ORACLE',21,25,24,37,23,40,3,54,6,41,300,333,30,41,30,122,62400,427.0, 35.30, 0.37, 213.5, 17.70, 0.22, 192.0, 13.30, 0.14,46182,41198,-3440,0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0,425,461,6,5588, 0),
+ (30, 'ELDER',21,25,24,37,23,40,3,54,6,41,300,333,30,41,30,122,62400,1191.8, 54.70, 0.37, 595.9, 27.40, 0.22, 478.8, 26.10, 0.14,46182,41198,-3440,0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0,425,461,6,5588, 0),
+ (31, 'DARK_FIGHTER',41,32,34,25,12,26,4,80,6,41,300,333,35,45,35,122,69000,94.0, 13.65, 0.37, 37.6, 5.46, 0.22, 30.0, 5.46, 0.14,28377,10916,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5,1147,1146,10,2369, 5588),
+ (32, 'PALUS_KNIGHT',41,32,34,25,12,26,4,80,6,41,300,333,35,45,35,122,69000,379.0, 35.20, 0.37, 189.5, 17.60, 0.22, 144.0, 9.90, 0.14,28377,10916,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5,1147,1146,10,2369, 5588),
+ (33, 'SHILLIEN_KNIGHT',41,32,34,25,12,26,4,80,6,41,300,333,35,45,35,122,69000,1143.8, 54.60, 0.37, 686.2, 32.76, 0.22, 359.1, 19.50, 0.14,28377,10916,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5,1147,1146,10,2369, 5588),
+ (34, 'BLADEDANCER',41,32,34,25,12,26,4,80,6,41,300,333,35,45,35,122,69000,1143.8, 58.50, 0.37, 571.9, 29.25, 0.22, 359.1, 19.50, 0.14,28377,10916,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5,1147,1146,10,2369, 5588),
+ (35, 'ASSASSIN',41,32,34,25,12,26,4,80,6,41,300,333,35,45,35,122,69000,379.0, 33.00, 0.37, 151.6, 13.20, 0.22, 144.0, 9.90, 0.14,28377,10916,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5,1147,1146,10,2369, 5588),
+ (36, 'ABYSS_WALKER',41,32,34,25,12,26,4,80,6,41,300,333,35,45,35,122,69000,1096.0, 49.40, 0.37, 438.4, 19.76, 0.22, 359.1, 19.50, 0.14,28377,10916,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5,1147,1146,10,2369, 5588),
+ (37, 'PHANTOM_RANGER',41,32,34,25,12,26,4,80,6,41,300,333,35,45,35,122,69000,1096.0, 52.00, 0.37, 548.0, 26.00, 0.22, 359.1, 19.50, 0.14,28377,10916,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5,1147,1146,10,2369, 5588),
+ (38, 'DARK_MAGE',23,24,23,44,19,37,3,54,6,41,300,333,29,41,29,122,61000,106.0, 15.57, 0.37, 53.0, 7.84, 0.22, 40.0, 7.38, 0.14,28295,11063,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5,425,461,6,5588, 0),
+ (39, 'DARK_WIZARD',23,24,23,44,19,37,3,54,6,41,300,333,29,41,29,122,61000,429.0, 29.80, 0.37, 214.5, 14.95, 0.22, 192.0, 13.30, 0.14,28295,11063,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5,425,461,6,5588, 0),
+ (40, 'SPELLHOWLER',23,24,23,44,19,37,3,54,6,41,300,333,29,41,29,122,61000,1074.3, 48.20, 0.37, 537.1, 24.15, 0.22, 478.8, 26.10, 0.14,28295,11063,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5,425,461,6,5588, 0),
+ (41, 'PHANTOM_SUMMONER',23,24,23,44,19,37,3,54,6,41,300,333,29,41,29,122,61000,1074.3, 52.10, 0.37, 644.5, 31.30, 0.22, 478.8, 26.10, 0.14,28295,11063,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5,425,461,6,5588, 0),
+ (42, 'SHILLIEN_ORACLE',23,24,23,44,19,37,3,54,6,41,300,333,29,41,29,122,61000,429.0, 36.40, 0.37, 214.5, 18.25, 0.22, 192.0, 13.30, 0.14,28295,11063,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5,425,461,6,5588, 0),
+ (43, 'SHILLEN_ELDER',23,24,23,44,19,37,3,54,6,41,300,333,29,41,29,122,61000,1217.7, 54.70, 0.37, 608.8, 27.40, 0.22, 478.8, 26.10, 0.14,28295,11063,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5,425,461,6,5588, 0),
+ (44, 'ORC_FIGHTER',40,47,26,18,12,27,4,80,6,41,300,333,31,42,31,117,87000,80.0, 12.64, 0.37, 40.0, 6.27, 0.22, 30.0, 5.36, 0.14,-56693,-113610,-690,0, 1.06, 1.144800, 11.0, 28.0, 1.06, 1.144800, 7.0, 27.0,1147,1146,2368,2369, 5588),
+ (45, 'ORC_RAIDER',40,47,26,18,12,27,4,80,6,41,300,333,31,42,31,117,87000,346.0, 35.10, 0.37, 242.2, 24.54, 0.22, 144.0, 9.80, 0.14,-56693,-113610,-690,0, 1.06, 1.144800, 11.0, 28.0, 1.06, 1.144800, 7.0, 27.0,1147,1146,2368,2369, 5588),
+ (46, 'DESTROYER',40,47,26,18,12,27,4,80,6,41,300,333,31,42,31,117,87000,1110.8, 57.10, 0.37, 777.5, 39.94, 0.22, 359.1, 19.40, 0.14,-56693,-113610,-690,0, 1.06, 1.144800, 11.0, 28.0, 1.06, 1.144800, 7.0, 27.0,1147,1146,2368,2369, 5588),
+ (47, 'ORC_MONK',40,47,26,18,12,27,4,80,6,41,300,333,31,42,31,117,87000,346.0, 32.90, 0.37, 173.0, 16.40, 0.22, 144.0, 9.80, 0.14,-56682,-113610,-690,0, 1.06, 1.144800, 11.0, 28.0, 1.06, 1.144800, 7.0, 27.0,1147,1146,2368,2369, 5588),
+ (48, 'TYRANT',40,47,26,18,12,27,4,80,6,41,300,333,31,42,31,117,87000,1063.0, 54.50, 0.37, 531.5, 27.20, 0.22, 359.1, 19.40, 0.14,-56693,-113610,-690,0, 1.06, 1.144800, 11.0, 28.0, 1.06, 1.144800, 7.0, 27.0,1147,1146,2368,2369, 5588),
+ (49, 'ORC_MAGE',27,31,24,31,15,42,3,54,6,41,300,333,30,41,30,121,68000,95.0, 15.47, 0.37, 47.5, 7.74, 0.22, 40.0, 7.28, 0.14,-56682,-113730,-690,0, 1.04, 0.898560, 7.0, 27.5, 1.04, 0.898560, 8.0, 25.5,425,461,2368,5588, 0),
+ (50, 'ORC_SHAMAN',27,31,24,31,15,42,3,54,6,41,300,333,30,41,30,121,68000,418.0, 35.20, 0.37, 209.0, 17.60, 0.22, 192.0, 13.20, 0.14,-56682,-113730,-690,0, 1.04, 0.898560, 7.0, 27.5, 1.04, 0.898560, 8.0, 25.5,425,461,2368,5588, 0),
+ (51, 'OVERLORD',27,31,24,31,15,42,3,54,6,41,300,333,30,41,30,121,68000,1182.8, 53.30, 0.37, 946.2, 42.64, 0.22, 478.8, 26.00, 0.14,-56682,-113730,-690,0, 1.04, 0.898560, 7.0, 27.5, 1.04, 0.898560, 8.0, 25.5,425,461,2368,5588, 0),
+ (52, 'WARCRYER',27,31,24,31,15,42,3,54,6,41,300,333,30,41,30,121,68000,1182.8, 53.30, 0.37, 591.4, 26.65, 0.22, 478.8, 26.00, 0.14,-56682,-113730,-690,0, 1.04, 0.898560, 7.0, 27.5, 1.04, 0.898560, 8.0, 25.5,425,461,2368,5588, 0),
+ (53, 'DWARVEN_FIGHTER',39,45,29,20,10,27,4,80,6,41,300,333,33,43,33,115,83000,80.0, 12.64, 0.37, 56.0, 8.82, 0.22, 30.0, 5.36, 0.14,108512,-174026,-400,1, 1.09, 1.487196, 9.0, 18.0, 1.09, 1.487196, 5.0, 19.0,1147,1146,10,2370, 5588),
+ (54, 'SCAVENGER',39,45,29,20,10,27,4,80,6,41,300,333,33,43,33,115,83000,346.0, 35.10, 0.37, 242.2, 24.54, 0.22, 144.0, 9.80, 0.14,108512,-174026,-400,1, 1.09, 1.487196, 9.0, 18.0, 1.09, 1.487196, 5.0, 19.0,1147,1146,10,2370, 5588),
+ (55, 'BOUNTY_HUNTER',39,45,29,20,10,27,4,80,6,41,300,333,33,43,33,115,83000,1110.8, 57.10, 0.37, 777.5, 39.94, 0.22, 359.1, 19.40, 0.14,108512,-174026,-400,1, 1.09, 1.487196, 9.0, 18.0, 1.09, 1.487196, 5.0, 19.0,1147,1146,10,2370, 5588),
+ (56, 'ARTISAN',39,45,29,20,10,27,4,80,6,41,300,333,33,43,33,115,83000,346.0, 32.90, 0.37, 276.8, 26.30, 0.22, 144.0, 9.80, 0.14,108512,-174026,-400,1, 1.09, 1.487196, 9.0, 18.0, 1.09, 1.487196, 5.0, 19.0,1147,1146,10,2370, 5588),
+ (57, 'WARSMITH',39,45,29,20,10,27,4,80,6,41,300,333,33,43,33,115,83000,1063.0, 54.50, 0.37, 850.4, 43.58, 0.22, 359.1, 19.40, 0.14,108512,-174026,-400,1, 1.09, 1.487196, 9.0, 18.0, 1.09, 1.487196, 5.0, 19.0,1147,1146,10,2370, 5588),
+ (88, 'DUELIST',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,3061.8, 63.08, 0.37, 2755.6, 56.77, 0.22, 1155.6, 24.90, 0.14 ,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (89, 'DREADNOUGHT',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,3274.2, 69.72, 0.37, 2619.3, 55.78, 0.22, 1155.6, 24.90, 0.14 ,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (90, 'PHOENIX_KNIGHT',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,2883.9, 59.76, 0.37, 1730.3, 35.86, 0.22, 1155.6, 24.90, 0.14 ,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (91, 'HELL_KNIGHT',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,2883.9, 59.76, 0.37, 1730.3, 35.86, 0.22, 1155.6, 24.90, 0.14 ,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (92, 'SAGITTARIUS',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,2729.9, 56.44, 0.37, 1910.9, 39.51, 0.22, 1155.6, 24.90, 0.14 ,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (93, 'ADVENTURER',40,43,30,21,11,25,4,80,6,41,300,333,33,44,33,115,81900,2623.7, 53.12, 0.37, 1049.4, 21.25, 0.22, 1155.6, 24.90, 0.14 ,-71338,258271,-3104,0, 1.10, 1.188000, 9.0, 23.0, 1.10, 1.188000, 8.0, 23.5,1147,1146,10,2369, 5588),
+ (94, 'ARCHMAGE',22,27,21,41,20,39,3,54,6,41,300,333,28,40,28,120,62500,2880.0, 58.10, 0.37, 1440.0, 29.05, 0.22, 1540.8, 33.20, 0.14 ,-90890,248027,-3570,0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5,425,461,6,5588, 0),
+ (95, 'SOULTAKER',22,27,21,41,20,39,3,54,6,41,300,333,28,40,28,120,62500,2880.0, 58.10, 0.37, 1440.0, 29.05, 0.22, 1540.8, 33.20, 0.14 ,-90890,248027,-3570,0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5,425,461,6,5588, 0),
+ (96, 'ARCANA_LORD',22,27,21,41,20,39,3,54,6,41,300,333,28,40,28,120,62500,3039.3, 63.08, 0.37, 1823.5, 37.85, 0.22, 1540.8, 33.20, 0.14 ,-90890,248027,-3570,0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5,425,461,6,5588, 0),
+ (97, 'CARDINAL',22,27,21,41,20,39,3,54,6,41,300,333,28,40,28,120,62500,3182.7, 63.08, 0.37, 2227.8, 44.16, 0.22, 1540.8, 33.20, 0.14 ,-90890,248027,-3570,0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5,425,461,6,5588, 0),
+ (98, 'HIEROPHANT',22,27,21,41,20,39,3,54,6,41,300,333,28,40,28,120,62500,3342.0, 68.06, 0.37, 1671.0, 34.03, 0.22, 1540.8, 33.20, 0.14 ,-90890,248027,-3570,0, 1.01, 0.872640, 7.5, 22.8, 1.01, 0.872640, 6.5, 22.5,425,461,6,5588, 0),
+ (99, 'EVA_TEMPLAR',36,36,35,23,14,26,4,80,6,41,300,333,36,46,36,125,73000,3196.0, 66.40, 0.37, 1917.6, 39.84, 0.22, 1155.6, 24.90, 0.14 ,45978,41196,-3440,0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0,1147,1146,10,2369, 5588),
+ (100, 'SWORD_MUSE',36,36,35,23,14,26,4,80,6,41,300,333,36,46,36,125,73000,3302.2, 69.72, 0.37, 1651.1, 34.86, 0.22, 1155.6, 24.90, 0.14 ,45978,41196,-3440,0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0,1147,1146,10,2369, 5588),
+ (101, 'WIND_RIDER',36,36,35,23,14,26,4,80,6,41,300,333,36,46,36,125,73000,2935.8, 59.76, 0.37, 1174.3, 23.90, 0.22, 1155.6, 24.90, 0.14 ,45978,41196,-3440,0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0,1147,1146,10,2369, 5588),
+ (102, 'MOONLIGHT_SENTINEL',36,36,35,23,14,26,4,80,6,41,300,333,36,46,36,125,73000,3042.0, 63.08, 0.37, 1521.0, 31.54, 0.22, 1155.6, 24.90, 0.14 ,45978,41196,-3440,0, 1.15, 1.242000, 7.5, 24.0, 1.15, 1.242000, 7.5, 23.0,1147,1146,10,2369, 5588),
+ (103, 'MYSTIC_MUSE',21,25,24,37,23,40,3,54,6,41,300,333,30,41,30,122,62400,3013.1, 61.42, 0.37, 1506.5, 30.71, 0.22, 1540.8, 33.20, 0.14 ,46182,41198,-3440,0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0,425,461,6,5588, 0),
+ (104, 'ELEMENTAL_MASTER',21,25,24,37,23,40,3,54,6,41,300,333,30,41,30,122,62400,3119.3, 64.74, 0.37, 1871.5, 38.84, 0.22, 1540.8, 33.20, 0.14 ,46182,41198,-3440,0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0,425,461,6,5588, 0),
+ (105, 'EVA_SAINT',21,25,24,37,23,40,3,54,6,41,300,333,30,41,30,122,62400,3422.0, 69.72, 0.37, 1711.0, 34.86, 0.22, 1540.8, 33.20, 0.14 ,46182,41198,-3440,0, 1.04, 0.898560, 7.5, 24.0, 1.04, 0.898560, 7.5, 23.0,425,461,6,5588, 0),
+ (106, 'SHILLIEN_TEMPLAR',41,32,34,25,12,26,4,80,6,41,300,333,35,45,35,122,69000,3374.0, 69.72, 0.37, 2024.4, 41.83, 0.22, 1155.6, 24.90, 0.14 ,28377,10916,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5,1147,1146,10,2369, 5588),
+ (107, 'SPECTRAL_DANCER',41,32,34,25,12,26,4,80,6,41,300,333,35,45,35,122,69000,3533.3, 74.70, 0.37, 1766.6, 37.35, 0.22, 1155.6, 24.90, 0.14 ,28377,10916,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5,1147,1146,10,2369, 5588),
+ (108, 'GHOST_HUNTER',41,32,34,25,12,26,4,80,6,41,300,333,35,45,35,122,69000,3113.8, 63.08, 0.37, 1245.5, 25.23, 0.22, 1155.6, 24.90, 0.14 ,28377,10916,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5,1147,1146,10,2369, 5588),
+ (109, 'GHOST_SENTINEL',41,32,34,25,12,26,4,80,6,41,300,333,35,45,35,122,69000,3220.0, 66.40, 0.37, 1610.0, 33.20, 0.22, 1155.6, 24.90, 0.14 ,28377,10916,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.14, 1.231200, 7.0, 23.5,1147,1146,10,2369, 5588),
+ (110, 'STORM_SCREAMER',23,24,23,44,19,37,3,54,6,41,300,333,29,41,29,122,61000,3039.0, 61.42, 0.37, 1519.5, 30.71, 0.22, 1540.8, 33.20, 0.14 ,28295,11063,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5,425,461,6,5588, 0),
+ (111, 'SPECTRAL_MASTER',23,24,23,44,19,37,3,54,6,41,300,333,29,41,29,122,61000,3198.3, 66.40, 0.37, 1918.9, 39.84, 0.22, 1540.8, 33.20, 0.14 ,28295,11063,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5,425,461,6,5588, 0),
+ (112, 'SHILLIEN_SAINT',23,24,23,44,19,37,3,54,6,41,300,333,29,41,29,122,61000,3447.9, 69.72, 0.37, 1723.9, 34.86, 0.22, 1540.8, 33.20, 0.14 ,28295,11063,-4224,0, 1.14, 1.231200, 7.5, 24.0, 1.03, 0.889920, 7.0, 23.5,425,461,6,5588, 0),
+ (113, 'TITAN',40,47,26,18,12,27,4,80,6,41,300,333,31,42,31,117,87000,3447.2, 72.94, 0.37, 2413.0, 51.03, 0.22, 1155.6, 24.80, 0.14 ,-56693,-113610,-690,0, 1.06, 1.144800, 11.0, 28.0, 1.06, 1.144800, 7.0, 27.0,1147,1146,2368,2369, 5588),
+ (114, 'GRAND_KHAUATARI',40,47,26,18,12,27,4,80,6,41,300,333,31,42,31,117,87000,3293.2, 69.62, 0.37, 1646.6, 34.76, 0.22, 1155.6, 24.80, 0.14 ,-56693,-113610,-690,0, 1.06, 1.144800, 11.0, 28.0, 1.06, 1.144800, 7.0, 27.0,1147,1146,2368,2369, 5588),
+ (115, 'DOMINATOR',27,31,24,31,15,42,3,54,6,41,300,333,30,41,30,121,68000,3359.9, 67.96, 0.37, 2687.9, 54.35, 0.22, 1540.8, 33.10, 0.14 ,-56682,-113730,-690,0, 1.04, 0.898560, 7.0, 27.5, 1.04, 0.898560, 8.0, 25.5,425,461,2368,5588, 0),
+ (116, 'DOOMCRYER',27,31,24,31,15,42,3,54,6,41,300,333,30,41,30,121,68000,3359.9, 67.96, 0.37, 1679.9, 33.93, 0.22, 1540.8, 33.10, 0.14 ,-56682,-113730,-690,0, 1.04, 0.898560, 7.0, 27.5, 1.04, 0.898560, 8.0, 25.5,425,461,2368,5588, 0),
+ (117, 'FORTUNE_SEEKER',39,45,29,20,10,27,4,80,6,41,300,333,33,43,33,115,83000,3447.2, 72.94, 0.37, 2413.0, 51.03, 0.22, 1155.6, 24.80, 0.14 ,108512,-174026,-400,1, 1.09, 1.487196, 9.0, 18.0, 1.09, 1.487196, 5.0, 19.0,1147,1146,10,2370, 5588),
+ (118, 'MAESTRO',39,45,29,20,10,27,4,80,6,41,300,333,33,43,33,115,83000,3293.2, 69.62, 0.37, 2634.5, 55.68, 0.22, 1155.6, 24.80, 0.14,108512,-174026,-400,1, 1.09, 1.487196, 9.0, 18.0, 1.09, 1.487196, 5.0, 19.0,1147,1146,10,2370, 5588);
\ No newline at end of file
diff --git a/Datapack/sql/character_friends.sql b/Datapack/sql/character_friends.sql
index 38bea944..167210e4 100644
--- a/Datapack/sql/character_friends.sql
+++ b/Datapack/sql/character_friends.sql
@@ -5,5 +5,6 @@ CREATE TABLE IF NOT EXISTS `character_friends` (
`char_id` INT NOT NULL default 0,
`friend_id` INT(11) NOT NULL DEFAULT 0,
`friend_name` VARCHAR(35) NOT NULL DEFAULT '',
- PRIMARY KEY (`char_id`,`friend_name`)
+ PRIMARY KEY (`char_id`,`friend_name`) ,
+ INDEX (char_id, friend_id)
);
diff --git a/Datapack/sql/character_hennas.sql b/Datapack/sql/character_hennas.sql
index c79909fa..07108b88 100644
--- a/Datapack/sql/character_hennas.sql
+++ b/Datapack/sql/character_hennas.sql
@@ -3,6 +3,8 @@ CREATE TABLE IF NOT EXISTS `character_hennas` (
`symbol_id` INT,
`slot` INT NOT NULL DEFAULT 0,
`class_index` INT(1) NOT NULL DEFAULT 0,
- PRIMARY KEY (`char_obj_id`,`slot`,`class_index`)
+ PRIMARY KEY (`char_obj_id`,`slot`,`class_index`),
+ INDEX (char_obj_id, class_index)
+
);
diff --git a/Datapack/sql/character_quests.sql b/Datapack/sql/character_quests.sql
index 6f760b47..848a8d38 100644
--- a/Datapack/sql/character_quests.sql
+++ b/Datapack/sql/character_quests.sql
@@ -7,5 +7,6 @@ CREATE TABLE IF NOT EXISTS `character_quests` (
`var` VARCHAR(20) NOT NULL DEFAULT '',
`value` VARCHAR(255) ,
`class_index` int(1) NOT NULL default '0',
- PRIMARY KEY (`char_id`,`name`,`var`,`class_index`)
+ PRIMARY KEY (`char_id`,`name`,`var`,`class_index`),
+ INDEX (char_id, var)
);
diff --git a/Datapack/sql/character_recipebook.sql b/Datapack/sql/character_recipebook.sql
index eba8d654..cf0c64de 100644
--- a/Datapack/sql/character_recipebook.sql
+++ b/Datapack/sql/character_recipebook.sql
@@ -5,5 +5,5 @@ CREATE TABLE IF NOT EXISTS character_recipebook (
char_id decimal(11) NOT NULL default 0,
id decimal(11) NOT NULL default 0,
type INT NOT NULL default 0,
- PRIMARY KEY (id,char_id)
+ PRIMARY KEY (char_id, id)
);
\ No newline at end of file
diff --git a/Datapack/sql/character_shortcuts.sql b/Datapack/sql/character_shortcuts.sql
index c7d68243..a7ee11d1 100644
--- a/Datapack/sql/character_shortcuts.sql
+++ b/Datapack/sql/character_shortcuts.sql
@@ -9,6 +9,5 @@ CREATE TABLE IF NOT EXISTS character_shortcuts (
shortcut_id decimal(16) ,
level varchar(4) ,
`class_index` int(1) NOT NULL default '0',
- PRIMARY KEY (char_obj_id,slot,page,`class_index`),
- KEY `shortcut_id` (`shortcut_id`)
+ PRIMARY KEY (char_obj_id, `class_index`, slot, page)
) ;
diff --git a/Datapack/sql/character_skills.sql b/Datapack/sql/character_skills.sql
index 582ddf55..17769bbc 100644
--- a/Datapack/sql/character_skills.sql
+++ b/Datapack/sql/character_skills.sql
@@ -6,6 +6,6 @@ CREATE TABLE IF NOT EXISTS character_skills (
skill_id INT NOT NULL default 0,
skill_level varchar(5) ,
skill_name varchar(40),
- `class_index` INT(1) NOT NULL DEFAULT 0,
- PRIMARY KEY (char_obj_id,skill_id,`class_index`)
+ `class_index` INT NOT NULL DEFAULT 0,
+ PRIMARY KEY (char_obj_id,`class_index`, skill_id)
) ;
diff --git a/Datapack/sql/character_skills_save.sql b/Datapack/sql/character_skills_save.sql
index 91afb145..2a41d688 100644
--- a/Datapack/sql/character_skills_save.sql
+++ b/Datapack/sql/character_skills_save.sql
@@ -11,5 +11,6 @@ CREATE TABLE IF NOT EXISTS character_skills_save (
restore_type INT(1) NOT NULL DEFAULT 0,
`class_index` INT(1) NOT NULL DEFAULT 0,
buff_index INT(2) NOT NULL default 0,
- PRIMARY KEY (char_obj_id,skill_id,`class_index`)
+ PRIMARY KEY (char_obj_id,`class_index`, skill_id),
+ INDEX (char_obj_id, class_index, restore_type)
) ;
\ No newline at end of file
diff --git a/Datapack/sql/character_subclasses.sql b/Datapack/sql/character_subclasses.sql
index 3a2a2195..625a5de2 100644
--- a/Datapack/sql/character_subclasses.sql
+++ b/Datapack/sql/character_subclasses.sql
@@ -8,5 +8,7 @@ CREATE TABLE IF NOT EXISTS `character_subclasses` (
`sp` decimal(11,0) NOT NULL default '0',
`level` int(2) NOT NULL default '40',
`class_index` int(1) NOT NULL default '0',
- PRIMARY KEY (`char_obj_id`,`class_id`)
+ PRIMARY KEY (`char_obj_id`,`class_id`),
+ INDEX (class_index, char_obj_id)
+
) ;
\ No newline at end of file
diff --git a/Datapack/sql/characters.sql b/Datapack/sql/characters.sql
index 80e90962..c1b636f8 100644
--- a/Datapack/sql/characters.sql
+++ b/Datapack/sql/characters.sql
@@ -2,10 +2,10 @@
-- Table structure for characters
-- ---------------------------
CREATE TABLE IF NOT EXISTS characters (
- account_name varchar(45) default NULL,
+ account_name varchar(45) NOT NULL,
obj_Id decimal(11,0) NOT NULL default '0',
char_name varchar(35) NOT NULL,
- `level` decimal(11,0) default NULL,
+ `level` decimal(11,0) default 1,
maxHp decimal(11,0) default NULL,
curHp decimal(18,0) default NULL,
maxCp decimal(11,0) default NULL,
@@ -80,5 +80,9 @@ CREATE TABLE IF NOT EXISTS characters (
clan_create_expiry_time DECIMAL(20,0) NOT NULL DEFAULT 0,
death_penalty_level int(2) NOT NULL DEFAULT 0,
PRIMARY KEY (obj_Id),
- KEY `clanid` (`clanid`)
+ INDEX (clanid, online),
+ INDEX (char_name),
+ INDEX (account_name, obj_Id),
+ INDEX (accesslevel)
+
) ;
diff --git a/Datapack/sql/clan_data.sql b/Datapack/sql/clan_data.sql
index 08fd6fc9..fbf6159b 100644
--- a/Datapack/sql/clan_data.sql
+++ b/Datapack/sql/clan_data.sql
@@ -2,11 +2,11 @@
-- Table structure for clan_data
-- ---------------------------
CREATE TABLE IF NOT EXISTS clan_data (
- clan_id INT NOT NULL default 0,
+ id INT NOT NULL default 0,
clan_name varchar(45) ,
clan_level INT,
- reputation_score INT NOT NULL default 0,
- hasCastle INT,
+ reputation INT NOT NULL default 0,
+ castle INT,
ally_id INT,
ally_name varchar(45),
leader_id INT,
@@ -18,7 +18,9 @@ CREATE TABLE IF NOT EXISTS clan_data (
ally_penalty_type DECIMAL( 1 ) NOT NULL DEFAULT 0,
char_penalty_expiry_time DECIMAL( 20,0 ) NOT NULL DEFAULT 0,
dissolving_expiry_time DECIMAL( 20,0 ) NOT NULL DEFAULT 0,
- PRIMARY KEY (clan_id),
- KEY `leader_id` (`leader_id`),
- KEY `ally_id` (`ally_id`)
+ PRIMARY KEY (id),
+ UNIQUE KEY `leader_id` (`leader_id`),
+ INDEX (`ally_id`),
+ INDEX (castle),
+ INDEX (auction_bid_at)
);
\ No newline at end of file
diff --git a/Datapack/sql/clan_privs.sql b/Datapack/sql/clan_privs.sql
index 512a3572..646ba6d8 100644
--- a/Datapack/sql/clan_privs.sql
+++ b/Datapack/sql/clan_privs.sql
@@ -1,6 +1,6 @@
CREATE TABLE IF NOT EXISTS clan_privs (
clan_id INT NOT NULL default 0,
- rank INT NOT NULL default 0,
+ `rank` INT NOT NULL default 0,
party INT NOT NULL default 0,
privs INT NOT NULL default 0,
PRIMARY KEY (`clan_id`,`rank`,`party`)
diff --git a/Datapack/sql/clan_wars.sql b/Datapack/sql/clan_wars.sql
index 19b0cb5c..8f0e579d 100644
--- a/Datapack/sql/clan_wars.sql
+++ b/Datapack/sql/clan_wars.sql
@@ -6,8 +6,10 @@ CREATE TABLE IF NOT EXISTS `clan_wars` (
`clan1` varchar(35) NOT NULL default '',
`clan2` varchar(35) NOT NULL default '',
`wantspeace1` decimal(1,0) NOT NULL default '0',
- `wantspeace2` decimal(1,0) NOT NULL default '0'
-) ENGINE=MyISAM;
+ `wantspeace2` decimal(1,0) NOT NULL default '0',
+ PRIMARY KEY (clan1, clan2),
+ INDEX(clan2)
+);
diff --git a/Datapack/sql/clanhall.sql b/Datapack/sql/clanhall.sql
index 1d49709f..3726993a 100644
--- a/Datapack/sql/clanhall.sql
+++ b/Datapack/sql/clanhall.sql
@@ -1,63 +1,66 @@
-- ---------------------------
-- Table structure for clanhall
-- ---------------------------
+DROP TABLE IF EXISTS `clanhall` ;
+
CREATE TABLE IF NOT EXISTS `clanhall` (
- `id` int(11) NOT NULL default '0',
- `name` varchar(40) NOT NULL default '',
- `ownerId` int(11) NOT NULL default '0',
- `lease` int(10) NOT NULL default '0',
- `desc` text NOT NULL,
- `location` varchar(15) NOT NULL default '',
- `paidUntil` decimal(20,0) NOT NULL default '0',
- `Grade` decimal(1,0) NOT NULL default '0',
- `paid` int( 1 ) NOT NULL default '0',
- PRIMARY KEY `id` (`id`)
+ `id` INT(11) NOT NULL DEFAULT '0',
+ `name` VARCHAR(40) NOT NULL DEFAULT '',
+ `ownerId` INT(11) NOT NULL DEFAULT '0',
+ `lease` INT(10) NOT NULL DEFAULT '0',
+ description TEXT NOT NULL,
+ `location` VARCHAR(15) NOT NULL DEFAULT '',
+ `paidUntil` DECIMAL(20,0) NOT NULL DEFAULT '0',
+ `Grade` DECIMAL(1,0) NOT NULL DEFAULT '0',
+ `paid` BOOL NOT NULL DEFAULT false,
+ PRIMARY KEY (`id`)
);
-- ----------------------------
-- Records
-- ----------------------------
-INSERT IGNORE INTO `clanhall` VALUES ('21','Fortress of Resistance','0','100000','Ol Mahum Fortress of Resistance','Dion','0','0','0');
-INSERT IGNORE INTO `clanhall` VALUES ('22','Moonstone Hall','0','100000','Clan hall located in the Town of Gludio','Gludio','0','2','0');
-INSERT IGNORE INTO `clanhall` VALUES ('23','Onyx Hall','0','100000','Clan hall located in the Town of Gludio','Gludio','0','2','0');
-INSERT IGNORE INTO `clanhall` VALUES ('24','Topaz Hall','0','100000','Clan hall located in the Town of Gludio','Gludio','0','2','0');
-INSERT IGNORE INTO `clanhall` VALUES ('25','Ruby Hall','0','100000','Clan hall located in the Town of Gludio','Gludio','0','2','0');
-INSERT IGNORE INTO `clanhall` VALUES ('26','Crystal Hall','0','100000','Clan hall located in Gludin Village','Gludin','0','2','0');
-INSERT IGNORE INTO `clanhall` VALUES ('27','Onyx Hall','0','100000','Clan hall located in Gludin Village','Gludin','0','2','0');
-INSERT IGNORE INTO `clanhall` VALUES ('28','Sapphire Hall','0','100000','Clan hall located in Gludin Village','Gludin','0','2','0');
-INSERT IGNORE INTO `clanhall` VALUES ('29','Moonstone Hall','0','100000','Clan hall located in Gludin Village','Gludin','0','2','0');
-INSERT IGNORE INTO `clanhall` VALUES ('30','Emerald Hall','0','100000','Clan hall located in Gludin Village','Gludin','0','2','0');
-INSERT IGNORE INTO `clanhall` VALUES ('31','The Atramental Barracks','0','100000','Clan hall located in the Town of Dion','Dion','0','1','0');
-INSERT IGNORE INTO `clanhall` VALUES ('32','The Scarlet Barracks','0','100000','Clan hall located in the Town of Dion','Dion','0','1','0');
-INSERT IGNORE INTO `clanhall` VALUES ('33','The Viridian Barracks','0','100000','Clan hall located in the Town of Dion','Dion','0','1','0');
-INSERT IGNORE INTO `clanhall` VALUES ('34','Devastated Castle','0','100000','Contestable Clan Hall','Aden','0','0','0');
-INSERT IGNORE INTO `clanhall` VALUES ('35','Bandit Stronghold','0','100000','Contestable Clan Hall','Oren','0','0','0');
-INSERT IGNORE INTO `clanhall` VALUES ('36','The Golden Chamber','0','100000','Clan hall located in the Town of Aden','Aden','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('37','The Silver Chamber','0','100000','Clan hall located in the Town of Aden','Aden','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('38','The Mithril Chamber','0','100000','Clan hall located in the Town of Aden','Aden','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('39','Silver Manor','0','100000','Clan hall located in the Town of Aden','Aden','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('40','Gold Manor','0','100000','Clan hall located in the Town of Aden','Aden','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('41','The Bronze Chamber','0','100000','Clan hall located in the Town of Aden','Aden','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('42','The Golden Chamber','0','100000','Clan hall located in the Town of Giran','Giran','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('43','The Silver Chamber','0','100000','Clan hall located in the Town of Giran','Giran','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('44','The Mithril Chamber','0','100000','Clan hall located in the Town of Giran','Giran','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('45','The Bronze Chamber','0','100000','Clan hall located in the Town of Giran','Giran','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('46','Silver Manor','0','100000','Clan hall located in the Town of Giran','Giran','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('47','Moonstone Hall','0','100000','Clan hall located in the Town of Goddard','Goddard','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('48','Onyx Hall','0','100000','Clan hall located in the Town of Goddard','Goddard','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('49','Emerald Hall','0','100000','Clan hall located in the Town of Goddard','Goddard','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('50','Sapphire Hall','0','100000','Clan hall located in the Town of Goddard','Goddard','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('51','Mont Chamber','0','100000','An upscale Clan hall located in the Rune Township','Rune','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('52','Astaire Chamber','0','100000','An upscale Clan hall located in the Rune Township','Rune','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('53','Aria Chamber','0','100000','An upscale Clan hall located in the Rune Township','Rune','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('54','Yiana Chamber','0','100000','An upscale Clan hall located in the Rune Township','Rune','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('55','Roien Chamber','0','100000','An upscale Clan hall located in the Rune Township','Rune','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('56','Luna Chamber','0','100000','An upscale Clan hall located in the Rune Township','Rune','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('57','Traban Chamber','0','100000','An upscale Clan hall located in the Rune Township','Rune','0','3','0');
-INSERT IGNORE INTO `clanhall` VALUES ('58','Eisen Hall','0','100000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0');
-INSERT IGNORE INTO `clanhall` VALUES ('59','Heavy Metal Hall','0','100000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0');
-INSERT IGNORE INTO `clanhall` VALUES ('60','Molten Ore Hall','0','100000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0');
-INSERT IGNORE INTO `clanhall` VALUES ('61','Titan Hall','0','100000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0');
-INSERT IGNORE INTO `clanhall` VALUES ('62','Rainbow Springs','0','100000','','Goddard','0','0','0');
-INSERT IGNORE INTO `clanhall` VALUES ('63','Beast Farm','0','100000','','Rune','0','0','0');
-INSERT IGNORE INTO `clanhall` VALUES ('64','Fortress of the Dead','0','100000','','Rune','0','0','0');
\ No newline at end of file
+INSERT IGNORE INTO `clanhall` VALUE
+('21','Fortress of Resistance','0','100000','Ol Mahum Fortress of Resistance','Dion','0','0',false),
+('22','Moonstone Hall','0','100000','Clan hall located in the Town of Gludio','Gludio','0','2',false),
+('23','Onyx Hall','0','100000','Clan hall located in the Town of Gludio','Gludio','0','2',false),
+('24','Topaz Hall','0','100000','Clan hall located in the Town of Gludio','Gludio','0','2',false),
+('25','Ruby Hall','0','100000','Clan hall located in the Town of Gludio','Gludio','0','2',false),
+('26','Crystal Hall','0','100000','Clan hall located in Gludin Village','Gludin','0','2',false),
+('27','Onyx Hall','0','100000','Clan hall located in Gludin Village','Gludin','0','2',false),
+('28','Sapphire Hall','0','100000','Clan hall located in Gludin Village','Gludin','0','2',false),
+('29','Moonstone Hall','0','100000','Clan hall located in Gludin Village','Gludin','0','2',false),
+('30','Emerald Hall','0','100000','Clan hall located in Gludin Village','Gludin','0','2',false),
+('31','The Atramental Barracks','0','100000','Clan hall located in the Town of Dion','Dion','0','1',false),
+('32','The Scarlet Barracks','0','100000','Clan hall located in the Town of Dion','Dion','0','1',false),
+('33','The Viridian Barracks','0','100000','Clan hall located in the Town of Dion','Dion','0','1',false),
+('34','Devastated Castle','0','100000','Contestable Clan Hall','Aden','0','0',false),
+('35','Bandit Stronghold','0','100000','Contestable Clan Hall','Oren','0','0',false),
+('36','The Golden Chamber','0','100000','Clan hall located in the Town of Aden','Aden','0','3',false),
+('37','The Silver Chamber','0','100000','Clan hall located in the Town of Aden','Aden','0','3',false),
+('38','The Mithril Chamber','0','100000','Clan hall located in the Town of Aden','Aden','0','3',false),
+('39','Silver Manor','0','100000','Clan hall located in the Town of Aden','Aden','0','3',false),
+('40','Gold Manor','0','100000','Clan hall located in the Town of Aden','Aden','0','3',false),
+('41','The Bronze Chamber','0','100000','Clan hall located in the Town of Aden','Aden','0','3',false),
+('42','The Golden Chamber','0','100000','Clan hall located in the Town of Giran','Giran','0','3',false),
+('43','The Silver Chamber','0','100000','Clan hall located in the Town of Giran','Giran','0','3',false),
+('44','The Mithril Chamber','0','100000','Clan hall located in the Town of Giran','Giran','0','3',false),
+('45','The Bronze Chamber','0','100000','Clan hall located in the Town of Giran','Giran','0','3',false),
+('46','Silver Manor','0','100000','Clan hall located in the Town of Giran','Giran','0','3',false),
+('47','Moonstone Hall','0','100000','Clan hall located in the Town of Goddard','Goddard','0','3',false),
+('48','Onyx Hall','0','100000','Clan hall located in the Town of Goddard','Goddard','0','3',false),
+('49','Emerald Hall','0','100000','Clan hall located in the Town of Goddard','Goddard','0','3',false),
+('50','Sapphire Hall','0','100000','Clan hall located in the Town of Goddard','Goddard','0','3',false),
+('51','Mont Chamber','0','100000','An upscale Clan hall located in the Rune Township','Rune','0','3',false),
+('52','Astaire Chamber','0','100000','An upscale Clan hall located in the Rune Township','Rune','0','3',false),
+('53','Aria Chamber','0','100000','An upscale Clan hall located in the Rune Township','Rune','0','3',false),
+('54','Yiana Chamber','0','100000','An upscale Clan hall located in the Rune Township','Rune','0','3',false),
+('55','Roien Chamber','0','100000','An upscale Clan hall located in the Rune Township','Rune','0','3',false),
+('56','Luna Chamber','0','100000','An upscale Clan hall located in the Rune Township','Rune','0','3',false),
+('57','Traban Chamber','0','100000','An upscale Clan hall located in the Rune Township','Rune','0','3',false),
+('58','Eisen Hall','0','100000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2',false),
+('59','Heavy Metal Hall','0','100000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2',false),
+('60','Molten Ore Hall','0','100000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2',false),
+('61','Titan Hall','0','100000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2',false),
+('62','Rainbow Springs','0','100000','','Goddard','0','0',false),
+('63','Beast Farm','0','100000','','Rune','0','0',false),
+('64','Fortress of the Dead','0','100000','','Rune','0','0',false);
\ No newline at end of file
diff --git a/Datapack/sql/class_list.sql b/Datapack/sql/class_list.sql
deleted file mode 100644
index e5b7d867..00000000
--- a/Datapack/sql/class_list.sql
+++ /dev/null
@@ -1,105 +0,0 @@
-#----------------------------
-# Table structure for class_list
-#----------------------------
-DROP TABLE IF EXISTS class_list;
-CREATE TABLE `class_list` (
- `class_name` varchar(19) NOT NULL default '',
- `id` int(10) unsigned NOT NULL default '0',
- `parent_id` int(11) NOT NULL default '0',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM;
-#----------------------------
-# Records for table class_list
-#----------------------------
-
-
-INSERT INTO `class_list` VALUES
-('H_Fighter', 0, -1),
-('H_Warrior', 1, 0),
-('H_Gladiator', 2, 1),
-('H_Duelist', 88, 2),
-('H_Warlord', 3, 1),
-('H_Dreadnought', 89, 3),
-('H_Knight', 4, 0),
-('H_Paladin', 5, 4),
-('H_PhoenixKnight', 90, 5),
-('H_DarkAvenger', 6, 4),
-('H_HellKnight', 91, 6),
-('H_Rogue', 7, 0),
-('H_TreasureHunter', 8, 7),
-('H_Adventurer', 93, 8),
-('H_Hawkeye', 9, 7),
-('H_Sagittarius', 92, 9),
-('H_Mage', 10, -1),
-('H_Wizard', 11, 10),
-('H_Sorceror', 12, 11),
-('H_Archmage', 94, 12),
-('H_Necromancer', 13, 11),
-('H_Soultaker', 95, 13),
-('H_Warlock', 14, 11),
-('H_ArcanaLord', 96, 14),
-('H_Cleric', 15, 10),
-('H_Bishop', 16, 15),
-('H_Cardinal', 97, 16),
-('H_Prophet', 17, 15),
-('H_Hierophant', 98, 17),
-('E_Fighter', 18, -1),
-('E_Knight', 19, 18),
-('E_TempleKnight', 20, 19),
-('E_EvaTemplar', 99, 20),
-('E_SwordSinger', 21, 19),
-('E_SwordMuse', 100, 21),
-('E_Scout', 22, 18),
-('E_PlainsWalker', 23, 22),
-('E_WindRider', 101, 23),
-('E_SilverRanger', 24, 22),
-('E_MoonlightSentinel', 102, 24),
-('E_Mage', 25, -1),
-('E_Wizard', 26, 25),
-('E_SpellSinger', 27, 26),
-('E_MysticMuse', 103, 27),
-('E_ElementalSummoner', 28, 26),
-('E_ElementalMaster', 104, 28),
-('E_Oracle', 29, 25),
-('E_Elder', 30, 29),
-('E_EvaSaint', 105, 30),
-('DE_Fighter', 31, -1),
-('DE_PaulusKnight', 32, 31),
-('DE_ShillienKnight', 33, 32),
-('DE_ShillienTemplar', 106, 33),
-('DE_BladeDancer', 34, 32),
-('DE_SpectralDancer', 107, 34),
-('DE_Assassin', 35, 31),
-('DE_AbyssWalker', 36, 35),
-('DE_GhostHunter', 108, 36),
-('DE_PhantomRanger', 37, 35),
-('DE_GhostSentinel', 109, 37),
-('DE_Mage', 38, -1),
-('DE_DarkWizard', 39, 38),
-('DE_Spellhowler', 40, 39),
-('DE_StormScreamer', 110, 40),
-('DE_PhantomSummoner', 41, 39),
-('DE_SpectralMaster', 111, 41),
-('DE_ShillienOracle', 42, 38),
-('DE_ShillienElder', 43, 42),
-('DE_ShillienSaint', 112, 43),
-('O_Fighter', 44, -1),
-('O_Raider', 45, 44),
-('O_Destroyer', 46, 45),
-('O_Titan', 113, 46),
-('O_Monk', 47, 44),
-('O_Tyrant', 48, 47),
-('O_GrandKhauatari', 114, 48),
-('O_Mage', 49, -1),
-('O_Shaman', 50, 49),
-('O_Overlord', 51, 50),
-('O_Dominator', 115, 51),
-('O_Warcryer', 52, 50),
-('O_Doomcryer', 116, 52),
-('D_Fighter', 53, -1),
-('D_Scavenger', 54, 53),
-('D_BountyHunter', 55, 54),
-('D_FortuneSeeker', 117, 55),
-('D_Artisan', 56, 53),
-('D_Warsmith', 57, 56),
-('D_Maestro', 118, 57);
\ No newline at end of file
diff --git a/Datapack/sql/cursed_weapons.sql b/Datapack/sql/cursed_weapons.sql
index 9cf74777..1c1ccf6f 100644
--- a/Datapack/sql/cursed_weapons.sql
+++ b/Datapack/sql/cursed_weapons.sql
@@ -8,5 +8,6 @@ CREATE TABLE IF NOT EXISTS `cursed_weapons` (
`playerPkKills` INT DEFAULT 0,
`nbKills` INT DEFAULT 0,
`endTime` DECIMAL(20,0) DEFAULT 0,
- PRIMARY KEY (`itemId`)
-) ENGINE=MyISAM;
+ PRIMARY KEY (`itemId`),
+ INDEX (playerId)
+);
diff --git a/Datapack/sql/dimensional_rift.sql b/Datapack/sql/dimensional_rift.sql
index 1c2b01ea..23b03a2b 100644
--- a/Datapack/sql/dimensional_rift.sql
+++ b/Datapack/sql/dimensional_rift.sql
@@ -3,8 +3,8 @@
-- ----------------------------
DROP TABLE IF EXISTS `dimensional_rift`;
CREATE TABLE `dimensional_rift` (
- `type` tinyint(1) NOT NULL,
- `room_id` tinyint(1) NOT NULL,
+ `type` tinyint(2) NOT NULL,
+ `room_id` tinyint(2) NOT NULL,
`xMin` int(11) NOT NULL,
`xMax` int(11) NOT NULL,
`yMin` int(11) NOT NULL,
@@ -16,7 +16,7 @@ CREATE TABLE `dimensional_rift` (
`zT` int(11) NOT NULL,
`boss` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`type`,`room_id`)
-) DEFAULT CHARSET=utf8;
+);
-- ----------------------------
-- Records for table dimensional_rift
diff --git a/Datapack/sql/droplist.sql b/Datapack/sql/droplist.sql
index aaf0a7d8..4b2ee276 100644
--- a/Datapack/sql/droplist.sql
+++ b/Datapack/sql/droplist.sql
@@ -31,8 +31,8 @@ CREATE TABLE `droplist` (
`category` INT NOT NULL DEFAULT '0',
`chance` INT NOT NULL DEFAULT '0',
PRIMARY KEY (`mobId`,`itemId`,`category`),
- KEY `key_mobId` (`mobId`)
-) ENGINE=MyISAM;
+ INDEX (`mobId`)
+);
--
-- Dumping data for table `droplist`
diff --git a/Datapack/sql/enchant_skill_trees.sql b/Datapack/sql/enchant_skill_trees.sql
index 4bd6c9d3..b239def1 100644
--- a/Datapack/sql/enchant_skill_trees.sql
+++ b/Datapack/sql/enchant_skill_trees.sql
@@ -12,7 +12,7 @@ CREATE TABLE `enchant_skill_trees` (
`success_rate77` int(3) NOT NULL default '0',
`success_rate78` int(3) NOT NULL default '0',
PRIMARY KEY (`skill_id`,`level`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+);
INSERT INTO enchant_skill_trees VALUES
diff --git a/Datapack/sql/etcitem.sql b/Datapack/sql/etcitem.sql
index 56293a63..32ab99fc 100644
--- a/Datapack/sql/etcitem.sql
+++ b/Datapack/sql/etcitem.sql
@@ -1,6912 +1,6906 @@
--
-- Table structure for table `etcitem`
--
-
DROP TABLE IF EXISTS `etcitem`;
CREATE TABLE `etcitem` (
- `item_id` decimal(11,0) NOT NULL default '0',
- `name` varchar(100) default NULL,
- `crystallizable` varchar(5) default NULL,
- `item_type` varchar(15) default NULL,
- `weight` decimal(4,0) default NULL,
- `consume_type` varchar(9) default NULL,
- `material` varchar(11) default NULL,
- `crystal_type` varchar(4) default NULL,
- `duration` decimal(3,0) default NULL,
- `price` decimal(11,0) default NULL,
- `crystal_count` int(4) default NULL,
- `sellable` varchar(5) default NULL,
- `dropable` varchar(5) default NULL,
- `destroyable` varchar(5) default NULL,
- `tradeable` varchar(5) default NULL,
- `oldname` varchar(100) NOT NULL default '',
- `oldtype` varchar(100) NOT NULL default '',
- PRIMARY KEY (`item_id`)
-) ENGINE=MyISAM;
+ `item_id` decimal(11,0) NOT NULL DEFAULT '0',
+ `name` varchar(100) DEFAULT NULL,
+ `crystallizable` BOOL NOT NULL DEFAULT TRUE,
+ `item_type` ENUM ('ARROW', 'OTHER', 'POTION', 'QUEST', 'SCROLL', 'SPELL_BOOK', 'SHOT', 'RECIPE', 'MATERIAL' , 'PET_COLLAR' , 'CASTLE_GUARD', 'LOTTO', 'RACE_TICKET', 'DYE', 'SEED', 'HARVEST', 'TICKET_OF_LORD', 'LURE', 'HERB') NOT NULL DEFAULT 'OTHER',
+ `weight` decimal(4,0) DEFAULT NULL,
+ `consume_type` ENUM('STACKABLE', 'ASSET', 'NORMAL') NOT NULL DEFAULT 'NORMAL',
+ `crystal_type` ENUM('NONE', 'D', 'C', 'B', 'A', 'S') NOT NULL,
+ `duration` decimal(3,0) DEFAULT NULL,
+ `price` decimal(11,0) DEFAULT NULL,
+ `crystal_count` int(4) DEFAULT NULL,
+ `sellable` BOOL NOT NULL DEFAULT TRUE,
+ `dropable` BOOL NOT NULL DEFAULT TRUE,
+ `destroyable` BOOL NOT NULL DEFAULT TRUE,
+ `tradeable` BOOL NOT NULL DEFAULT TRUE,
+ PRIMARY KEY (`item_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `etcitem`
---
-INSERT INTO `etcitem` (`item_id`,`name`,`crystallizable`,`item_type`,`weight`,`consume_type`,`material`,`crystal_type`,`duration`,`price`,`crystal_count`,`sellable`,`dropable`,`destroyable`,`tradeable`,`oldname`,`oldtype`) VALUES
- ('17','Wooden Arrow','false','arrow','6','stackable','wood','none','-1','2','0','true','true','true','true','wooden_arrow','arrow'),
- ('57','Adena','false','none','0','asset','gold','none','-1','1','0','true','true','true','true','adena','none'),
- ('65','Red Potion','false','potion','80','stackable','liquid','none','-1','40','0','true','true','true','true','red_potion','potion'),
- ('686','Chair','false','none','100','normal','wood','none','-1','1000','0','true','true','true','true','chair_item','none'),
- ('687','Darin\'s Letter','false','quest','0','normal','paper','none','-1','0','0','false','false','true','false','darings_letter','none'),
- ('688','Roxxy\'s Kerchief','false','quest','0','normal','cloth','none','-1','0','0','false','false','true','false','rapunzels_kerchief','none'),
- ('689','Poetry Book','false','quest','0','normal','paper','none','-1','0','0','false','false','true','false','poetry_book','none'),
- ('690','Lyrics Book','false','quest','0','normal','paper','none','-1','0','0','false','false','true','false','lyrics_book','none'),
- ('691','Romance Novel','false','quest','0','normal','paper','none','-1','0','0','false','false','true','false','romance_novel','none'),
- ('692','Arujien\'s Letter','false','quest','0','normal','paper','none','-1','0','0','false','false','true','false','arujiens_letter','none'),
- ('693','Greenis\'s Letter','false','quest','0','normal','paper','none','-1','0','0','false','false','true','false','greenis_letter','none'),
- ('694','Ingredient List','false','quest','0','normal','paper','none','-1','0','0','false','false','true','false','talos_list','none'),
- ('695','Omen Beast\'s Blood','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','onyx_beast_blood','none'),
- ('696','Mana Seeker\'s Husk','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mana_vampire_husk','none'),
- ('697','Gargoyle\'s Horn','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gargoyle_horn','none'),
- ('698','Gilbert\'s List','false','quest','0','normal','steel','none','-1','0','0','false','false','true','false','gilberts_list','none'),
- ('699','Orc\'s Nose','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','orc_nose','none'),
- ('700','Hobgoblin Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_hobgoblin_amulet','none'),
- ('701','Fungus Juice','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fungus_juice','none'),
- ('702','Wolf Pelt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wolf_pelt','none'),
- ('703','Poison Sac','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','poison_sac','none'),
- ('704','Fever Medicine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fever_medicine','none'),
- ('705','Orc\'s Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_orc_amulet','none'),
- ('706','Basilisk\'s Claw','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','basilisk_claw','none'),
- ('707','Spore Sac','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fungus_sac','none'),
- ('708','Sylph Headband','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sylph_headband','none'),
- ('709','Leather Shirt','false','none','400','normal','leather','none','-1','0','0','false','false','true','false','sek_temp_upper001','none'),
- ('710','Hard Leather Shirt','false','none','400','normal','leather','none','-1','0','0','false','false','true','false','sek_temp_upper002','none'),
- ('711','Piece Bone Breastplate','false','none','800','normal','bone','none','-1','0','0','false','false','true','false','sek_temp_upper003','none'),
- ('712','Half Plate Armor','false','none','1200','normal','steel','none','-1','0','0','false','false','true','false','sek_temp_upper004','none'),
- ('713','Leather Pants','false','none','250','normal','leather','none','-1','0','0','false','false','true','false','sek_temp_lower001','none'),
- ('714','Hard Leather Pants','false','none','300','normal','leather','none','-1','0','0','false','false','true','false','sek_temp_lower002','none'),
- ('715','Piece Bone Gaiters','false','none','500','normal','bone','none','-1','0','0','false','false','true','false','sek_temp_lower003','none'),
- ('716','Plate Gaiters','false','none','800','normal','steel','none','-1','0','0','false','false','true','false','sek_temp_lower004','none'),
- ('717','Leather Gloves','false','none','100','normal','leather','none','-1','0','0','false','false','true','false','sek_temp_glove001','none'),
- ('718','Hard Leather Gloves','false','none','150','normal','leather','none','-1','0','0','false','false','true','false','sek_temp_glove002','none'),
- ('719','Crafted Leather Gloves','false','none','150','normal','leather','none','-1','0','0','false','false','true','false','sek_temp_glove003','none'),
- ('720','Reinforced Gloves','false','none','200','normal','steel','none','-1','0','0','false','false','true','false','sek_temp_glove004','none'),
- ('721','Leather Boots','false','none','150','normal','leather','none','-1','0','0','false','false','true','false','sek_temp_boots001','none'),
- ('722','Hard Leather Boots','false','none','150','normal','leather','none','-1','0','0','false','false','true','false','sek_temp_boots002','none'),
- ('723','Crafted Leather Boots','false','none','200','normal','leather','none','-1','0','0','false','false','true','false','sek_temp_boots003','none'),
- ('724','Reinforced Boots','false','none','250','normal','steel','none','-1','0','0','false','false','true','false','sek_temp_boots004','none'),
- ('725','Healing Drug','false','potion','180','stackable','liquid','none','-1','50','0','true','true','true','true','healing_drug','potion'),
- ('726','Mana Drug','false','potion','180','stackable','liquid','none','-1','80','0','true','true','true','true','mana_drug','potion'),
- ('727','Healing Potion','false','potion','180','stackable','liquid','none','-1','80','0','true','true','true','true','_healing_potion','potion'),
- ('728','Mana Potion','false','potion','180','stackable','liquid','none','-1','2000','0','true','true','true','true','mana_potion','potion'),
- ('729','Scroll: Enchant Weapon (Grade A)','false','scroll','120','normal','paper','none','-1','1800000','0','true','true','true','true','scrl_of_ench_wp_a','scroll'),
- ('730','Scroll: Enchant Armor (Grade A)','false','scroll','120','normal','paper','none','-1','240000','0','true','true','true','true','scrl_of_ench_am_a','scroll'),
- ('731','Crystal Scroll: Enchant Weapon (Grade A)','false','scroll','120','normal','paper','none','-1','240000','0','true','true','true','true','cry_scrl_of_ench_wp_a','scroll'),
- ('732','Crystal Scroll: Enchant Armor (Grade A)','false','scroll','120','normal','paper','none','-1','240000','0','true','true','true','true','cry_scrl_of_ench_am_a','scroll'),
- ('733','Endeavor Potion','false','potion','180','stackable','liquid','none','-1','500','0','true','true','true','true','endeavor_potion','potion'),
- ('734','Haste Potion','false','potion','20','stackable','liquid','none','-1','1200','0','true','true','true','true','quick_step_potion','potion'),
- ('735','Potion of Alacrity','false','potion','20','stackable','liquid','none','-1','2400','0','true','true','true','true','swift_attack_potion','potion'),
- ('736','Scroll of Escape','false','scroll','120','stackable','paper','none','-1','400','0','true','true','true','true','scroll_of_escape','scroll'),
- ('737','Scroll of Resurrection','false','scroll','120','stackable','paper','none','-1','2000','0','true','true','true','true','scroll_of_resurrection','scroll'),
- ('739','Broken Sword Handle','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','broken_sword_handle','none'),
- ('740','Broken Blade Bottom','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','broken_blade_bottom','none'),
- ('741','Broken Blade Top','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','broken_blade_top','none'),
- ('742','Altran\'s Note','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','alltrans_note','none'),
- ('745','Cobendell Medicine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cobendell_medicine','none'),
- ('746','Alberius\'s List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','alberryus_list','none'),
- ('750','Kinship Crystal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kinship_crystal','none'),
- ('751','Cracked Kinship Crystal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cracked_kinship_crystal','none'),
- ('752','Orc Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','orc_amulet','none'),
- ('753','Silverleaf Brooch','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','silverleaf_brooch','none'),
- ('755','Colleen\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_cullinas_letter','none'),
- ('756','Mandragora Root','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_mandragora_root','none'),
- ('757','Mandragora Essence','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_mandragora_essence','none'),
- ('758','Colleen\'s Receipt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_cullinas_receipt','none'),
- ('759','Etched Rune Sword','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_etched_rune_sword','none'),
- ('760','Macabre Sword','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_macabre_sword','none'),
- ('761','Thanatos Sword','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_thanatos_sword','none'),
- ('762','Gray Bone Chip','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_grey_bone_chip','none'),
- ('763','Esther\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_esthers_letter','none'),
- ('764','Arbon\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','__arbons_letter','none'),
- ('765','Conspirator List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_conspirator_list','none'),
- ('766','Sabrin\'s Signet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_sabrins_signet','none'),
- ('767','Sealed Scroll','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_sealed_scroll','none'),
- ('768','Oyen\'s Key','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_oyens_key_','none'),
- ('769','Ricardo\'s Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_rekards_skull','none'),
- ('770','Shield of Honor','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','__shield_of_honor','none'),
- ('771','Saythus\'s Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_saythus_skull','none'),
- ('772','Trayer\'s Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_trayer_skull','none'),
- ('773','Falimar\'s Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_falimar_skull','none'),
- ('774','Fallen Sword of Honor','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_fallen_sword_of_honor','none'),
- ('775','Sword of Honor','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_sword_of_honor','none'),
- ('776','Nameless Sword','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_nameless_sword','none'),
- ('777','Sword of Black Ice','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_sword_of_black_ice','none'),
- ('778','Arodin\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_arodins_letter','none'),
- ('779','Sabrin\'s Ring','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_sabrins_ring','none'),
- ('780','Arbon\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','__arbons_letter','none'),
- ('781','Madclaw\'s Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_madclaws_necklace','none'),
- ('782','Alex\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_alankells_letter','none'),
- ('783','Alex\'s Receipt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_alankells_receipt','none'),
- ('784','Glass Dagger','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_glass_dagger','none'),
- ('785','Broken Glass Dagger','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_broken_glass_dagger','none'),
- ('786','Shadowguard Dagger','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_shadowguard_dagger','none'),
- ('787','Coroli\'s Key','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_corollas_key','none'),
- ('788','Midnight Onyx Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_midnight_onyx_necklace','none'),
- ('789','Song: Moonlight Whisper','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_song_moonlight_whisper','none'),
- ('790','Bloodsteel Kris','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_bloodsteel_kris','none'),
- ('791','Karlun\'s Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_karluns_skull','none'),
- ('792','Karlun\'s Rib Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_karluns_ribbone','none'),
- ('793','Karlun\'s Thigh Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_karluns_thighbone','none'),
- ('794','Saint\'s Ash Urn','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_saints_ash_urn','none'),
- ('795','Mace of Athebaldt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_mace_of_athebaldt','none'),
- ('796','Roien\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','roiens_letter','none'),
- ('797','Manuel\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_manuels_letter','none'),
- ('798','Varan\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_varanket_letter','none'),
- ('799','Groot\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_groot_letter','none'),
- ('800','Tome of Nassen','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_tome_of_nassen','none'),
- ('801','Cursed Tome of Nassen','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_cursed_tome_of_nassen','none'),
- ('802','Bloodthirsty Dagger','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_bloodthirsty_dagger','none'),
- ('803','Bloody Dagger','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_bloody_dagger','none'),
- ('804','Staff of Shane','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_staff_of_shaneryss','none'),
- ('805','Pinter\'s Bill','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','__pinters_bill','none'),
- ('806','Drake\'s Claw','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_drake_claw','none'),
- ('807','Flawless Drake\'s Claw','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_flawless_drake_claw','none'),
- ('808','Pushkin\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_pushkins_letter','none'),
- ('809','Bone Fragment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bone_fragment','none'),
- ('810','Altran\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_alltrans_letter','none'),
- ('811','Oil Paper','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_oil_paper','none'),
- ('812','Adamantium Ore','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','__adamantium_ore','none'),
- ('813','Heart Stone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_heart_stone','none'),
- ('814','Pushkin\'s Receipt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_pushkins_receipt','none'),
- ('815','Leather Strap','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_leather_strap','none'),
- ('816','Widow Maker','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','__wm','none'),
- ('817','Mithril Bottle','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_mithril_bottle','none'),
- ('818','Grace Unicorn\'s Horn','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_grace_unicorn_horn','none'),
- ('819','Drake\'s Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_drake_bone','none'),
- ('820','Zahak Fluids','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_zahak_fluids','none'),
- ('821','Bone Knife','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_bone_knife','none'),
- ('822','Drake Knife','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_drake_knife','none'),
- ('823','Dull Dagger','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_dull_dagger','none'),
- ('824','Siriel\'s Note','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_siriels_note','none'),
- ('825','Raien\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_raiens_letter','none'),
- ('826','Silver Spores','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_silver_spores','none'),
- ('827','Star Dust','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_star_dust','none'),
- ('828','Song of Awakening','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_song_of_awakening','none'),
- ('829','Spirit Dagger','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_spirit_dagger','none'),
- ('830','Medallion of Kwyllinas','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_medallion_of_kwyllinas','none'),
- ('831','Echo Crystal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_echo_crystal','none'),
- ('832','Green Echo Crystal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_green_echo_crystal','none'),
- ('833','Red Echo Crystal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_red_echo_crystal','none'),
- ('834','Aquamarine Echo Crystal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_aquamarine_echo_crystal','none'),
- ('835','Blue Echo Crystal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_blue_echo_crystal','none'),
- ('836','Book of Kwyllinas','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_book_of_kwyllinas','none'),
- ('837','Fairy Dust','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_fairy_dust','none'),
- ('838','Vellior\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_velliors_letter','none'),
- ('839','Icarus\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_icarus_letter','none'),
- ('840','Drevanul Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_drevanul_skull','none'),
- ('841','Icarus\'s Order Form','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_icarus_orderform','none'),
- ('842','Basilisk Ink','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_basilisk_ink','none'),
- ('843','Book of Aklantoth','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_book_of_aklantoth','none'),
- ('844','Book of Aklantoth P1 ~ P10','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','book_of_aklantoth_p1_~_p10','none'),
- ('937','Directions to Ruins','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','howtogo_ruins','none'),
- ('938','Deck','false','none','0','normal','silver','none','-1','0','0','false','true','true','false','test_deck','none'),
- ('939','Gara\'s Quest Item #11','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gara_quest_item11','none'),
- ('940','Gara\'s Quest Item #12','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gara_quest_item12','none'),
- ('941','Gara\'s Proof of Bravery','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gara_proof_of_bravery','none'),
- ('942','Gara\'s Proof of Justice','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gara_proof_of_justice','none'),
- ('943','Gara\'s Proof of Despair','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gara_proof_of_despair','none'),
- ('944','Deathknight Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','deathknight_skull','none'),
- ('947','Scroll: Enchant Weapon (Grade B)','false','scroll','120','normal','paper','none','-1','500000','0','true','true','true','true','scrl_of_ench_wp_b','scroll'),
- ('948','Scroll: Enchant Armor (Grade B)','false','scroll','120','normal','paper','none','-1','80000','0','true','true','true','true','scrl_of_ench_am_b','scroll'),
- ('949','Crystal Scroll: Enchant Weapon (Grade B)','false','scroll','120','normal','paper','none','-1','80000','0','true','true','true','true','cry_scrl_of_ench_wp_b','scroll'),
- ('950','Crystal Scroll: Enchant Armor (Grade B)','false','scroll','120','normal','paper','none','-1','80000','0','true','true','true','true','cry_scrl_of_ench_am_b','scroll'),
- ('951','Scroll: Enchant Weapon (Grade C)','false','scroll','120','normal','paper','none','-1','110000','0','true','true','true','true','scrl_of_ench_wp_c','scroll'),
- ('952','Scroll: Enchant Armor (Grade C)','false','scroll','120','normal','paper','none','-1','15000','0','true','true','true','true','scrl_of_ench_am_c','scroll'),
- ('953','Crystal Scroll: Enchant Weapon (Grade C)','false','scroll','120','normal','paper','none','-1','15000','0','true','true','true','true','cry_scrl_of_ench_wp_c','scroll'),
- ('954','Crystal Scroll: Enchant Armor (Grade C)','false','scroll','120','normal','paper','none','-1','15000','0','true','true','true','true','cry_scrl_of_ench_am_c','scroll'),
- ('955','Scroll: Enchant Weapon (Grade D)','false','scroll','120','normal','paper','none','-1','50000','0','true','true','true','true','scrl_of_ench_wp_d','scroll'),
- ('956','Scroll: Enchant Armor (Grade D)','false','scroll','120','normal','paper','none','-1','6000','0','true','true','true','true','scrl_of_ench_am_d','scroll'),
- ('957','Crystal Scroll: Enchant Weapon (Grade D)','false','scroll','120','normal','paper','none','-1','6000','0','true','true','true','true','cry_scrl_of_ench_wp_d','scroll'),
- ('958','Crystal Scroll: Enchant Armor (Grade D)','false','scroll','120','normal','paper','none','-1','6000','0','true','true','true','true','cry_scrl_of_ench_am_d','scroll'),
- ('959','Scroll: Enchant Weapon (Grade S)','false','scroll','120','normal','paper','none','-1','5000000','0','true','true','true','true','scrl_of_ench_wp_s','scroll'),
- ('960','Scroll: Enchant Armor (Grade S)','false','scroll','120','normal','paper','none','-1','500000','0','true','true','true','true','scrl_of_ench_am_s','scroll'),
- ('961','Crystal Scroll: Enchant Weapon (Grade S)','false','scroll','120','normal','paper','none','-1','500000','0','true','true','true','true','cry_scrl_of_ench_wp_s','scroll'),
- ('962','Crystal Scroll: Enchant Armor (Grade S)','false','scroll','120','normal','paper','none','-1','500000','0','true','true','true','true','cry_scrl_of_ench_am_s','scroll'),
- ('963','Orcish Arrowhead','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','orcish_arrowhead','none'),
- ('964','Alberius\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','alberryus_letter','none'),
- ('965','Evergreen Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','evergreen_amulet','none'),
- ('966','Dryad\'s Tears','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','dryad_tears','none'),
- ('967','Cobendell Medicine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cobs_medicine','none'),
- ('968','Karrod\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','karoyds_letter','none'),
- ('969','Cecktinon\'s First Voucher','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cecktinons_voucher1','none'),
- ('970','Cecktinon\'s Second Voucher','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cecktinons_voucher2','none'),
- ('971','Soul Catcher','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','soul_catcher','none'),
- ('972','Preserving Oil','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','preserve_oil','none'),
- ('973','Zombie Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','zombie_head','none'),
- ('974','Steelbender Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','steelbenders_head','none'),
- ('976','1st Mark of Sentinel','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_sentinel1','none'),
- ('977','2nd Mark of Sentinel','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_sentinel2','none'),
- ('978','Skullcrusher Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','skullcrusher_amulet','none'),
- ('979','Bloodspear Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bloodspear_amulet','none'),
- ('980','0','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_red_sunset_staff','none'),
- ('982','Esrandell\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','eso_letter','none'),
- ('983','Kendell\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kendnell_letter','none'),
- ('984','1st Onyx Talisman','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','onyx_talisman1','none'),
- ('985','2nd Onyx Talisman','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','onyx_talisman2','none'),
- ('986','Ancient Scroll','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ancient_scroll','none'),
- ('987','Ancient Clay Tablet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ancient_clay_tablet','none'),
- ('988','Kartia\'s Translation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kartas_translation','none'),
- ('1001','Book of Aklantoth - Part 4','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_book_of_aklantoth_p4','none'),
- ('1002','Book of Aklantoth - Part 5','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_book_of_aklantoth_p5','none'),
- ('1003','Book of Aklantoth - Part 6','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_book_of_aklantoth_p6','none'),
- ('1004','Book of Aklantoth - Part 7','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_book_of_aklantoth_p7','none'),
- ('1005','Book of Aklantoth - Part 8','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_book_of_aklantoth_p8','none'),
- ('1006','Book of Aklantoth - Part 9','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_book_of_aklantoth_p9','none'),
- ('1007','Book of Aklantoth - Part 10','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_book_of_aklantoth_p10','none'),
- ('1008','Harrys\'s 1st Receipt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','harrys_receipt1','none'),
- ('1009','Harrys\'s 2nd Receipt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','harrys_receipt2','none'),
- ('1010','Golem Shard','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','golem_shard','none'),
- ('1011','Tool Box','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tool_box','none'),
- ('1012','Delivery List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','delivery_list','none'),
- ('1013','Heavy Wood Box','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','heavy_wood_box','none'),
- ('1014','Cloth Bundle','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cloth_bundle','none'),
- ('1015','Clay Pot','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','clay_pot','none'),
- ('1016','Jackson\'s Receipt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','jacksons_receipt','none'),
- ('1017','Silvia\'s Receipt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','silvias_receipt','none'),
- ('1018','Rant\'s Receipt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rants_receipt','none'),
- ('1019','official Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','official_letter','none'),
- ('1020','Flame Shard','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','flame_shard','none'),
- ('1021','Ice Shard','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ice_shard','none'),
- ('1022','Lilith\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ryliths_letter','none'),
- ('1023','Theon\'s Diary','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','theons_diary','none'),
- ('1024','Adamantite Ore','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','adamantite_ore','none'),
- ('1025','Clay Tablet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','clay_tablet','none'),
- ('1026','Silvery Spidersilk','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','silvery_spidersilk','none'),
- ('1027','Unoren\'s Receipt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','unos_receipt','none'),
- ('1028','Creamees\'s Ticket','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cels_ticket','none'),
- ('1029','Nightshade Leaf','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','nightshade_leaf','none'),
- ('1030','Cracked Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cracked_skull','none'),
- ('1031','Perfect Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','perfect_skull','none'),
- ('1032','Fox Fur','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fox_fur','none'),
- ('1033','Fox Fur Yarn','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fox_fur_yarn','none'),
- ('1034','Maiden Doll','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','maiden_doll','none'),
- ('1035','Plague Dust','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','plague_dust','none'),
- ('1036','Andellia\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','andellrias_letter','none'),
- ('1037','Fruit of The Mother Tree','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mothertree_fruit','none'),
- ('1038','Rumiel\'s 1st Poem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rumiels_poem_1','none'),
- ('1039','Rumiel\'s 2nd Poem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rumiels_poem_3','none'),
- ('1040','Rumiel\'s 3rd Poem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rumiels_poem_4','none'),
- ('1041','Rumiel\'s 4th Poem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rumiels_poem_5','none'),
- ('1042','Wererat\'s Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wererat_fang','none'),
- ('1043','Varool Foulclaw\'s Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','varool_foulclaws_fang','none'),
- ('1044','Kirunak Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kirunak_skull','none'),
- ('1045','Zombie\'s Skin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','zombie_skin','none'),
- ('1046','Nightmare Crystal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','nightmare_crystal','none'),
- ('1047','Spellbook: Light','false','spellbook','120','normal','paper','none','-1','100','0','true','true','true','true','sb_light','none'),
- ('1048','Spellbook: Might','false','spellbook','120','normal','paper','none','-1','100','0','true','true','true','true','sb_might1','none'),
- ('1049','Spellbook: Ice Bolt','false','spellbook','120','normal','paper','none','-1','100','0','true','true','true','true','sb_ice_bolt1','none'),
- ('1050','Spellbook: Battle Heal','false','spellbook','120','normal','paper','none','-1','100','0','true','true','true','true','sb_battle_heal1','none'),
- ('1051','Spellbook: Vampiric Touch','false','spellbook','120','normal','paper','none','-1','100','0','true','true','true','true','sb_vampiric_touch1','none'),
- ('1052','Spellbook: Flame Strike','false','spellbook','120','normal','paper','none','-1','500','0','true','true','true','true','sb_flame_strike1','none'),
- ('1053','Spellbook: Cure Poison','false','spellbook','120','normal','paper','none','-1','500','0','true','true','true','true','sb_cure_poison1','none'),
- ('1054','Spellbook: Group Heal','false','spellbook','120','normal','paper','none','-1','500','0','true','true','true','true','sb_group_heal1','none'),
- ('1055','Spellbook: Curse: Poison','false','spellbook','120','normal','paper','none','-1','500','0','true','true','true','true','sb_curse:poison1','none'),
- ('1056','Spellbook: Curse: Weakness','false','spellbook','120','normal','paper','none','-1','500','0','true','true','true','true','sb_curse:weakness','none'),
- ('1057','Spellbook: Summon Meal','false','spellbook','120','normal','paper','none','-1','500','0','true','true','true','true','sb_summon_meal','none'),
- ('1058','Spellbook: Shield','false','spellbook','120','normal','paper','none','-1','500','0','true','true','true','true','sb_shield1','none'),
- ('1059','Spellbook: Know Enemy','false','spellbook','120','normal','paper','none','-1','500','0','true','true','true','true','sb_know_enemy','none'),
- ('1060','Lesser Healing Potion','false','potion','5','stackable','liquid','none','-1','90','0','true','true','true','true','lesser_healing_potion','potion'),
- ('1061','Healing Potion','false','potion','5','stackable','liquid','none','-1','330','0','true','true','true','true','healing_potion','potion'),
- ('1062','Haste Potion','false','potion','180','stackable','liquid','none','-1','5000','0','true','true','true','true','haste_potion','potion'),
- ('1063','Tutorial Parchment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_tutorial_parchment_01','none'),
- ('1064','Tutorial Parchment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_tutorial_parchment_02','none'),
- ('1065','Tutorial Parchment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_tutorial_parchment_03','none'),
- ('1066','Tutorial Parchment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_tutorial_parchment_04','none'),
- ('1067','Recommendation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','recommendation_01','none'),
- ('1068','Recommendation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','recommendation_02','none'),
- ('1069','Leaf of the Mother Tree','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leaf_of_mothertree','none'),
- ('1070','Blood of Mitraell','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','blood_of_jundin','none'),
- ('1071','Hyacinth Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hyacinth_charm1','none'),
- ('1072','Hyacinth Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hyacinth_charm2','none'),
- ('1073','Beginner\'s Potion','false','potion','5','stackable','liquid','none','-1','0','0','true','true','true','true','beginners_potion','potion'),
- ('1074','Boat Ticket: Talking Island to Gludin','false','none','20','stackable','paper','none','-1','1000','0','true','true','true','true','boat_ticket_talk_glu','none'),
- ('1075','Boat Ticket: Gludin to Talking Island','false','none','20','stackable','paper','none','-1','1000','0','true','true','true','true','boat_ticket_glu_talk','none'),
- ('1076','Carlon\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','calculains_letter','none'),
- ('1077','Venom Sac','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','venom_sac','none'),
- ('1078','Wind Shard','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wind_shard','none'),
- ('1079','Darin\'s Receipt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','darings_receipt','none'),
- ('1080','Baulro\'s Potion','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bauls_potion','none'),
- ('1081','Omen Beast\'s Eye','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','onyx_beast_eye','none'),
- ('1082','Taint Stone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','taint_stone','none'),
- ('1083','Succubus Blood','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','succubus_blood','none'),
- ('1084','Gludio Lord\'s Mark','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gludio_lords_mark','none'),
- ('1085','Orc\'s Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','orc_necklace','none'),
- ('1086','Werewolf\'s Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','werewolf_fang','none'),
- ('1087','Giant Spider Leg','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','giant_spider_leg','none'),
- ('1088','Undrias\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','undres_letter','none'),
- ('1089','Ceremonial Dagger','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ceremonial_dagger','none'),
- ('1090','Dreviant Wine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','dreviant_wine','none'),
- ('1091','Garmiel\'s Scripture','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','garmiels_scripture','none'),
- ('1092','Arujien\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','arujiens_letter1','none'),
- ('1093','Arujien\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','arujiens_letter2','none'),
- ('1094','Arujien\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','arujiens_letter3','none'),
- ('1095','Spellbook: Attack Aura','false','spellbook','120','normal','paper','none','-1','75','0','true','true','true','true','sb_advanced_attack_power1','none'),
- ('1096','Spellbook: Elemental Heal','false','spellbook','120','normal','paper','none','-1','550','0','true','true','true','true','sb_elemental_heal1','none'),
- ('1097','Spellbook: Drain Health','false','spellbook','120','normal','paper','none','-1','550','0','true','true','true','true','sb_drain_energy1','none'),
- ('1098','Spellbook: Wind Walk','false','spellbook','120','normal','paper','none','-1','500','0','true','true','true','true','sb_wind_walk1','none'),
- ('1099','Spellbook: Wind Shackle','false','spellbook','120','normal','paper','none','-1','500','0','true','true','true','true','sb_breeze1','none'),
- ('1106','Norman\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','normans_letter','none'),
- ('1107','Bone Fragment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bone_fragment1','none'),
- ('1108','Arbon\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_arbons_letter1','none'),
- ('1109','Roien\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_roiens_letter1','none'),
- ('1110','Bone Fragment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','_bone_fragment2','none'),
- ('1111','Adamantite Ore','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','__adamantite_ore1','none'),
- ('1112','Leaf of the Mother Tree','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leaf_of_mothertree_01','none'),
- ('1113','Blood of Mitraell','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','blood_of_jundin_01','none'),
- ('1114','Orc Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','orc_amulet1','none'),
- ('1115','Orc\'s Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','orc_necklace1','none'),
- ('1116','Orc Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','orc_amulet2','none'),
- ('1117','Orc\'s Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','orc_necklace2','none'),
- ('1118','Spore Sac','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fungus_sac1','none'),
- ('1130','Cobendell\'s Medicine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cobs_medicine1','none'),
- ('1131','Cobendell\'s Medicine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cobs_medicine2','none'),
- ('1132','Cobendell\'s Medicine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cobs_medicine3','none'),
- ('1133','Cobendell\'s Medicine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cobs_medicine4','none'),
- ('1134','Cobendell\'s Medicine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cobs_medicine5','none'),
- ('1135','Spiritbound Wand','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wand_spiritbound1','none'),
- ('1136','Spiritbound Wand','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wand_spiritbound2','none'),
- ('1137','Spiritbound Wand','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wand_spiritbound3','none'),
- ('1138','Auron\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','eins_letter','none'),
- ('1139','Warrior Guild Mark','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','warrior_guild_mark','none'),
- ('1140','Rusted Bronze Sword','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rusted_bronze_sword1','none'),
- ('1141','Rusted Bronze Sword','false','quest','0','stackable','steel','none','-1','0','0','true','false','true','true','rusted_bronze_sword2','none'),
- ('1143','Simplon\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','simplons_letter','none'),
- ('1144','Poison Spider\'s Leg','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','poison_spider_leg2','none'),
- ('1145','Medallion of Warrior','false','quest','0','stackable','steel','none','-1','0','0','true','false','true','true','medallion_of_warrior','none'),
- ('1150','Spellbook: Wind Strike','false','spellbook','120','normal','paper','none','-1','50','0','true','true','true','true','sb_wind_strike1','none'),
- ('1151','Spellbook: Self Heal','false','spellbook','120','normal','paper','none','-1','50','0','true','true','true','true','sb_self_heal','none'),
- ('1152','Spellbook: Heal','false','spellbook','120','normal','paper','none','-1','100','0','true','true','true','true','sb_heal1','none'),
- ('1153','Jenna\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','jennies_letter','none'),
- ('1154','Sentry Blade','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sentry_blade1','none'),
- ('1155','Sentry Blade','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sentry_blade2','none'),
- ('1156','Sentry Blade','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sentry_blade3','none'),
- ('1157','Old Bronze Sword','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','old_bronze_sword','none'),
- ('1158','Bone Fragment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bone_fragment3','none'),
- ('1159','Elf Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','elf_skull','none'),
- ('1160','Dark Bezoar','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','dark_bezoar','none'),
- ('1161','Sword of Ritual','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sword_of_ritual','none'),
- ('1162','Coin of Lords','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','coin_of_lords1','none'),
- ('1163','Coin of Lords','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','coin_of_lords2','none'),
- ('1164','Coin of Lords','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','coin_of_lords3','none'),
- ('1165','Coin of Lords','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','coin_of_lords4','none'),
- ('1166','Coin of Lords','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','coin_of_lords5','none'),
- ('1167','Coin of Lords','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','coin_of_lords6','none'),
- ('1168','Gludio Guard\'s 1st Badge','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gludio_guards_mark1','none'),
- ('1169','Bugbear Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bugbear_necklace','none'),
- ('1170','Einhasad\'s 1st Temple Badge','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','einhasad_church_mark1','none'),
- ('1171','Einhasad\'s Crucifix','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','einhasad_crucifix','none'),
- ('1172','Gludio Guard\'s 2nd Badge','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gludio_guards_mark2','none'),
- ('1173','Poison Spider Leg','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','poison_spider_leg1','none'),
- ('1174','Einhasad\'s 2nd Temple Badge','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','einhasad_church_mark2','none'),
- ('1175','Lizardman\'s Totem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lizardman_totem','none'),
- ('1176','Gludio Guard\'s 3rd Badge','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gludio_guards_mark3','none'),
- ('1177','Giant Spider\'s Husk','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','giant_spider_husk','none'),
- ('1178','Einhasad\'s 3rd Temple Badge','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','einhasad_church_mark3','none'),
- ('1179','Skull of Silent Horror','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','horrible_skull','none'),
- ('1180','Bezique\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','beziques_letter','none'),
- ('1183','Spartoi\'s Bones','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','spatois_bones','none'),
- ('1184','Horseshoe of Light','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','horseshoe_of_light','none'),
- ('1185','Most Wanted List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wanted_bill','none'),
- ('1186','Stolen Jewelry','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','stolen_jewelry','none'),
- ('1187','Stolen Tomes','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','stolen_tomes','none'),
- ('1188','Stolen Ring','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','stolen_ring','none'),
- ('1189','Stolen Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','stolen_necklace','none'),
- ('1190','Bezique\'s Recommendation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','beziques_recommendation','none'),
- ('1191','1st Letter of Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_of_order1','none'),
- ('1192','2nd Letter of Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_of_order2','none'),
- ('1193','Lionel\'s Book','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','book_of_lemoniell','none'),
- ('1194','Book of Vivyan','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','book_of_vivi','none'),
- ('1195','Book of Simplon','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','book_of_simlon','none'),
- ('1196','Book of Praga','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','book_of_praga','none'),
- ('1197','Certificate of Gallint','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','certificate_of_gallint','none'),
- ('1198','Pendant of Mother','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pendant_of_mother','none'),
- ('1199','Necklace of Mother','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','necklace_of_mother','none'),
- ('1200','Lionel\'s Covenant','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lemoniells_covenant','none'),
- ('1201','Mark of Faith','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_faith','none'),
- ('1202','Sorius\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sorius_letter1','none'),
- ('1203','Kluto Box','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kluto_box','none'),
- ('1204','Elven Knight Brooch','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','elven_knight_brooch','none'),
- ('1205','Topaz Piece','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','topaz_piece','none'),
- ('1206','Emerald Piece','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','emerald_piece','none'),
- ('1207','Reisa\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','reoria_letter2','none'),
- ('1208','Prias\'s 1st Torn Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','priguns_tear_letter1','none'),
- ('1209','Prias\'s 2nd Torn Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','priguns_tear_letter2','none'),
- ('1210','Prias\'s 3rd Torn Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','priguns_tear_letter3','none'),
- ('1211','Prias\'s 4th Torn Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','priguns_tear_letter4','none'),
- ('1212','Moretti\'s Herb','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','morettis_herb','none'),
- ('1214','Moretti\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','morettis_letter','none'),
- ('1215','Prias\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','priguns_letter','none'),
- ('1216','Honorary Guard','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','honorary_guard','none'),
- ('1217','Reisa\'s Recommendation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','reoria_recommendation','none'),
- ('1218','Rosella\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rogellias_letter','none'),
- ('1219','Red Down','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','red_down','none'),
- ('1220','Magical Powers Ruby','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','magical_powers_ruby','none'),
- ('1221','Pure Aquamarine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pure_aquamarine','none'),
- ('1222','Appetizing Apple','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','appetizing_apple','none'),
- ('1223','Gold Leaves','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gold_leaves','none'),
- ('1224','Immortal Love','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','immortal_love','none'),
- ('1225','Amethyst','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','amethyst','none'),
- ('1226','Nobility Amethyst','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','nobility_amethyst','none'),
- ('1227','Rosella\'s Recommendation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rogellias_recommend','none'),
- ('1228','Peridot','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','peridot','none'),
- ('1229','Fertility Peridot','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fertility_peridot','none'),
- ('1230','Eternity Diamond','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','eternity_diamond','none'),
- ('1231','Crystal Medallion','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_medallion','none'),
- ('1232','Swindler\'s Money','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','money_of_swindler','none'),
- ('1233','Allana\'s Diary','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','dairy_of_allana','none'),
- ('1234','Lizard Captain Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lizard_captain_order','none'),
- ('1235','Leaf of Oracle','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leaf_of_oracle','none'),
- ('1236','Half of Diary','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','half_of_dairy','none'),
- ('1237','Palus Talisman','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pallus_talisman','none'),
- ('1238','Lycanthrope Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lycanthrope_skull','none'),
- ('1239','Virgil\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','virgils_letter','none'),
- ('1240','Morte Talisman','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','morte_talisman','none'),
- ('1241','Predator\'s Carapace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','predator_carapace','none'),
- ('1242','Arachnid Tracker Silk','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','trimden_silk','none'),
- ('1243','Coffin of Eternal Rest','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','coffin_eternal_rest','none'),
- ('1244','Gaze of Abyss','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gaze_of_abyss','none'),
- ('1245','Shilen\'s Call','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','shilens_call','none'),
- ('1246','Arkenia\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','arkenias_letter','none'),
- ('1247','Leikan\'s Note','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leikans_note','none'),
- ('1248','Moonstone Beast\'s Molar','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','onyx_beasts_molar','none'),
- ('1249','Leikan\'s Knife','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leikans_knife','none'),
- ('1250','Shilen\'s Tears','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','shilens_tears','none'),
- ('1251','Arkenia\'s Recommendation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','arkenia_recommend','none'),
- ('1252','Iron Heart','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','iron_heart','none'),
- ('1253','Seed of Anger','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','seeds_of_anger','none'),
- ('1254','Seed of Despair','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','seeds_of_despair','none'),
- ('1255','Seed of Horror','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','seeds_of_horror','none'),
- ('1256','Seed of Lunacy','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','seeds_of_lunacy','none'),
- ('1257','Family\'s Remains','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','familys_ashes','none'),
- ('1258','Varika\'s Liquor','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','varikas_liquor','none'),
- ('1259','Knee Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','knee_bone','none'),
- ('1260','Heart of Lunacy','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','heart_of_lunacy','none'),
- ('1261','Jewel of Darkness','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','jewel_of_darkness','none'),
- ('1262','Sidra\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sidras_letter1','none'),
- ('1263','Blank Sheet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','blank_sheet1','none'),
- ('1264','Bloody Rune','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bloody_rune1','none'),
- ('1265','Garmiel Book','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','garmiel_book','none'),
- ('1266','Prayer of Adonius','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','prayer_of_adon','none'),
- ('1267','Penitent\'s Mark','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','penitents_mark','none'),
- ('1268','Ashen Bones','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ashen_bones','none'),
- ('1269','Andariel Book','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','andariel_book','none'),
- ('1270','Orb of Abyss','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','orb_of_abyss','none'),
- ('1271','Mark of Esquire','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_esquire','none'),
- ('1272','Charm of Grain','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','charm_of_grain','none'),
- ('1273','Sap of the Mother Tree','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sap_of_world_tree','none'),
- ('1274','Lucky Potpourri','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lucky_potpouri','none'),
- ('1275','Tamil\'s Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tamatos_necklace','none'),
- ('1276','Kluto\'s Memo','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kluto_memo','none'),
- ('1277','Lucky Key','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lucky_key','none'),
- ('1278','Candle','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','candle','none'),
- ('1279','Hub Scent','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hub_scent','none'),
- ('1280','Map of Luster','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','map_of_luster','none'),
- ('1281','Key of Flame','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','key_of_flame','none'),
- ('1282','Flame Earring','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','flame_earing','none'),
- ('1283','Broken Bronze Mirror','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','broken_bronze_mirror','none'),
- ('1284','Wind Feather','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wind_feather','none'),
- ('1285','Wind Bangle','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wind_bangel','none'),
- ('1286','Rama\'s Diary','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ramas_diary','none'),
- ('1287','Sparkle Pebble','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sparkle_pebble','none'),
- ('1288','Water Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','water_necklace','none'),
- ('1289','Rust Gold Coin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rust_gold_coin','none'),
- ('1290','Red Soil','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','red_soil','none'),
- ('1291','Earth Ring','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','earth_ring','none'),
- ('1292','Bead of Season','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bead_of_season','none'),
- ('1293','Rusted Key','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rusted_key','none'),
- ('1294','Spellbook: Defense Aura','false','spellbook','120','normal','paper','none','-1','75','0','true','true','true','true','sb_adv_defence_power1','none'),
- ('1334','Predator\'s Fang','false','quest','0','stackable','steel','none','-1','0','0','true','false','true','true','predators_fang','none'),
- ('1335','Goblin Club','false','quest','0','stackable','steel','none','-1','0','0','true','false','true','true','goblin_club','none'),
- ('1336','Glass Shard','false','none','80','stackable','liquid','none','-1','200','0','true','true','true','true','glass_shard','none'),
- ('1337','Emerald','false','none','80','stackable','liquid','none','-1','20000','0','true','true','true','true','emerald','none'),
- ('1338','Blue Onyx','false','none','80','stackable','liquid','none','-1','1000','0','true','true','true','true','blue_onyx','none'),
- ('1339','Onyx','false','none','80','stackable','liquid','none','-1','600','0','true','true','true','true','onyx','none'),
- ('1340','Silvery Leaf','false','none','3','stackable','liquid','none','-1','20','0','true','true','true','true','silvery_leaf','none'),
- ('1341','Bone Arrow','false','arrow','5','stackable','bone','d','-1','3','0','true','true','true','true','bone_arrow','arrow'),
- ('1342','Fine Steel Arrow','false','arrow','4','stackable','fine_steel','c','-1','5','0','true','true','true','true','fine_steel_arrow','arrow'),
- ('1343','Silver Arrow','false','arrow','4','stackable','silver','b','-1','7','0','true','true','true','true','silver_arrow','arrow'),
- ('1344','Mithril Arrow','false','arrow','3','stackable','mithril','a','-1','8','0','true','true','true','true','mithril_arrow','arrow'),
- ('1345','Shining Arrow','false','arrow','3','stackable','adamantaite','s','-1','10','0','true','true','true','true','shining_arrow','arrow'),
- ('1346','Golem\'s Stoneheart','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','golem_heartstone','none'),
- ('1347','Monster Eye Carcass','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','monster_eye_carcass','none'),
- ('1348','Basilisk\'s Gizzard','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','basilisk_gizzard','none'),
- ('1349','Anatomy Diagram','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','anatomy_diagram','none'),
- ('1350','Zombie Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','zombie_head1','none'),
- ('1351','Zombie Heart','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','zombie_heart1','none'),
- ('1352','Zombie Liver','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','zombie_liver1','none'),
- ('1353','Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','skull1','none'),
- ('1354','Rib Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rib_bone1','none'),
- ('1355','Spine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','spine1','none'),
- ('1356','Arm Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','arm_bone1','none'),
- ('1357','Thigh Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','thigh_bone1','none'),
- ('1358','Complete Skeleton','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','complete_skeleton','none'),
- ('1359','Red Cross Badge','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','red_cross_badge','none'),
- ('1360','Blue Cross Badge','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','blue_cross_badge','none'),
- ('1361','Black Cross Badge','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','black_cross_badge','none'),
- ('1362','Spider\'s Carapace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','spider_carapace','none'),
- ('1363','Spider Silk','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','spider_silk','none'),
- ('1364','Spider Venom Sac','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','spider_venom_sac','none'),
- ('1365','Broken Stoneheart','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','broken_heartstone','none'),
- ('1366','Monster Eye\'s Lens','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','monster_eye_lens','none'),
- ('1367','Wolf Claw','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wolf_claw1','none'),
- ('1368','Imp Shackles','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','imp_shackles','none'),
- ('1369','Black Lion Mark','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','black_lion_mark','none'),
- ('1370','Spellbook: Aqua Swirl','false','spellbook','120','normal','paper','none','-1','750','0','true','true','true','true','sb_aqua_swirl1','none'),
- ('1371','Spellbook: Twister','false','spellbook','120','normal','paper','none','-1','750','0','true','true','true','true','sb_twister1','none'),
- ('1372','Spellbook: Blaze','false','spellbook','120','normal','paper','none','-1','750','0','true','true','true','true','sb_blaze1','none'),
- ('1373','Magic Gem','false','none','80','stackable','liquid','none','-1','600','0','true','true','true','true','magic_gem','none'),
- ('1374','Greater Haste Potion','false','potion','20','stackable','liquid','none','-1','3600','0','true','true','true','true','adv_quick_step_potion','potion'),
- ('1375','Greater Swift Attack Potion','false','potion','20','stackable','liquid','none','-1','7200','0','true','true','true','true','adv_swift_attack_potion','potion'),
- ('1377','Spellbook: Poison Recovery','false','spellbook','120','normal','paper','none','-1','750','0','true','true','true','true','sb_poison_recovery1','none'),
- ('1378','Spellbook: Divine Heal','false','spellbook','120','normal','paper','none','-1','1600','0','true','true','true','true','sb_touch_of_god1','none'),
- ('1379','Spellbook: Cure Bleeding','false','spellbook','120','normal','paper','none','-1','1150','0','true','true','true','true','sb_cure_bleeding1','none'),
- ('1380','Spellbook: Entangle','false','spellbook','120','normal','paper','none','-1','500','0','true','true','true','true','sb_zero_g1','none'),
- ('1381','Spellbook: Freezing Strike','false','spellbook','120','normal','paper','none','-1','2600','0','true','true','true','true','sb_freezing_strike1','none'),
- ('1382','Spellbook: Power Break','false','spellbook','120','normal','paper','none','-1','2600','0','true','true','true','true','sb_power_break1','none'),
- ('1383','Spellbook: Poison','false','spellbook','120','normal','paper','none','-1','750','0','true','true','true','true','sb_poison1','none'),
- ('1384','Spellbook: Sprint','false','spellbook','120','normal','paper','none','-1','2600','0','true','true','true','true','sb_speed_walk1','none'),
- ('1385','Spellbook: Recharge','false','spellbook','120','normal','paper','none','-1','1800','0','true','true','true','true','sb_recharge1','none'),
- ('1386','Spellbook: Disrupt Undead','false','spellbook','120','normal','paper','none','-1','750','0','true','true','true','true','sb_disrupt_undead1','none'),
- ('1387','Spellbook: Resist Poison','false','spellbook','120','normal','paper','none','-1','2450','0','true','true','true','true','sb_resist_poison1','none'),
- ('1388','Spellbook: Mental Shield','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_mental_shield1','none'),
- ('1389','Spellbook: Holy Weapon','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_holy_weapon1','none'),
- ('1390','Spellbook: Regeneration','false','spellbook','120','normal','paper','none','-1','2450','0','true','true','true','true','sb_regeneration1','none'),
- ('1391','Spellbook: Empower','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_empower1','none'),
- ('1392','Spellbook: Berserker Spirit','false','spellbook','120','normal','paper','none','-1','2450','0','true','true','true','true','sb_berserker_spirit1','none'),
- ('1393','Spellbook: Quickness','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_quickness1','none'),
- ('1394','Spellbook: Sleep','false','spellbook','120','normal','paper','none','-1','1800','0','true','true','true','true','sb_sleep1','none'),
- ('1395','Spellbook: Surrender to Water','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','__sb_surrender_to_water1','none'),
- ('1396','Spellbook: Surrender to Wind','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','__sb_surrender_to_wind1','none'),
- ('1397','Spellbook: Peace','false','spellbook','120','normal','paper','none','-1','2450','0','true','true','true','true','sb_erase_hostility1','none'),
- ('1398','Spellbook: Focus','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_focus1','none'),
- ('1399','Spellbook: Concentration','false','spellbook','120','normal','paper','none','-1','750','0','true','true','true','true','sb_concentration1','none'),
- ('1400','Spellbook: Surrender To Fire','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_surrender_to_fire1','none'),
- ('1401','Spellbook: Acumen','false','spellbook','120','normal','paper','none','-1','750','0','true','true','true','true','sb_arcane_acumen1','none'),
- ('1402','Spellbook: Agility','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_agility1','none'),
- ('1403','Spellbook: Summon Kat the Cat','false','spellbook','120','normal','paper','none','-1','750','0','true','true','true','true','sb_summon_blackcat1','none'),
- ('1404','Spellbook: Servitor Recharge','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_servitor_mana_charge1','none'),
- ('1405','Spellbook: Servitor Heal','false','spellbook','120','normal','paper','none','-1','750','0','true','true','true','true','sb_servitor_heal1','none'),
- ('1406','Spellbook: Servitor Wind Walk','false','spellbook','120','normal','paper','none','-1','2450','0','true','true','true','true','sb_fast_servitor1','none'),
- ('1407','Spellbook: Servitor Magic Boost','false','spellbook','120','normal','paper','none','-1','2450','0','true','true','true','true','sb_bright_servitor1','none'),
- ('1408','Spellbook: Mighty Servitor','false','spellbook','120','normal','paper','none','-1','2450','0','true','true','true','true','sb_mighty_servitor1','none'),
- ('1409','Spellbook: Slow','false','spellbook','120','normal','paper','none','-1','2450','0','true','true','true','true','sb_slow1','none'),
- ('1410','Spellbook: Poisonous Cloud','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_poison_cloud1','none'),
- ('1411','Spellbook: Aura Burn','false','spellbook','120','normal','paper','none','-1','750','0','true','true','true','true','sb_aura_burn1','none'),
- ('1412','Spellbook: Resist Aqua','false','spellbook','120','normal','paper','none','-1','2450','0','true','true','true','true','sb_auqa_resist1','none'),
- ('1413','Spellbook: Resist Wind','false','spellbook','120','normal','paper','none','-1','2450','0','true','true','true','true','sb_wind_resist1','none'),
- ('1414','Spellbook: Resist Fire','false','spellbook','120','normal','paper','none','-1','1800','0','true','true','true','true','sb_fire_resist1','none'),
- ('1415','Spellbook: Dryad Root','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_dryad_root1','none'),
- ('1416','Spellbook: Curse of Chaos','false','spellbook','120','normal','paper','none','-1','2450','0','true','true','true','true','sb_curse_bleary1','none'),
- ('1417','Spellbook: Surrender To Earth','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_surrender_to_earth1','none'),
- ('1418','Spellbook: Surrender To Poison','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_surrender_to_poison1','none'),
- ('1419','Blood Mark','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','proof_of_blood','none'),
- ('1420','Ingredient List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ingredient_list','none'),
- ('1421','Sonia\'s Botany Book','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sonias_botanybook','none'),
- ('1422','Red Mandragora Root','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','red_mandragora_root','none'),
- ('1423','White Mandragora Root','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','white_mandragora_root','none'),
- ('1424','Red Mandragora Sap','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','red_mandragora_sap','none'),
- ('1425','White Mandragora Sap','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','white_mandragora_sap','none'),
- ('1426','Jacob\'s Insect Book','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','jaycubs_insectbook','none'),
- ('1427','Nectar','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','nectar','none'),
- ('1428','Royal Jelly','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','royal_jelly','none'),
- ('1429','Honey','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','honey','none'),
- ('1430','Golden Honey','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','golden_honey','none'),
- ('1431','Pano\'s Contract','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','panos_contract','none'),
- ('1432','Hobgoblin Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hobgoblin_amulet','none'),
- ('1433','Dionian Potato','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','dionian_potato','none'),
- ('1434','Glyvka\'s Botany Book','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','glyvkas_botanybook','none'),
- ('1435','Green Marsh Moss','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','green_marsh_moss','none'),
- ('1436','Brown Marsh Moss','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','brown_marsh_moss','none'),
- ('1437','Green Moss Bundle','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','green_moss_bundle','none'),
- ('1438','Brown Moss Bundle','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','brown_moss_bundle','none'),
- ('1439','Rollant\'s Creature Book','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rolants_creaturebook','none'),
- ('1440','Body of Monster Eye','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','monster_eye_body','none'),
- ('1441','Meat of Monster Eye','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','monster_eye_meat','none'),
- ('1442','Jonas\'s 1st Steak Dish','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','jonas_steak_dish1','none'),
- ('1443','Jonas\'s 2nd Steak Dish','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','jonas_steak_dish2','none'),
- ('1444','Jonas\'s 3rd Steak Dish','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','jonas_steak_dish3','none'),
- ('1445','Jonas\'s 4th Steak Dish','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','jonas_steak_dish4','none'),
- ('1446','Jonas\'s 5th Steak Dish','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','jonas_steak_dish5','none'),
- ('1447','Mirien\'s Review','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','miriens_review1','none'),
- ('1448','Mirien\'s Review','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','miriens_review2','none'),
- ('1449','Mirien\'s Review','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','miriens_review3','none'),
- ('1450','Mirien\'s Review','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','miriens_review4','none'),
- ('1451','Mirien\'s Review','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','miriens_review5','none'),
- ('1452','Harpy Feather','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','harpy_feather','none'),
- ('1453','Medusa Venom','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','medusa_venom','none'),
- ('1454','Wyrm\'s Tooth','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wyrms_tooth','none'),
- ('1455','Jonas\'s Salad Recipe','false','quest','0','stackable','paper','none','-1','9000','0','false','false','true','false','jonas_salad_recipe','none'),
- ('1456','Jonas\'s Sauce Recipe','false','quest','0','stackable','paper','none','-1','11250','0','false','false','true','false','jonas_sauce_recipe','none'),
- ('1457','Jonas\'s Steak Recipe','false','quest','0','stackable','paper','none','-1','13500','0','false','false','true','false','jonas_steak_recipe','none'),
- ('1458','Crystal: D-Grade','false','none','0','stackable','paper','d','-1','650','0','true','true','true','true','crystal_d','none'),
- ('1459','Crystal: C-Grade','false','none','0','stackable','paper','c','-1','3000','0','true','true','true','true','crystal_c','none'),
- ('1460','Crystal: B-Grade','false','none','0','stackable','paper','b','-1','9000','0','true','true','true','true','crystal_b','none'),
- ('1461','Crystal: A-Grade','false','none','0','stackable','paper','a','-1','15000','0','true','true','true','true','crystal_a','none'),
- ('1462','Crystal: S Grade','false','none','0','stackable','paper','s','-1','25000','0','true','true','true','true','crystal_s','none'),
- ('1463','Soulshot: D-grade','false','shot','3','stackable','paper','d','-1','10','0','true','true','true','true','Soulshot: D-Grade','none'),
- ('1464','Soulshot: C-grade','false','shot','3','stackable','paper','c','-1','15','0','true','true','true','true','Soulshot: C-Grade','none'),
- ('1465','Soulshot: B-grade','false','shot','2','stackable','paper','b','-1','50','0','true','true','true','true','Soulshot: B-Grade','none'),
- ('1466','Soulshot: A-grade','false','shot','2','stackable','paper','a','-1','80','0','true','true','true','true','Soulshot: A-Grade','none'),
- ('1467','Soulshot: S-grade','false','shot','2','stackable','paper','s','-1','100','0','true','true','true','true','Soulshot: S-Grade','none'),
- ('1468','Gludin Panacen','false','quest','0','stackable','paper','s','-1','0','0','true','true','true','true','gludin_panacen','none'),
- ('1469','Gludin Vermouth','false','quest','0','stackable','paper','s','-1','0','0','true','true','true','true','gludin_vermouth','none'),
- ('1470','Artemeter','false','quest','0','stackable','paper','s','-1','0','0','true','true','true','true','artemeter','none'),
- ('1473','Kasha Wolf Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kasha_wolf_fang','none'),
- ('1474','Grave Robber\'s Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','grave_robbers_head','none'),
- ('1475','Black Soulstone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','black_soulstone','none'),
- ('1476','Red Soulstone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','red_soulstone','none'),
- ('1477','Maraku Werewolf Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','maraku_werewolf_head','none'),
- ('1478','Darkwing Bat Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','darkwing_bat_fang','none'),
- ('1479','Varangka\'s Parasite','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','varangkas_parasite','none'),
- ('1480','Kasha Parasite','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kasha_parasite','none'),
- ('1481','Kasha Crystal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kasha_crystal','none'),
- ('1482','Black Wolf Pelt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','black_wolf_pelt','none'),
- ('1483','Goblin Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','goblin_necklace','none'),
- ('1484','Goblin Pendant','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','goblin_pendant','none'),
- ('1485','Goblin Lord Pendant','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','goblin_lord_pendant','none'),
- ('1486','Suspicious Memo','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','suspicious_memo','none'),
- ('1487','Suspicious Contract','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','suspicious_contract','none'),
- ('1488','Chrysolite Ore','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','oriharukon_ore_1','none'),
- ('1489','Torn Map Fragment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','torn_map_fragment','none'),
- ('1490','Hidden Ore Map','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hidden_vein_map','none'),
- ('1491','Bat Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bat_fang','none'),
- ('1492','Floating Stone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','floating_stone','none'),
- ('1493','Tarantula Spider Silk','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tarantula_spider_silk','none'),
- ('1494','Tarantula Spinnerette','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tarantula_spinnerette','none'),
- ('1495','Giant Spider Skin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','giant_spider_skin','none'),
- ('1496','Voucher of Flame','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','voucher_of_flame','none'),
- ('1497','Necklace of Flame','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','neckless_of_flame','none'),
- ('1498','License of Miner','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','license_of_miner','none'),
- ('1499','Laferon\'s Recommendation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','laferons_recommend','none'),
- ('1500','Totem of Hestui','false','none','10','stackable','liquid','none','-1','11000','0','true','true','true','true','hestuis_totem','none'),
- ('1501','Maraku Werewolf Totem','false','none','10','stackable','liquid','none','-1','1200','0','true','true','true','true','maraku_wolfmen_totem','none'),
- ('1502','Grandma\'s Pearl','false','none','10','stackable','liquid','none','-1','5000','0','true','true','true','true','grandmas_pearl','none'),
- ('1503','Grandma\'s Mirror','false','none','10','stackable','liquid','none','-1','500','0','true','true','true','true','grandmas_mirror','none'),
- ('1504','Grandma\'s Necklace','false','none','10','stackable','liquid','none','-1','300','0','true','true','true','true','grandmas_necklace','none'),
- ('1505','Grandma\'s Hairpin','false','none','10','stackable','liquid','none','-1','100','0','true','true','true','true','grandmas_hairpin','none'),
- ('1512','Spellbook: Confusion','false','spellbook','120','normal','paper','none','-1','1150','0','true','true','true','true','sb_confusion1','none'),
- ('1513','Spellbook: Charm','false','spellbook','120','normal','paper','none','-1','800','0','true','true','true','true','sb_charm11','none'),
- ('1514','Spellbook: Resurrection','false','spellbook','120','normal','paper','none','-1','800','0','true','true','true','true','sb_resurrection1','none'),
- ('1515','Spellbook: Kiss of Eva','false','spellbook','120','normal','paper','none','-1','800','0','true','true','true','true','sb_water_breathing','none'),
- ('1516','Spellbook: Corpse Life Drain','false','spellbook','120','normal','paper','none','-1','1800','0','true','true','true','true','sb_corpse_life_drain1','none'),
- ('1517','Spellbook: Body To Mind','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_body_to_mind1','none'),
- ('1518','Amulet: Flame Chant','false','spellbook','120','normal','paper','none','-1','1800','0','true','true','true','true','sb_pure_inspiration1','none'),
- ('1519','Amulet: Pa\'agrio\'s Gift','false','spellbook','120','normal','paper','none','-1','1800','0','true','true','true','true','sb_power_of_paagrio1','none'),
- ('1520','Amulet: Pa\'agrio\'s Blessing','false','spellbook','120','normal','paper','none','-1','2450','0','true','true','true','true','sb_blessing_of_paagrio1','none'),
- ('1521','Amulet: Chant of Fire','false','spellbook','120','normal','paper','none','-1','800','0','true','true','true','true','sb_burning_spirit1','none'),
- ('1522','Amulet: Chant of Battle','false','spellbook','120','normal','paper','none','-1','750','0','true','true','true','true','sb_mass_frenzy1','none'),
- ('1523','Amulet: Chant of Shielding','false','spellbook','120','normal','paper','none','-1','800','0','true','true','true','true','sb_devotioin_of_soul1','none'),
- ('1524','Amulet: Soul Shield','false','spellbook','120','normal','paper','none','-1','100','0','true','true','true','true','sb_devotioin_of_shine1','none'),
- ('1525','Amulet: Life Drain','false','spellbook','120','normal','paper','none','-1','100','0','true','true','true','true','sb_blood_lust1','none'),
- ('1526','Amulet: Fear','false','spellbook','120','normal','paper','none','-1','400','0','true','true','true','true','sb_external_fear1','none'),
- ('1527','Amulet: Venom','false','spellbook','120','normal','paper','none','-1','100','0','true','true','true','true','sb_pain_thorn1','none'),
- ('1528','Amulet: Seal of Chaos','false','spellbook','120','normal','paper','none','-1','1800','0','true','true','true','true','sb_engrave_seal_of_timid1','none'),
- ('1529','Amulet: Dreaming Spirit','false','spellbook','120','normal','paper','none','-1','100','0','true','true','true','true','sb_night_murmur1','none'),
- ('1530','Amulet: Seal of Slow','false','spellbook','120','normal','paper','none','-1','2450','0','true','true','true','true','sb_engrave_seal_of_lazy1','none'),
- ('1531','Amulet: Chill Flame','false','spellbook','120','normal','paper','none','-1','100','0','true','true','true','true','sb_chill_flame1','none'),
- ('1532','Amulet: Blaze Quake','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_eternal_flame1','none'),
- ('1533','Amulet: Aura Sink','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_aura_sway1','none'),
- ('1534','Amulet: Madness','false','spellbook','120','normal','paper','none','-1','800','0','true','true','true','true','sb_entice_madness1','none'),
- ('1535','Amulet: Frost Flame','false','spellbook','120','normal','paper','none','-1','800','0','true','true','true','true','sb_blaze_quake1','none'),
- ('1536','Amulet: Seal of Binding','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_bind_will1','none'),
- ('1537','Amulet: Seal of Poison','false','spellbook','120','normal','paper','none','-1','800','0','true','true','true','true','sb_pain_edge1','none'),
- ('1538','Blessed Scroll of Escape','false','scroll','120','stackable','paper','none','-1','150000','0','true','true','true','true','blessed_scroll_of_escape','scroll'),
- ('1539','Greater Healing Potion','false','potion','5','stackable','liquid','none','-1','1080','0','true','true','true','true','greater_healing_potion','potion'),
- ('1540','Quick Healing Potion','false','potion','180','stackable','liquid','none','-1','10000','0','true','true','true','true','quick_healing_potion','potion'),
- ('1541','Honey Khandar','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','honey_khandar','none'),
- ('1542','Bear Fur Cloak','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bear_fur_cloak','none'),
- ('1543','Bloody Axe','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bloody_axe','none'),
- ('1544','Ancestor Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ancestor_skull','none'),
- ('1545','Spider Dust','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','spider_dust','none'),
- ('1546','Deep Sea Orb','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','deep_sea_orb','none'),
- ('1547','Bolter\'s List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bolters_list','none'),
- ('1548','Mining Boots','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mining_boots','none'),
- ('1549','Miner\'s Pick','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','miners_pick','none'),
- ('1550','Boomboom Powder','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','boomboom_powder','none'),
- ('1551','Redstone Beer','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','redstone_beer','none'),
- ('1552','Bolter\'s Smelly Socks','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bolters_smelly_socks','none'),
- ('1553','Hatos\'s 1st Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hatoss_order1','none'),
- ('1554','Hatos\'s 2nd Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hatoss_order2','none'),
- ('1555','Hatos\'s 3rd Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hatoss_order3','none'),
- ('1556','Letter to Dark Elf','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_to_darkelf1','none'),
- ('1557','Letter to Human','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_to_human','none'),
- ('1558','Letter to Elf','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_to_elf1','none'),
- ('1559','Gouph\'s Contract','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gouphs_contract','none'),
- ('1560','Reep\'s Contract','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','reeps_contract','none'),
- ('1561','Elven Wine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','elven_wine','none'),
- ('1562','Brunon\'s Dice','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bronps_dice','none'),
- ('1563','Brunon\'s Contract','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bronps_contract','none'),
- ('1564','Aquamarine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','aquamarine','none'),
- ('1565','Chrysoberyl','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','chrysoberyl','none'),
- ('1566','Gem Box','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gem_box1','none'),
- ('1567','Coal Piece','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','coal_piece','none'),
- ('1568','Brunon\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bronps_letter','none'),
- ('1569','Berry Tart','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','berry_tart','none'),
- ('1570','Bat Diagram','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bat_diagram','none'),
- ('1571','Star Diamond','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','star_diamond','none'),
- ('1572','Starstone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','starstone1','none'),
- ('1573','Starstone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','starstone2','none'),
- ('1574','Mirien\'s Review','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','miriens_review2','none'),
- ('1575','Mirien\'s Review','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','miriens_review3','none'),
- ('1576','Mirien\'s Review','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','miriens_review4','none'),
- ('1577','Mirien\'s Review','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','miriens_review5','none'),
- ('1578','Green Blood','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','green_blood','none'),
- ('1579','Goblin Dwelling Map','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','goblin_dwelling_map','none'),
- ('1580','Kuruka Ratman Tooth','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kuruka_ratman_tooth','none'),
- ('1581','Betrayer\'s Report','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','betrayer_sue_report','none'),
- ('1582','Betrayer\'s Report','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','betrayer_wanuk_report','none'),
- ('1583','Betrayer\'s Report','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','betrayer_chewba_report','none'),
- ('1584','Betrayer\'s Report','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','betrayer_heitafu_report','none'),
- ('1585','Betrayer\'s Report','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','betrayer_picubo_report','none'),
- ('1586','Betrayer\'s Report','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','betrayer_bumbum_report','none'),
- ('1587','Betrayer\'s Report','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','betrayer_minsku_report','none'),
- ('1588','Betrayer\'s Report','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','betrayer_chuchu_report','none'),
- ('1589','Betrayer\'s Report','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','betrayer_umbar_report','none'),
- ('1590','Betrayer\'s Report','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','betrayer_zakan_report','none'),
- ('1591','Head of Betrayer','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','head_of_betrayer','none'),
- ('1592','Mark of Raider','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_raider','none'),
- ('1593','Pomegranate','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pomegranate','none'),
- ('1594','1st Leather Pouch','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leather_pouch1','none'),
- ('1595','2nd Leather Pouch','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leather_pouch2','none'),
- ('1596','3rd Leather Pouch','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leather_pouch3','none'),
- ('1597','1st Leather Pouch (Full)','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leather_pouch1full','none'),
- ('1598','2nd Leather Pouch (Full)','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leather_pouch2full','none'),
- ('1599','3rd Leather Pouch (Full)','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leather_pouch3full','none'),
- ('1600','Kasha Bear Claw','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kasha_bear_claw','none'),
- ('1601','Kasha Blade Spider Talon','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kasha_bspider_talon','none'),
- ('1602','Scarlet Salamander Scale','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','s_salamander_scale','none'),
- ('1603','Fiery Spirit Scroll','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scroll_fiery_spirit','none'),
- ('1604','Rosheek\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rosheeks_letter','none'),
- ('1605','Gantaki\'s Letter of Recommendation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gantakis_letter','none'),
- ('1606','Fig','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fig','none'),
- ('1607','4th Leather Pouch','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leather_purse4','none'),
- ('1608','4th Leather Pouch (Full)','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leather_pouch4full','none'),
- ('1609','Vuku Orc Tusk','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','vuku_tusk','none'),
- ('1610','Ratman Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ratman_fang','none'),
- ('1611','Langk Lizardman Tooth','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','langk_tooth','none'),
- ('1612','Felim Lizardman Tooth','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','felim_tooth','none'),
- ('1613','Iron Will Scroll','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scroll_iron_will','none'),
- ('1614','Toruku\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','torukus_letter','none'),
- ('1615','Khavatari Totem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','khavatari_totem','none'),
- ('1616','Fire Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fire_charm','none'),
- ('1617','Kasha Bear Pelt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kasha_bear_pelt','none'),
- ('1618','Kasha Blade Spider Husk','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kasha_bspider_husk','none'),
- ('1619','1st Fiery Egg','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fiery_egg1','none'),
- ('1620','Hestui Mask','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hestui_mask','none'),
- ('1621','2nd Fiery Egg','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fiery_egg2','none'),
- ('1622','Totem Spirit Claw','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','totem_spirit_claw','none'),
- ('1623','Tataru\'s Letter of Recommendation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tatarus_letter','none'),
- ('1624','Flame Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','flame_charm','none'),
- ('1625','Grizzly Blood','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','grizzly_blood','none'),
- ('1626','Blood Cauldron','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','blood_cauldron','none'),
- ('1627','Spirit Net','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','spirit_net','none'),
- ('1628','Bound Durka Spirit','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bound_durka_spirit','none'),
- ('1629','Durka Parasite','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','durka_parasite','none'),
- ('1630','Totem Spirit Blood','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','totem_spirit_blood','none'),
- ('1631','Mask of Medium','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mask_of_medium','none'),
- ('1632','Silvera\'s Ring','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','silverys_ring','none'),
- ('1633','1st Pass Certificate','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pass_1st','none'),
- ('1634','2nd Pass Certificate','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pass_2nd','none'),
- ('1635','Final Pass Certificate','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pass_final','none'),
- ('1636','Boogle Ratman Tooth','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ratman_tooth','none'),
- ('1637','Boogle Ratman Leader\'s Tooth','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','big_ratman_tooth','none'),
- ('1638','Kluto\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','klutos_letter','none'),
- ('1639','Footprint of Thief','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','footprint','none'),
- ('1640','Stolen Secret Box','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','secret_box1','none'),
- ('1641','Secret Box','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','secret_box2','none'),
- ('1642','Ring of Raven','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ring_of_raven','none'),
- ('1643','Pippi\'s Letter of Recommendation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pipis_letter','none'),
- ('1644','Raut\'s Teleport Scroll','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','routs_tp_scroll','none'),
- ('1645','Succubus Undies','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','succubus_undies','none'),
- ('1646','Mion\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mions_letter','none'),
- ('1647','Bronk\'s Ingot','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bronks_ingot','none'),
- ('1648','Shari\'s Axe','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','chalis_axe','none'),
- ('1649','Zimenf\'s Potion','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','zimenfs_potion','none'),
- ('1650','Bronk\'s Pay','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bronks_pay','none'),
- ('1651','Shari\'s Pay','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','chalis_pay','none'),
- ('1652','Zimenf\'s Pay','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','zimenfs_pay','none'),
- ('1653','Bear Picture','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bear_pic','none'),
- ('1654','Tarantula Picture','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tarantula_pic','none'),
- ('1655','Honey Jar','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','honey_jar','none'),
- ('1656','Bead','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bead','none'),
- ('1657','Bead Parcel','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bead_parcel','none'),
- ('1658','Gatekeeper Charm','false','none','10','stackable','liquid','none','-1','0','0','true','true','true','true','gatekeeper_charm','none'),
- ('1659','Gatekeeper Token','false','none','10','stackable','liquid','none','-1','0','0','true','true','true','true','gatekeeper_token','none'),
- ('1661','Thief Key','false','none','10','stackable','liquid','none','-1','1000','0','true','true','true','true','key_of_thief','none'),
- ('1662','Wood','false','none','2','stackable','liquid','none','-1','20','0','true','true','true','true','__wood','none'),
- ('1663','(Not used) Trunk','false','none','2','stackable','liquid','none','-1','20','0','true','true','true','true','__stem','none'),
- ('1664','Steel Powder','false','none','2','stackable','liquid','none','-1','80','0','true','true','true','true','__steel_powder','none'),
- ('1665','World Map','false','none','0','normal','liquid','none','-1','500','0','true','true','true','true','world_map','none'),
- ('1666','Recipe: Wooden Arrow','false','recipe','30','stackable','liquid','none','-1','600','0','true','true','true','true','rp_wooden_arrow','recipe'),
- ('1667','Spellbook: Summon Shadow','false','spellbook','120','normal','paper','none','-1','800','0','true','true','true','true','sb_summon_shadow1','none'),
- ('1668','Spellbook: Summon Mew the Cat','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_summon_cuti_cat1','none'),
- ('1669','Spellbook: Summon Boxer the Unicorn','false','spellbook','120','normal','paper','none','-1','800','0','true','true','true','true','sb_summon_unicorn_boxer1','none'),
- ('1670','Spellbook: Summon Mirage the Unicorn','false','spellbook','120','normal','paper','none','-1','1250','0','true','true','true','true','sb_summon_unicorn_mirage1','none'),
- ('1671','Spellbook: Summon Silhouette','false','spellbook','120','normal','paper','none','-1','800','0','true','true','true','true','sb_summon_silhouette1','none'),
- ('1672','__','false','none','40','normal','paper','none','-1','800','0','true','true','true','true','__1','none'),
- ('1673','__','false','none','40','normal','paper','none','-1','800','0','true','true','true','true','__2','none'),
- ('1674','Twig of Treant','false','material','2','stackable','liquid','none','-1','80','0','true','true','true','true','__twig_of_ent','material'),
- ('1675','Beast Blood','false','material','2','stackable','liquid','none','-1','40','0','true','true','true','true','__beast_blood','material'),
- ('1676','Beast Bone','false','material','2','stackable','liquid','none','-1','20','0','true','true','true','true','__beast_bone','material'),
- ('1677','Hot Oil','false','material','2','stackable','liquid','none','-1','40','0','true','true','true','true','__hot_oil','material'),
- ('1678','(Not used) Thread','false','material','2','stackable','liquid','none','-1','10','0','true','true','true','true','__thread','material'),
- ('1679','Bronze','false','material','2','stackable','liquid','none','-1','150','0','true','true','true','true','__bronze','material'),
- ('1680','Fur','false','material','2','stackable','liquid','none','-1','40','0','true','true','true','true','__fur','material'),
- ('1681','Elf Stone','false','material','2','stackable','liquid','none','-1','1500','0','true','true','true','true','__elf_stone','material'),
- ('1682','Tear of Holy Spirit','false','material','2','stackable','liquid','none','-1','1000','0','true','true','true','true','__tear_of_holyspirit','material'),
- ('1683','Mithril','false','material','2','stackable','liquid','none','-1','400','0','true','true','true','true','__mythril','material'),
- ('1684','Durable Stem','false','material','2','stackable','liquid','none','-1','220','0','true','true','true','true','__durable_stem','material'),
- ('1685','Wooden Frame','false','material','2','stackable','liquid','none','-1','2000','0','true','true','true','true','__wooden_frame','material'),
- ('1686','Bark of Treant','false','material','2','stackable','liquid','none','-1','480','0','true','true','true','true','__bark_of_ent','material'),
- ('1687','(Not used) Coarse Bone Powder','false','material','2','stackable','liquid','none','-1','80','0','true','true','true','true','__rough_bone_powder','material'),
- ('1688','Refined Steel','false','material','2','stackable','liquid','none','-1','480','0','true','true','true','true','__refined_steel','material'),
- ('1689','(Not used) Leather','false','material','2','stackable','liquid','none','-1','300','0','true','true','true','true','__leather','material'),
- ('1690','Bowstring','false','material','2','stackable','liquid','none','-1','300','0','true','true','true','true','__bowstring','material'),
- ('1691','Steel Frame','false','material','2','stackable','liquid','none','-1','4400','0','true','true','true','true','__steel_frame','material'),
- ('1692','(Not used) Cord','false','material','2','stackable','liquid','none','-1','45','0','true','true','true','true','__cord','material'),
- ('1693','Refined Bronze','false','material','2','stackable','liquid','none','-1','890','0','true','true','true','true','__refined_bronze','material'),
- ('1694','Treant Potion','false','material','2','stackable','liquid','none','-1','800','0','true','true','true','true','__ent_potion','material'),
- ('1695','Spell Paper','false','material','2','stackable','liquid','none','-1','580','0','true','true','true','true','__spell_paper','material'),
- ('1696','Flaming Oil','false','material','2','stackable','liquid','none','-1','500','0','true','true','true','true','__flaming_oil','material'),
- ('1697','Magic Powder','false','material','2','stackable','liquid','none','-1','3080','0','true','true','true','true','__magic_powder','material'),
- ('1698','Refined Mithril','false','material','2','stackable','liquid','none','-1','2100','0','true','true','true','true','__refined_mythril','material'),
- ('1699','Fortified Steel','false','material','2','stackable','liquid','none','-1','1860','0','true','true','true','true','__fortified_steel','material'),
- ('1700','(Not used) Oriharukon','false','material','2','stackable','liquid','none','-1','6300','0','true','true','true','true','__oriharukon','material'),
- ('1701','Spell Solution','false','material','2','stackable','liquid','none','-1','8160','0','true','true','true','true','__spell_solution','material'),
- ('1702','Metal Frame','false','material','2','stackable','liquid','none','-1','12500','0','true','true','true','true','__metal_frame','material'),
- ('1703','Steel of The Highest Grade','false','material','2','stackable','liquid','none','-1','3720','0','true','true','true','true','__steel_of_highestgrade','material'),
- ('1704','Stone of Anguish','false','material','60','stackable','liquid','none','-1','157','0','true','true','true','true','__stone_of_anguish','material'),
- ('1705','Sprig of Wisdom','false','material','60','stackable','liquid','none','-1','258','0','true','true','true','true','__sprig_of_wisdom','material'),
- ('1706','Blue Diamond Fragment','false','material','60','stackable','liquid','none','-1','471','0','true','true','true','true','__blue_diamond_fragment','material'),
- ('1707','Saint\'s Molar','false','material','60','stackable','liquid','none','-1','568','0','true','true','true','true','__saint\'s_molar','material'),
- ('1708','Smoky Quartz','false','material','60','stackable','liquid','none','-1','1136','0','true','true','true','true','__smoky_quartz','material'),
- ('1709','Blood of Manticore','false','material','60','stackable','liquid','none','-1','568','0','true','true','true','true','__blood_of_manticor','material'),
- ('1710','Tiger\'s Eye Crystal','false','material','60','stackable','liquid','none','-1','3215','0','true','true','true','true','__tiger\'seye_crystal','material'),
- ('1711','Claw of Leopard','false','material','60','stackable','liquid','none','-1','402','0','true','true','true','true','__claw_of_leopard','material'),
- ('1712','Leather Shoes Material','false','material','60','stackable','liquid','none','-1','87','0','true','true','true','true','__leather_shoes_material','material'),
- ('1713','Leather Tunic Material','false','material','60','stackable','liquid','none','-1','261','0','true','true','true','true','__leather_tunic_material','material'),
- ('1714','Leather Stockings Material','false','material','60','stackable','liquid','none','-1','129','0','true','true','true','true','__leather_hose_material','material'),
- ('1715','Leather Helmet Material','false','material','60','stackable','liquid','none','-1','240','0','true','true','true','true','__leather_helmet_material','material'),
- ('1716','Leather Gloves Texture','false','material','60','stackable','liquid','none','-1','226','0','true','true','true','true','__leather_gloves_texture','material'),
- ('1717','Leather Gloves Lining','false','material','60','stackable','liquid','none','-1','113','0','true','true','true','true','__leather_gloves_lining','material'),
- ('1718','Black Bone Fragment','false','material','60','stackable','liquid','none','-1','693','0','true','true','true','true','__black_bone_fragment','material'),
- ('1719','Hard Leather Shirt Material','false','material','60','stackable','liquid','none','-1','963','0','true','true','true','true','__hard_leather_shirt_material','material'),
- ('1720','Blue-Black Bone Fragment','false','material','60','stackable','liquid','none','-1','1493','0','true','true','true','true','__blue-black_bone_fragment','material'),
- ('1721','Hard Leather Gaiter Material','false','material','60','stackable','liquid','none','-1','500','0','true','true','true','true','__hard_leather_gaiters_material','material'),
- ('1722','Boots Material','false','material','60','stackable','liquid','none','-1','271','0','true','true','true','true','__boots_material','material'),
- ('1723','Leather Boots Material','false','material','60','stackable','liquid','none','-1','364','0','true','true','true','true','__leather_boots_material','material'),
- ('1724','Skull Fragment','false','material','60','stackable','liquid','none','-1','512','0','true','true','true','true','__skull_fragment','material'),
- ('1725','Dark Stockings Material','false','material','60','stackable','liquid','none','-1','632','0','true','true','true','true','__dark_hose_material','material'),
- ('1726','Crafted Leather Gloves Lining','false','material','60','stackable','liquid','none','-1','523','0','true','true','true','true','__excellence_leather_gloves_lining','material'),
- ('1727','Crafted Leather Gloves Texture','false','material','60','stackable','liquid','none','-1','261','0','true','true','true','true','__excellence_leather_gloves_texture','material'),
- ('1728','Steel Scale','false','material','60','stackable','liquid','none','-1','1790','0','true','true','true','true','__steel_scale','material'),
- ('1729','Pure White Cloth','false','material','60','stackable','liquid','none','-1','833','0','true','true','true','true','__purewhite_cloth','material'),
- ('1730','Purifying Potion','false','material','60','stackable','liquid','none','-1','3330','0','true','true','true','true','__purifying_potion','material'),
- ('1731','Steel Scale Gaiters','false','material','60','stackable','liquid','none','-1','1148','0','true','true','true','true','__gaiters_steel_scale','material'),
- ('1732','Leather Fittings','false','material','60','stackable','liquid','none','-1','1520','0','true','true','true','true','__leather_fittings','material'),
- ('1733','Large Sheet Iron','false','material','60','stackable','liquid','none','-1','1900','0','true','true','true','true','__large_sheet_iron','material'),
- ('1734','Small Leather Fittings','false','material','60','stackable','liquid','none','-1','952','0','true','true','true','true','__small_leather_fittings','material'),
- ('1735','Small Sheet Iron','false','material','60','stackable','liquid','none','-1','1190','0','true','true','true','true','__small_sheet_iron','material'),
- ('1736','Iron Boots Binding','false','material','60','stackable','liquid','none','-1','635','0','true','true','true','true','__iron_boots_binding','material'),
- ('1737','Iron Boots Frame','false','material','60','stackable','liquid','none','-1','508','0','true','true','true','true','__iron_boots_frame','material'),
- ('1738','Wide Blade','false','material','60','stackable','liquid','none','-1','625','0','true','true','true','true','__wide_blade','material'),
- ('1739','Broadsword Mold','false','material','60','stackable','liquid','none','-1','1250','0','true','true','true','true','__broad_sword_mold','material'),
- ('1740','Crafted Willow Branch','false','material','60','stackable','liquid','none','-1','833','0','true','true','true','true','__crafted_willow_branch','material'),
- ('1741','Stave','false','material','60','stackable','liquid','none','-1','900','0','true','true','true','true','__stave','material'),
- ('1742','Red Cedar Branch','false','material','60','stackable','liquid','none','-1','1797','0','true','true','true','true','__red_cedar_branch','material'),
- ('1743','Dirk Blade','false','material','60','stackable','liquid','none','-1','1082','0','true','true','true','true','__dirk_blade','material'),
- ('1744','Dirk Mold','false','material','60','stackable','liquid','none','-1','5410','0','true','true','true','true','__dirk_mold','material'),
- ('1745','Brandish Blade','false','material','60','stackable','liquid','none','-1','1880','0','true','true','true','true','__brandish_blade','material'),
- ('1746','Short Spear Blade','false','material','60','stackable','liquid','none','-1','3000','0','true','true','true','true','__short_spear_blade','material'),
- ('1747','Shining Blade','false','material','60','stackable','liquid','none','-1','1700','0','true','true','true','true','__shining_blade','material'),
- ('1748','Sword of Reflection Mold','false','material','60','stackable','liquid','none','-1','13600','0','true','true','true','true','__sword_of_reflexion_mold','material'),
- ('1749','Branch of The Mother Tree','false','material','60','stackable','liquid','none','-1','4533','0','true','true','true','true','__branch_of_the_mothertree','material'),
- ('1750','Dark Forest Leaf','false','material','60','stackable','liquid','none','-1','2267','0','true','true','true','true','__darkforest_leaf','material'),
- ('1751','Lump of Iron','false','material','60','stackable','liquid','none','-1','5278','0','true','true','true','true','__lump_of_iron','material'),
- ('1752','Piece of Sword Breaker','false','material','60','stackable','liquid','none','-1','3050','0','true','true','true','true','__piece_of_sword_breaker','material'),
- ('1753','Sword Breaker Mold','false','material','60','stackable','liquid','none','-1','24400','0','true','true','true','true','__sword_breaker_mold','material'),
- ('1754','Steel Bow Mold','false','material','60','stackable','liquid','none','-1','4067','0','true','true','true','true','__steel_bow_mold','material'),
- ('1755','Metal Stave','false','material','60','stackable','liquid','none','-1','8133','0','true','true','true','true','__metal_stave','material'),
- ('1756','Spirit of The Saber Smith','false','material','60','stackable','liquid','none','-1','4544','0','true','true','true','true','__spirit_of_the_saber_smith','material'),
- ('1757','Saber Blade','false','material','60','stackable','liquid','none','-1','5453','0','true','true','true','true','__saber_blade','material'),
- ('1758','Saber Mold','false','material','60','stackable','liquid','none','-1','13633','0','true','true','true','true','__saber_mold','material'),
- ('1759','Blood of Assassin','false','material','60','stackable','liquid','none','-1','4544','0','true','true','true','true','__blood_of_the_assassin','material'),
- ('1760','Assassin Blade','false','material','60','stackable','liquid','none','-1','5453','0','true','true','true','true','__assassin_blade','material'),
- ('1761','Assassin Mold','false','material','60','stackable','liquid','none','-1','27267','0','true','true','true','true','__assassin_mold','material'),
- ('1762','Piece of Trident','false','material','60','stackable','liquid','none','-1','6850','0','true','true','true','true','__piece_of_trident','material'),
- ('1763','Ruby Fragment','false','material','60','stackable','liquid','none','-1','5113','0','true','true','true','true','__ruby_fragment','material'),
- ('1764','Deep Sea Water','false','material','60','stackable','liquid','none','-1','10225','0','true','true','true','true','__deepsea_water','material'),
- ('1765','Spinebone Fragment','false','material','60','stackable','liquid','none','-1','6440','0','true','true','true','true','__spinebone_fragment','material'),
- ('1766','Spinebone Pattern','false','material','60','stackable','liquid','none','-1','12880','0','true','true','true','true','__spinebone_pattern','material'),
- ('1767','Piece of Mace of Judgment','false','material','60','stackable','liquid','none','-1','7156','0','true','true','true','true','__piece_of_mage_of_judgement','material'),
- ('1768','Pattern of Judgment','false','material','60','stackable','liquid','none','-1','10733','0','true','true','true','true','__pattern_of_judgement','material'),
- ('1769','Piece of Conjuror\'s Staff','false','material','60','stackable','liquid','none','-1','6440','0','true','true','true','true','__piece_of_conjure_staff','material'),
- ('1770','Magic Flute','false','material','60','stackable','liquid','none','-1','12880','0','true','true','true','true','__magic_flute','material'),
- ('1771','Elven Stave','false','material','60','stackable','liquid','none','-1','21467','0','true','true','true','true','__elven_stave','material'),
- ('1772','Leaf of the Mother Tree','false','material','60','stackable','liquid','none','-1','5367','0','true','true','true','true','__leaf_of_the_mothertree','material'),
- ('1773','Piece of Dwarven Trident','false','material','60','stackable','liquid','none','-1','8613','0','true','true','true','true','__piece_of_dwarven_trident','material'),
- ('1774','Piece of Two-Handed Sword','false','material','60','stackable','liquid','none','-1','5688','0','true','true','true','true','__piece_of_two-handed_sword','material'),
- ('1775','Two-Handed Sword Mold','false','material','60','stackable','liquid','none','-1','96700','0','true','true','true','true','__two-handed_sword_mold','material'),
- ('1776','Piece of Spiked Club','false','material','60','stackable','liquid','none','-1','32233','0','true','true','true','true','__piece_of_spike_club','material'),
- ('1777','Steel Piece of Club','false','material','60','stackable','liquid','none','-1','6447','0','true','true','true','true','__steel_piece_of_club','material'),
- ('1778','Shilen Bone','false','material','60','stackable','liquid','none','-1','6447','0','true','true','true','true','__bone_of_silenus','material'),
- ('1779','Shilen Mane','false','material','60','stackable','liquid','none','-1','64467','0','true','true','true','true','__mane_of_silenus','material'),
- ('1780','Purity Bronze','false','material','60','stackable','liquid','none','-1','9210','0','true','true','true','true','__purity_bronze','material'),
- ('1781','Gastraphetes Stave','false','material','60','stackable','liquid','none','-1','32233','0','true','true','true','true','__gastraphetes_stave','material'),
- ('1782','Gastraphetes Addendum','false','material','60','stackable','liquid','none','-1','6447','0','true','true','true','true','__gastraphetes_addendum','material'),
- ('1783','Blood of Fiend','false','material','60','stackable','liquid','none','-1','10744','0','true','true','true','true','__blood_of_fiend','material'),
- ('1784','Cursed Leather','false','material','60','stackable','liquid','none','-1','10744','0','true','true','true','true','__cursed_leather','material'),
- ('1785','Soul Ore','false','material','10','stackable','liquid','none','-1','250','0','true','true','true','true','soul_ore','material'),
- ('1786','Recipe: Broad Sword','false','recipe','30','stackable','liquid','none','-1','250','0','true','true','true','true','rp_broad_sword','recipe'),
- ('1787','Recipe: Willow Staff','false','recipe','30','stackable','liquid','none','-1','250','0','true','true','true','true','rp_willow_staff','recipe'),
- ('1788','Recipe: Bow','false','recipe','30','stackable','liquid','none','-1','250','0','true','true','true','true','rp_bow','recipe'),
- ('1789','Recipe: Cedar Staff','false','recipe','30','stackable','liquid','none','-1','1082','0','true','true','true','true','rp_cedar_staff','recipe'),
- ('1790','Recipe: Dirk','false','recipe','30','stackable','liquid','none','-1','1082','0','true','true','true','true','rp_dirk','recipe'),
- ('1791','Recipe: Brandish','false','recipe','30','stackable','liquid','none','-1','1082','0','true','true','true','true','rp_brandish','recipe'),
- ('1792','Recipe: Short Spear','false','recipe','30','stackable','liquid','none','-1','2720','0','true','true','true','true','rp_short_spear','recipe'),
- ('1793','Recipe: Sword of Reflection','false','recipe','30','stackable','liquid','none','-1','2720','0','true','true','true','true','rp_sword_of_reflexion','recipe'),
- ('1794','Recipe: Forest Bow','false','recipe','30','stackable','liquid','none','-1','2720','0','true','true','true','true','rp_bow_of_forest','recipe'),
- ('1795','Recipe:Leather Shoes','false','recipe','30','stackable','liquid','none','-1','53','0','true','true','true','true','rp_leather_shoes','recipe'),
- ('1796','Recipe: Leather Tunic','false','recipe','30','stackable','liquid','none','-1','159','0','true','true','true','true','rp_leather_tunic','recipe'),
- ('1797','Recipe: Leather Stockings','false','recipe','30','stackable','liquid','none','-1','99','0','true','true','true','true','rp_leather_hose','recipe'),
- ('1798','Recipe: Leather Helmet','false','recipe','30','stackable','liquid','none','-1','204','0','true','true','true','true','rp_leather_helmet','recipe'),
- ('1799','Recipe: Leather Gloves','false','recipe','30','stackable','liquid','none','-1','135','0','true','true','true','true','rp_leather_gloves','recipe'),
- ('1800','Recipe: Piece Bone Breastplate','false','recipe','30','stackable','liquid','none','-1','636','0','true','true','true','true','rp_piece_bone_breastplate','recipe'),
- ('1801','Recipe: Piece Bone Gaiters','false','recipe','30','stackable','liquid','none','-1','397','0','true','true','true','true','rp_piece_bone_gaiters','recipe'),
- ('1802','Recipe: Necklace of Anguish','false','recipe','30','stackable','liquid','none','-1','93','0','true','true','true','true','rp_necklace_of_anguish','recipe'),
- ('1803','Recipe: Necklace of Wisdom','false','recipe','30','stackable','liquid','none','-1','238','0','true','true','true','true','rp_necklace_of_wisdom','recipe'),
- ('1804','Recipe: Soulshot: D-Grade','false','recipe','30','stackable','liquid','none','-1','5000','0','true','true','true','true','rp_soulshot_d','recipe'),
- ('1805','Recipe: Soulshot: C-Grade','false','recipe','30','stackable','liquid','none','-1','60000','0','true','true','true','true','rp_soulshot_c','recipe'),
- ('1806','Recipe: Soulshot: B-Grade','false','recipe','30','stackable','liquid','none','-1','100000','0','true','true','true','true','rp_soulshot_b','recipe'),
- ('1807','Recipe: Soulshot: A-Grade','false','recipe','30','stackable','liquid','none','-1','150000','0','true','true','true','true','rp_soulshot_a','recipe'),
- ('1808','Recipe: Soulshot: S Grade','false','recipe','30','stackable','liquid','none','-1','450000','0','true','true','true','true','rp_soulshot_s','recipe'),
- ('1809','Recipe: Durable Stem','false','recipe','30','stackable','liquid','none','-1','100','0','true','true','true','true','__rp_durable_stem','recipe'),
- ('1810','Recipe: Wooden Frame','false','recipe','30','stackable','liquid','none','-1','100','0','true','true','true','true','__rp_wooden_frame','recipe'),
- ('1811','Recipe: Bark of Treant','false','recipe','30','stackable','liquid','none','-1','100','0','true','true','true','true','__rp_bark_of_ent','recipe'),
- ('1812','Recipe: Coarse Bone Powder','false','recipe','30','stackable','liquid','none','-1','100','0','true','true','true','true','__rp_rough_bone_powder','recipe'),
- ('1813','Recipe: Refined Steel','false','recipe','30','stackable','liquid','none','-1','100','0','true','true','true','true','__rp_refined_steel','recipe'),
- ('1814','Recipe: Leather','false','recipe','30','stackable','liquid','none','-1','380','0','true','true','true','true','rp_leather','recipe'),
- ('1815','Recipe: Bowstring','false','recipe','30','stackable','liquid','none','-1','100','0','true','true','true','true','__rp_bowstring','recipe'),
- ('1816','Recipe: Steel Frame','false','recipe','30','stackable','liquid','none','-1','500','0','true','true','true','true','__rp_steel_frame','recipe'),
- ('1817','Recipe: Cord','false','recipe','30','stackable','liquid','none','-1','1000','0','true','true','true','true','rp_cord','recipe'),
- ('1818','Recipe: Refined Bronze','false','recipe','30','stackable','liquid','none','-1','500','0','true','true','true','true','__rp_refined_bronze','recipe'),
- ('1819','Recipe: Treant Potion','false','recipe','30','stackable','liquid','none','-1','500','0','true','true','true','true','__rp_ent_potion','recipe'),
- ('1820','Recipe: Spell Paper','false','recipe','30','stackable','liquid','none','-1','500','0','true','true','true','true','__rp_spell_paper','recipe'),
- ('1821','Recipe: Flaming Oil','false','recipe','30','stackable','liquid','none','-1','500','0','true','true','true','true','__rp_flaming_oil','recipe'),
- ('1822','Recipe: Magic Powder','false','recipe','30','stackable','liquid','none','-1','1000','0','true','true','true','true','__rp_magic_powder','recipe'),
- ('1823','Recipe: Refined Mythril','false','recipe','30','stackable','liquid','none','-1','1000','0','true','true','true','true','__rp_refined_mythril','recipe'),
- ('1824','Recipe: Fortified Steel','false','recipe','30','stackable','liquid','none','-1','1000','0','true','true','true','true','__rp_fortified_steel','recipe'),
- ('1825','Recipe: Oriharukon','false','recipe','30','stackable','liquid','none','-1','2800','0','true','true','true','true','rp_oriharukon','recipe'),
- ('1826','Recipe: Spell Solution','false','recipe','30','stackable','liquid','none','-1','1000','0','true','true','true','true','__rp_spell_solution','recipe'),
- ('1827','Recipe: Metal Frame','false','recipe','30','stackable','liquid','none','-1','1000','0','true','true','true','true','__rp_metal_frame','recipe'),
- ('1828','Recipe: Steel of Highest Grade','false','recipe','30','stackable','liquid','none','-1','1000','0','true','true','true','true','__rp_steel_of_highestgrade','recipe'),
- ('1829','Scroll of Escape: Clan Hall','false','scroll','120','stackable','paper','none','-1','500','0','true','true','true','true','scroll_of_escape_to_agit','scroll'),
- ('1830','Scroll of Escape: Castle','false','scroll','120','stackable','paper','none','-1','500','0','true','true','true','true','scroll_of_escape_to_castle','scroll'),
- ('1831','Antidote','false','potion','20','stackable','liquid','none','-1','75','0','true','true','true','true','antidote','potion'),
- ('1832','Greater Antidote','false','potion','20','stackable','liquid','none','-1','180','0','true','true','true','true','advanced_antidote','potion'),
- ('1833','Bandage','false','potion','20','stackable','liquid','none','-1','75','0','true','true','true','true','bandage','potion'),
- ('1834','Emergency Dressing','false','potion','20','stackable','liquid','none','-1','180','0','true','true','true','true','emergency_dressing','potion'),
- ('1835','Soulshot: No Grade','false','shot','4','stackable','paper','none','-1','7','0','true','true','true','true','soulshot_none','none'),
- ('1836','Kendell\'s 1st Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kendnells_order1','none'),
- ('1837','Kendell\'s 2nd Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kendnells_order2','none'),
- ('1838','Kendell\'s 3rd Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kendnells_order3','none'),
- ('1839','Kendell\'s 4th Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kendnells_order4','none'),
- ('1840','Kendell\'s 5th Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kendnells_order5','none'),
- ('1841','Kendell\'s 6th Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kendnells_order6','none'),
- ('1842','Kendell\'s 7th Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kendnells_order7','none'),
- ('1843','Kendell\'s 8th Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kendnells_order8','none'),
- ('1844','Kaboo Chief\'s 1st Torque','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kaboo_chief_torc1','none'),
- ('1845','Kaboo Chief\'s 2nd Torque','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kaboo_chief_torc2','none'),
- ('1846','Turek Dog Tag','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','turek_dogtag','none'),
- ('1847','Turek Medallion','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','turek_medallion','none'),
- ('1848','Clay Urn Fragment','false','none','10','stackable','liquid','none','-1','200','0','true','true','true','true','clay_urn_fragment','none'),
- ('1849','Brass Trinket Piece','false','none','10','stackable','liquid','none','-1','240','0','true','true','true','true','brass_trinket_piece','none'),
- ('1850','Bronze Mirror Piece','false','none','10','stackable','liquid','none','-1','240','0','true','true','true','true','bronze_mirror_piece','none'),
- ('1851','Jade Necklace Bead','false','none','10','stackable','liquid','none','-1','280','0','true','true','true','true','jade_necklace_bead','none'),
- ('1852','Ancient Clay Urn','false','none','10','stackable','liquid','none','-1','1200','0','true','true','true','true','ancient_clay_urn','none'),
- ('1853','Ancient Brass Tiara','false','none','10','stackable','liquid','none','-1','1400','0','true','true','true','true','ancient_brass_tiara','none'),
- ('1854','Ancient Bronze Mirror','false','none','10','stackable','liquid','none','-1','1400','0','true','true','true','true','ancient_bronze_mirror','none'),
- ('1855','Ancient Jade Necklace','false','none','10','stackable','liquid','none','-1','1700','0','true','true','true','true','ancient_jade_necklace','none'),
- ('1856','Amulet: Chant of Life','false','spellbook','120','normal','paper','none','-1','1600','0','true','true','true','true','sb_inspire_life_force1','none'),
- ('1857','Keltir Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fox_fang1','none'),
- ('1858','Keltir Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fox_fang2','none'),
- ('1859','Keltir Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fox_fang3','none'),
- ('1860','Keltir Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fox_fang4','none'),
- ('1861','Keltir Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fox_fang5','none'),
- ('1862','Keltir Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fox_fang6','none'),
- ('1863','Map: Elmore','false','none','0','normal','liquid','none','-1','500','0','true','true','true','true','world_map_2','none'),
- ('1864','Stem','false','material','2','stackable','liquid','none','-1','100','0','true','true','true','true','stem','material'),
- ('1865','Varnish','false','material','2','stackable','liquid','none','-1','200','0','true','true','true','true','varnish','material'),
- ('1866','Suede','false','material','2','stackable','liquid','none','-1','300','0','true','true','true','true','suede','material'),
- ('1867','Animal Skin','false','material','2','stackable','liquid','none','-1','150','0','true','true','true','true','animal_skin','material'),
- ('1868','Thread','false','material','2','stackable','liquid','none','-1','100','0','true','true','true','true','thread','material'),
- ('1869','Iron Ore','false','material','2','stackable','liquid','none','-1','200','0','true','true','true','true','iron_ore','material'),
- ('1870','Coal','false','material','2','stackable','liquid','none','-1','200','0','true','true','true','true','coal','material'),
- ('1871','Charcoal','false','material','2','stackable','liquid','none','-1','200','0','true','true','true','true','charcoal','material'),
- ('1872','Animal Bone','false','material','2','stackable','liquid','none','-1','150','0','true','true','true','true','animal_bone','material'),
- ('1873','Silver Nugget','false','material','2','stackable','liquid','none','-1','500','0','true','true','true','true','silver_nugget','material'),
- ('1874','Oriharukon Ore','false','material','2','stackable','liquid','none','-1','3000','0','true','true','true','true','oriharukon_ore','material'),
- ('1875','Stone of Purity','false','material','2','stackable','liquid','none','-1','3000','0','true','true','true','true','stone_of_purity','material'),
- ('1876','Mithril Ore','false','material','2','stackable','liquid','none','-1','1000','0','true','true','true','true','mithril_ore','material'),
- ('1877','Adamantite Nugget','false','material','2','stackable','liquid','none','-1','5000','0','true','true','true','true','admantite_nugget','material'),
- ('1878','Braided Hemp','false','material','2','stackable','liquid','none','-1','500','0','true','true','true','true','braided_hemp','material'),
- ('1879','Cokes','false','material','2','stackable','liquid','none','-1','1200','0','true','true','true','true','cokes','material'),
- ('1880','Steel','false','material','2','stackable','liquid','none','-1','2000','0','true','true','true','true','steel','material'),
- ('1881','Coarse Bone Powder','false','material','2','stackable','liquid','none','-1','1500','0','true','true','true','true','coarse_bone_powder','material'),
- ('1882','Leather','false','material','2','stackable','liquid','none','-1','900','0','true','true','true','true','leather','material'),
- ('1883','Steel Mold','false','material','2','stackable','liquid','none','-1','4500','0','true','true','true','true','steel_mold','material'),
- ('1884','Cord','false','material','2','stackable','liquid','none','-1','325','0','true','true','true','true','cord','material'),
- ('1885','High Grade Suede','false','material','2','stackable','liquid','none','-1','2400','0','true','true','true','true','high_grade_suede','material'),
- ('1886','Silver Mold','false','material','2','stackable','liquid','none','-1','13500','0','true','true','true','true','silver_mold','material'),
- ('1887','Varnish of Purity','false','material','2','stackable','liquid','none','-1','8100','0','true','true','true','true','varnish_of_purity','material'),
- ('1888','Synthetic Cokes','false','material','2','stackable','liquid','none','-1','6600','0','true','true','true','true','synthesis_cokes','material'),
- ('1889','Compound Braid','false','material','2','stackable','liquid','none','-1','3000','0','true','true','true','true','compound_braid','material'),
- ('1890','Mithril Alloy','false','material','2','stackable','liquid','none','-1','13100','0','true','true','true','true','mithirl_alloy','material'),
- ('1891','Artisan\'s Frame','false','material','2','stackable','liquid','none','-1','95000','0','true','true','true','true','artisan\'s_frame','material'),
- ('1892','Blacksmith\'s Frame','false','material','2','stackable','liquid','none','-1','64000','0','true','true','true','true','blacksmith\'s_frame','material'),
- ('1893','Oriharukon','false','material','2','stackable','liquid','none','-1','24600','0','true','true','true','true','oriharukon','material'),
- ('1894','Crafted Leather','false','material','2','stackable','liquid','none','-1','5700','0','true','true','true','true','crafted_leather','material'),
- ('1895','Metallic Fiber','false','material','2','stackable','liquid','none','-1','700','0','true','true','true','true','metallic_fiber','material'),
- ('1896','Necklace of Anguish Chain','false','material','60','stackable','liquid','none','-1','472','0','true','true','true','true','necklace_of_anguish_chain','material'),
- ('1897','Necklace of Wisdom Chain','false','material','60','stackable','liquid','none','-1','840','0','true','true','true','true','necklace_of_wisdom_chain','material'),
- ('1898','Blue Diamond Necklace Gem','false','material','60','stackable','liquid','none','-1','1947','0','true','true','true','true','blue_diamond_necklace_gem','material'),
- ('1899','Necklace of Devotion Chain','false','material','60','stackable','liquid','none','-1','1280','0','true','true','true','true','necklace_of_devotion_chain','material'),
- ('1900','Enchanted Necklace Chain','false','material','60','stackable','liquid','none','-1','1828','0','true','true','true','true','enchanted_necklace_chain','material'),
- ('1901','Tiger\'s Eye Earring Stone','false','material','60','stackable','liquid','none','-1','1448','0','true','true','true','true','tiger\'seye_earing_stone','material'),
- ('1902','Elven Earring Beads','false','material','60','stackable','liquid','none','-1','1974','0','true','true','true','true','elven_earing_beads','material'),
- ('1903','Elven Ring Piece','false','material','60','stackable','liquid','none','-1','1199','0','true','true','true','true','elven_ring_piece','material'),
- ('1904','Elven Necklace Beads','false','material','60','stackable','liquid','none','-1','2143','0','true','true','true','true','elven_necklace_beads','material'),
- ('1905','Omen Beast\'s Eye Earring Gemstone','false','material','60','stackable','liquid','none','-1','2056','0','true','true','true','true','onyxbeast\'seye_earing_gemstone','material'),
- ('1906','Mithril Ring Wire','false','material','60','stackable','liquid','none','-1','1455','0','true','true','true','true','mithril_ring_wire','material'),
- ('1907','Necklace of Darkness Gem','false','material','60','stackable','liquid','none','-1','2875','0','true','true','true','true','necklace_of_darkness_gem','material'),
- ('1908','Moonstone Earring Wire','false','material','60','stackable','liquid','none','-1','2112','0','true','true','true','true','moonstone_earing_wire','material'),
- ('1909','Aquastone Ring Wire','false','material','60','stackable','liquid','none','-1','1481','0','true','true','true','true','aquastone_ring_wire','material'),
- ('1910','Aquastone Necklace Chain','false','material','60','stackable','liquid','none','-1','2656','0','true','true','true','true','aquastone_necklace_chain','material'),
- ('1911','Earring of Protection Gemstone','false','material','60','stackable','liquid','none','-1','2689','0','true','true','true','true','earing_of_protection_gemstone','material'),
- ('1912','Ring of Protection Gemstone','false','material','60','stackable','liquid','none','-1','1856','0','true','true','true','true','ring_of_protection_gemstone','material'),
- ('1913','Necklace of Protection Gemstone','false','material','60','stackable','liquid','none','-1','3289','0','true','true','true','true','necklace_of_protection_gemstone','material'),
- ('1914','Earring of Binding Gemstone','false','material','60','stackable','liquid','none','-1','3560','0','true','true','true','true','earing_of_binding_gemstone','material'),
- ('1915','Ring of Ages Gemstone','false','material','60','stackable','liquid','none','-1','2270','0','true','true','true','true','ring_of_ages_gemstone','material'),
- ('1916','Necklace of Mermaid Teardrop','false','material','60','stackable','liquid','none','-1','4700','0','true','true','true','true','necklace_of_mermaid_teardrop','material'),
- ('1917','Sage\'s Necklace Chain','false','material','60','stackable','liquid','none','-1','5845','0','true','true','true','true','sage\'s_necklace_chain','material'),
- ('1918','Nassen\'s Earring Gemstone','false','material','60','stackable','liquid','none','-1','4618','0','true','true','true','true','nassen\'s_earing_gemstone','material'),
- ('1919','Ring of Sage Gemstone','false','material','60','stackable','liquid','none','-1','3482','0','true','true','true','true','ring_of_sage_gemstone','material'),
- ('1920','Necklace of Binding Chain','false','material','60','stackable','liquid','none','-1','5845','0','true','true','true','true','necklace_of_binding_chain','material'),
- ('1921','Leather Shoes Texture','false','material','60','stackable','liquid','none','-1','310','0','true','true','true','true','leather_shoes_texture','material'),
- ('1922','Leather Tunic Pattern','false','material','60','stackable','liquid','none','-1','784','0','true','true','true','true','leather_tunic_pattern','material'),
- ('1923','Leather Stocking Pattern','false','material','60','stackable','liquid','none','-1','488','0','true','true','true','true','leather_hose_pattern','material'),
- ('1924','Leather Helmet Design','false','material','60','stackable','liquid','none','-1','620','0','true','true','true','true','leather_helmet_design','material'),
- ('1925','Leather Gloves Lining','false','material','60','stackable','liquid','none','-1','305','0','true','true','true','true','leather_gloves_lining','material'),
- ('1926','Piece Bone Breastplate Fragment','false','material','60','stackable','liquid','none','-1','1980','0','true','true','true','true','piece_bone_breastplate_fragment','material'),
- ('1927','Hard Leather Shirt Pattern','false','material','60','stackable','liquid','none','-1','2507','0','true','true','true','true','hard_leather_shirt_pattern','material'),
- ('1928','Piece Bone Gaiters Fragment','false','material','60','stackable','liquid','none','-1','1373','0','true','true','true','true','piece_bone_gaiters_fragment','material'),
- ('1929','Hard Leather Gaiters Material','false','material','60','stackable','liquid','none','-1','1550','0','true','true','true','true','hard_leather_gaiters_material','material'),
- ('1930','Boot Lining','false','material','60','stackable','liquid','none','-1','780','0','true','true','true','true','boots_lining','material'),
- ('1931','Leather Boot Lining','false','material','60','stackable','liquid','none','-1','1530','0','true','true','true','true','leather_boots_lining','material'),
- ('1932','Bone Helmet Design','false','material','60','stackable','liquid','none','-1','1260','0','true','true','true','true','bone_helmet_design','material'),
- ('1933','Dark Stocking Fabric','false','material','60','stackable','liquid','none','-1','1700','0','true','true','true','true','dark_hose_fabric','material'),
- ('1934','Crafted Leather Gloves Lining','false','material','60','stackable','liquid','none','-1','1530','0','true','true','true','true','excellence_leather_gloves_lining','material'),
- ('1935','Scale Mail Fragment','false','material','60','stackable','liquid','none','-1','3580','0','true','true','true','true','scale_mail_fragment','material'),
- ('1936','White Tunic Pattern','false','material','60','stackable','liquid','none','-1','2444','0','true','true','true','true','white_tunic_pattern','material'),
- ('1937','Scale Gaiters Fragment','false','material','60','stackable','liquid','none','-1','2328','0','true','true','true','true','scale_gaiters_fragment','material'),
- ('1938','Mithril Banded Mail Material','false','material','60','stackable','liquid','none','-1','2975','0','true','true','true','true','mithril_banded_mail_material','material'),
- ('1939','Mithril Banded Gaiters Material','false','material','60','stackable','liquid','none','-1','2277','0','true','true','true','true','mithril_banded_gaiters_material','material'),
- ('1940','Iron Boots Design','false','material','60','stackable','liquid','none','-1','1340','0','true','true','true','true','iron_boots_design','material'),
- ('1941','Brigandine Temper','false','material','60','stackable','liquid','none','-1','5029','0','true','true','true','true','brigandine_temper','material'),
- ('1942','Manticore Skin Shirt Texture','false','material','60','stackable','liquid','none','-1','3921','0','true','true','true','true','manticor_skin_shirt_texture','material'),
- ('1943','Manticore Skin Gaiters Pattern','false','material','60','stackable','liquid','none','-1','2518','0','true','true','true','true','manticor_skin_gaiters_pattern','material'),
- ('1944','Mithril Tunic Fabric','false','material','60','stackable','liquid','none','-1','3921','0','true','true','true','true','mithril_tunic_fabric','material'),
- ('1945','Mithril Stocking Design','false','material','60','stackable','liquid','none','-1','2518','0','true','true','true','true','mithril_hose_design','material'),
- ('1946','Rip Gauntlets Pattern','false','material','60','stackable','liquid','none','-1','1480','0','true','true','true','true','gauntlet_of_repose_of_the_soul_pattern','material'),
- ('1947','Kite Shield Fragment','false','material','60','stackable','liquid','none','-1','1389','0','true','true','true','true','kite_shield_fragment','material'),
- ('1948','Boots of Power Pattern','false','material','60','stackable','liquid','none','-1','1480','0','true','true','true','true','boots_of_power_pattern','material'),
- ('1949','Mithril Gloves Design','false','material','60','stackable','liquid','none','-1','1792','0','true','true','true','true','mithril_glove_design','material'),
- ('1950','Half Plate Temper','false','material','60','stackable','liquid','none','-1','6162','0','true','true','true','true','half_plate_temper','material'),
- ('1951','Plate Gaiters Part','false','material','60','stackable','liquid','none','-1','3962','0','true','true','true','true','plate_gaiters_part','material'),
- ('1952','Salamander Skin Mail Texture','false','material','60','stackable','liquid','none','-1','6244','0','true','true','true','true','slamander_skin_mail_texture','material'),
- ('1953','Sage\'s Rag Lining','false','material','60','stackable','liquid','none','-1','6244','0','true','true','true','true','sage\'s_rag_lining','material'),
- ('1954','Karmian Stocking Design','false','material','60','stackable','liquid','none','-1','3762','0','true','true','true','true','karmian_hose_pattern','material'),
- ('1955','Chain Helmet Design','false','material','60','stackable','liquid','none','-1','2481','0','true','true','true','true','chain_helmet_design','material'),
- ('1956','Square Shield Fragment','false','material','60','stackable','liquid','none','-1','1762','0','true','true','true','true','square_shield_fragment','material'),
- ('1957','Assault Boots Part','false','material','60','stackable','liquid','none','-1','1792','0','true','true','true','true','assault_boots_part','material'),
- ('1958','Mithril Boots Design','false','material','60','stackable','liquid','none','-1','1120','0','true','true','true','true','mithril_boots_design','material'),
- ('1959','Chain Mail Shirt Material','false','material','60','stackable','liquid','none','-1','7425','0','true','true','true','true','chain_mail_shirt_material','material'),
- ('1960','Chain Gaiters Part','false','material','60','stackable','liquid','none','-1','3650','0','true','true','true','true','chain_gaiters_part','material'),
- ('1961','Mithril Shirt Fabric','false','material','60','stackable','liquid','none','-1','6250','0','true','true','true','true','tempered_mithril_shirt_fabric','material'),
- ('1962','Karmian Tunic Pattern','false','material','60','stackable','liquid','none','-1','6250','0','true','true','true','true','karmian_tunic_pattern','material'),
- ('1963','Ogre Power Gauntlets Part','false','material','60','stackable','liquid','none','-1','1792','0','true','true','true','true','ogre_power_gauntlet_part','material'),
- ('1964','Eldarake Temper','false','material','60','stackable','liquid','none','-1','2475','0','true','true','true','true','eldarake_temper','material'),
- ('1965','Metal Plate Helmet Material','false','material','60','stackable','liquid','none','-1','2967','0','true','true','true','true','metal_plate_helmet_material','material'),
- ('1966','Plated Leather Fragment','false','material','60','stackable','liquid','none','-1','5478','0','true','true','true','true','plate_leather_fragment','material'),
- ('1967','Plated Leather Gaiters Material','false','material','60','stackable','liquid','none','-1','3667','0','true','true','true','true','plate_leather_gaiters_material','material'),
- ('1968','Dwarven Chain Mail Shirt Material','false','material','60','stackable','liquid','none','-1','8300','0','true','true','true','true','dwarven_chain_mail_shirt_material','material'),
- ('1969','Dwarven Chain Gaiters Material','false','material','60','stackable','liquid','none','-1','5233','0','true','true','true','true','dwarven_chain_gaiters_material','material'),
- ('1970','Robe of Seal Fabric','false','material','60','stackable','liquid','none','-1','8956','0','true','true','true','true','robe_of_seal_fabric','material'),
- ('1971','Great Helmet Material','false','material','60','stackable','liquid','none','-1','3267','0','true','true','true','true','great_helmet_material','material'),
- ('1972','Knight\'s Shield Fragment','false','material','60','stackable','liquid','none','-1','2500','0','true','true','true','true','knight_shield_fragment','material'),
- ('1973','Pa\'agrian Hand Design','false','material','60','stackable','liquid','none','-1','2378','0','true','true','true','true','paagrio_hand_design','material'),
- ('1974','Crimson Boot Fabric','false','material','60','stackable','liquid','none','-1','2378','0','true','true','true','true','crimson_boots_fabric','material'),
- ('1975','Rind Leather Armor Design','false','material','60','stackable','liquid','none','-1','6089','0','true','true','true','true','rind_leather_mail_design','material'),
- ('1976','Rind Leather Gaiters Material','false','material','60','stackable','liquid','none','-1','3289','0','true','true','true','true','rind_leather_gaiters_material','material'),
- ('1977','Composite Armor Temper','false','material','60','stackable','liquid','none','-1','13520','0','true','true','true','true','composite_armor_temper','material'),
- ('1978','Tower Shield Fragment','false','material','60','stackable','liquid','none','-1','3120','0','true','true','true','true','tower_shield_fragment','material'),
- ('1979','Demon\'s Tunic Fabric','false','material','60','stackable','liquid','none','-1','8240','0','true','true','true','true','demon\'s_tunic_fabric','material'),
- ('1980','Demon\'s Stocking Pattern','false','material','60','stackable','liquid','none','-1','4700','0','true','true','true','true','demon\'s_hose_pattern','material'),
- ('1981','Mithril Gauntlets Design','false','material','60','stackable','liquid','none','-1','3400','0','true','true','true','true','mithril_gauntlet_design','material'),
- ('1982','Forgotten Boots Pattern','false','material','60','stackable','liquid','none','-1','3400','0','true','true','true','true','forgotten_boots_pattern','material'),
- ('1983','Shining Circlet Pattern','false','material','60','stackable','liquid','none','-1','4560','0','true','true','true','true','shining_circlet_pattern','material'),
- ('1984','Theca Leather Armor Pattern','false','material','60','stackable','liquid','none','-1','9330','0','true','true','true','true','theca_leather_mail_pattern','material'),
- ('1985','Theca Leather Gaiters Pattern','false','material','60','stackable','liquid','none','-1','5800','0','true','true','true','true','theca_leather_gaiters_pattern','material'),
- ('1986','Full Plate Armor Temper','false','material','60','stackable','liquid','none','-1','18927','0','true','true','true','true','full_plate_armor_temper','material'),
- ('1987','Drake Leather Armor Texture','false','material','60','stackable','liquid','none','-1','13109','0','true','true','true','true','drake_leather_mail_texture','material'),
- ('1988','Divine Tunic Fabric','false','material','60','stackable','liquid','none','-1','10409','0','true','true','true','true','divine_tunic_fabric','material'),
- ('1989','Divine Stocking Pattern','false','material','60','stackable','liquid','none','-1','6636','0','true','true','true','true','divine_hose_pattern','material'),
- ('1990','Mithril Helmet Design','false','material','60','stackable','liquid','none','-1','5782','0','true','true','true','true','mithril_helmet_design','material'),
- ('1991','Cap of Mana Pattern','false','material','60','stackable','liquid','none','-1','5782','0','true','true','true','true','cap_of_mana_pattern','material'),
- ('1992','Paradia Hood Material','false','material','60','stackable','liquid','none','-1','5782','0','true','true','true','true','paradia_hood_material','material'),
- ('1993','Hood of Solar Eclipse Texture','false','material','60','stackable','liquid','none','-1','5782','0','true','true','true','true','hood_of_sola_eclipse_texture','material'),
- ('1994','Hood of Summoning Texture','false','material','60','stackable','liquid','none','-1','5782','0','true','true','true','true','hood_of_summons_texture','material'),
- ('1995','Elemental Hood Material','false','material','60','stackable','liquid','none','-1','5782','0','true','true','true','true','elemental_hood_material','material'),
- ('1996','Hood of Grace Texture','false','material','60','stackable','liquid','none','-1','5782','0','true','true','true','true','hood_of_grace_texture','material'),
- ('1997','Phoenix Hood Material','false','material','60','stackable','liquid','none','-1','5782','0','true','true','true','true','phoenix\'s_hood_material','material'),
- ('1998','Hood of Aid Material','false','material','60','stackable','liquid','none','-1','5782','0','true','true','true','true','hood_of_assistance_material','material'),
- ('1999','Flame Helm Design','false','material','60','stackable','liquid','none','-1','5782','0','true','true','true','true','flame_bonnet_design','material'),
- ('2000','Tallum Helm Design','false','material','60','stackable','liquid','none','-1','5782','0','true','true','true','true','tallum_bonnet_design','material'),
- ('2001','Helm of Avadon Design','false','material','60','stackable','liquid','none','-1','5782','0','true','true','true','true','bonnet_o\'_avadon_design','material'),
- ('2002','Helmet of Pledge Pattern','false','material','60','stackable','liquid','none','-1','5782','0','true','true','true','true','helmet_of_pledge_pattern','material'),
- ('2003','Gauntlets of Ghost Pattern','false','material','60','stackable','liquid','none','-1','3673','0','true','true','true','true','gauntlet_of_ghost_pattern','material'),
- ('2004','Adamantite Boots Design','false','material','60','stackable','liquid','none','-1','3673','0','true','true','true','true','adamantite_boots_design','material'),
- ('2005','Broadsword Blade','false','material','60','stackable','liquid','none','-1','2800','0','true','true','true','true','broad_sword_blade','material'),
- ('2006','Willow Staff Head','false','material','60','stackable','liquid','none','-1','2800','0','true','true','true','true','willow_staff_head','material'),
- ('2007','Bow Shaft','false','material','60','stackable','liquid','none','-1','2800','0','true','true','true','true','bow_shaft','material'),
- ('2008','Cedar Staff Head','false','material','60','stackable','liquid','none','-1','5140','0','true','true','true','true','cedar_staff_head','material'),
- ('2009','Dirk Blade','false','material','60','stackable','liquid','none','-1','5640','0','true','true','true','true','dirk_blade','material'),
- ('2010','Brandish Blade','false','material','60','stackable','liquid','none','-1','5140','0','true','true','true','true','brandish_blade','material'),
- ('2011','Short Spear Edge','false','material','60','stackable','liquid','none','-1','8767','0','true','true','true','true','short_spear_edge','material'),
- ('2012','Sword of Reflection Blade','false','material','60','stackable','liquid','none','-1','9600','0','true','true','true','true','sword_of_reflexion_blade','material'),
- ('2013','Forest Bow Shaft','false','material','60','stackable','liquid','none','-1','9267','0','true','true','true','true','bow_of_forest_shaft','material'),
- ('2014','Iron Hammer Head','false','material','60','stackable','liquid','none','-1','17400','0','true','true','true','true','iron_hammer_head','material'),
- ('2015','Sword Breaker Edge','false','material','60','stackable','liquid','none','-1','16400','0','true','true','true','true','sword_breaker_edge','material'),
- ('2016','Composition Bow Shaft','false','material','60','stackable','liquid','none','-1','17067','0','true','true','true','true','composition_bow_shaft','material'),
- ('2017','Saber Blade','false','material','60','stackable','liquid','none','-1','15050','0','true','true','true','true','saber_blade','material'),
- ('2018','Assassin Knife Edge','false','material','60','stackable','liquid','none','-1','15050','0','true','true','true','true','assassin_knife_edge','material'),
- ('2019','Trident Edge','false','material','60','stackable','liquid','none','-1','9300','0','true','true','true','true','trident_edge','material'),
- ('2020','Temptation of Abyss Piece','false','material','60','stackable','liquid','none','-1','11425','0','true','true','true','true','temptation_of_abyss_piece','material'),
- ('2021','Spinebone Sword Blade','false','material','60','stackable','liquid','none','-1','15840','0','true','true','true','true','spinebone_sword_blade','material'),
- ('2022','Mace of Judgment Head','false','material','60','stackable','liquid','none','-1','12840','0','true','true','true','true','mace_of_judgment_head','material'),
- ('2023','Conjuror\'s Staff Head','false','material','60','stackable','liquid','none','-1','16140','0','true','true','true','true','conjure_staff_head','material'),
- ('2024','Elven Bow Shaft','false','material','60','stackable','liquid','none','-1','14040','0','true','true','true','true','elven_bow_shaft','material'),
- ('2025','Dwarven Trident Edge','false','material','60','stackable','liquid','none','-1','14440','0','true','true','true','true','dwarven_trident_edge','material'),
- ('2026','Two-Handed Sword Edge','false','material','60','stackable','liquid','none','-1','16617','0','true','true','true','true','two-handed_sword_edge','material'),
- ('2027','Spiked Club Head','false','material','60','stackable','liquid','none','-1','15267','0','true','true','true','true','spike_club_head','material'),
- ('2028','Shilen Knife Edge','false','material','60','stackable','liquid','none','-1','16833','0','true','true','true','true','knife_o\'_silenus_edge','material'),
- ('2029','Gastraphetes Shaft','false','material','60','stackable','liquid','none','-1','16767','0','true','true','true','true','gastraphetes_shaft','material'),
- ('2030','Tome of Blood Page','false','material','60','stackable','liquid','none','-1','17100','0','true','true','true','true','tome_of_blood_page','material'),
- ('2031','Morning Star Head','false','material','60','stackable','liquid','none','-1','19757','0','true','true','true','true','morning_star_head','material'),
- ('2032','Goat Head Staff Head','false','material','60','stackable','liquid','none','-1','21643','0','true','true','true','true','goathead_staff_head','material'),
- ('2033','Winged Spear Blade','false','material','60','stackable','liquid','none','-1','17929','0','true','true','true','true','winged_spear_blade','material'),
- ('2034','Sword of Revolution Blade','false','material','60','stackable','liquid','none','-1','18929','0','true','true','true','true','sword_of_revolution_blade','material'),
- ('2035','Tarbar Head','false','material','60','stackable','liquid','none','-1','19757','0','true','true','true','true','tarbar_head','material'),
- ('2036','Skull Breaker Head','false','material','60','stackable','liquid','none','-1','19757','0','true','true','true','true','skull_breaker_head','material'),
- ('2037','Heavy Bone Club Head','false','material','60','stackable','liquid','none','-1','19757','0','true','true','true','true','heavy_bone_club_head','material'),
- ('2038','Maingauche Edge','false','material','60','stackable','liquid','none','-1','18929','0','true','true','true','true','maingauche_edge','material'),
- ('2039','Bich\'Hwa Edge','false','material','60','stackable','liquid','none','-1','19757','0','true','true','true','true','bich\'hwa_edge','material'),
- ('2040','Strengthened Long Bow Shaft','false','material','60','stackable','liquid','none','-1','17286','0','true','true','true','true','strengthening_long_bow_shaft','material'),
- ('2041','War Pick Head','false','material','60','stackable','liquid','none','-1','17929','0','true','true','true','true','hammer_in_flames_head','material'),
- ('2042','Crucifix of Blood Piece','false','material','60','stackable','liquid','none','-1','21643','0','true','true','true','true','crucifix_of_blood_piece','material'),
- ('2043','Eye of Infinity Stone','false','material','60','stackable','liquid','none','-1','21643','0','true','true','true','true','eye_of_infinity_stone','material'),
- ('2044','Cursed Maingauche Edge','false','material','60','stackable','liquid','none','-1','18929','0','true','true','true','true','cursed_maingauche_edge','material'),
- ('2045','Blue Crystal Skull Part','false','material','60','stackable','liquid','none','-1','21786','0','true','true','true','true','blue_crystal_skull_part','material'),
- ('2046','Demon Fangs Part','false','material','60','stackable','liquid','none','-1','21786','0','true','true','true','true','demon_fangs_part','material'),
- ('2047','Claymore Blade','false','material','60','stackable','liquid','none','-1','22750','0','true','true','true','true','claymore_blade','material'),
- ('2048','Bonebreaker Head','false','material','60','stackable','liquid','none','-1','24188','0','true','true','true','true','bonebreaker_head','material'),
- ('2049','Atuba Hammer Head','false','material','60','stackable','liquid','none','-1','24188','0','true','true','true','true','atuba_hammer_head','material'),
- ('2050','Ghost Staff Head','false','material','60','stackable','liquid','none','-1','22812','0','true','true','true','true','ghost_staff_head','material'),
- ('2051','Staff of Life Shaft','false','material','60','stackable','liquid','none','-1','22812','0','true','true','true','true','life_stick_shaft','material'),
- ('2052','Mithril Dagger Blade','false','material','60','stackable','liquid','none','-1','23062','0','true','true','true','true','mithril_dagger_blade','material'),
- ('2053','Scallop Jamadhr Edge','false','material','60','stackable','liquid','none','-1','24188','0','true','true','true','true','scallop_jamadhr_edge','material'),
- ('2054','Light Crossbow Shaft','false','material','60','stackable','liquid','none','-1','23500','0','true','true','true','true','cyclone_bow_shaft','material'),
- ('2055','Glaive Edge','false','material','60','stackable','liquid','none','-1','24188','0','true','true','true','true','glaive_edge','material'),
- ('2056','Vajra Wand Frame','false','material','60','stackable','liquid','none','-1','22812','0','true','true','true','true','vajra_wands_frame','material'),
- ('2057','Ancient Reagent Remnant','false','material','60','stackable','liquid','none','-1','22812','0','true','true','true','true','ancient_reagent_remnant','material'),
- ('2058','Atuba Mace Head','false','material','60','stackable','liquid','none','-1','24188','0','true','true','true','true','atuba_mace_head','material'),
- ('2059','Flamberge Blade','false','material','60','stackable','liquid','none','-1','24125','0','true','true','true','true','flamberge_blade','material'),
- ('2060','Stormbringer Blade','false','material','60','stackable','liquid','none','-1','24425','0','true','true','true','true','stormbringer_blade','material'),
- ('2061','Big Hammer Head','false','material','60','stackable','liquid','none','-1','26800','0','true','true','true','true','big_hammer_head','material'),
- ('2062','Scythe Edge','false','material','60','stackable','liquid','none','-1','22750','0','true','true','true','true','scythe_edge','material'),
- ('2063','Battle Axe Head','false','material','60','stackable','liquid','none','-1','26800','0','true','true','true','true','battle_axe_head','material'),
- ('2064','Silver Axe Head','false','material','60','stackable','liquid','none','-1','26800','0','true','true','true','true','war_pick_head','material'),
- ('2065','Skull Graver Head','false','material','60','stackable','liquid','none','-1','26800','0','true','true','true','true','skull_graver_head','material'),
- ('2066','Heavy Doom Hammer Head','false','material','60','stackable','liquid','none','-1','22750','0','true','true','true','true','heavy_doom_hammer_head','material'),
- ('2067','Crystal Staff Head','false','material','60','stackable','liquid','none','-1','27000','0','true','true','true','true','crystal_staff_head','material'),
- ('2068','Stick of Faith Shaft','false','material','60','stackable','liquid','none','-1','27000','0','true','true','true','true','stick_of_faith_shaft','material'),
- ('2069','Heavy Doom Axe Blade','false','material','60','stackable','liquid','none','-1','22750','0','true','true','true','true','heavy_doom_axe_blade','material'),
- ('2070','Cursed Dagger Blade','false','material','60','stackable','liquid','none','-1','24425','0','true','true','true','true','cursed_dagger_blade','material'),
- ('2071','Wolverine Needle Edge','false','material','60','stackable','liquid','none','-1','24425','0','true','true','true','true','needle_wolverine_edge','material'),
- ('2072','Dark Elven Dagger Edge','false','material','60','stackable','liquid','none','-1','24425','0','true','true','true','true','darkelven_dagger_edge','material'),
- ('2073','Chakram Edge','false','material','60','stackable','liquid','none','-1','26800','0','true','true','true','true','chakram_edge','material'),
- ('2074','Crystallized Ice Bow Shaft','false','material','60','stackable','liquid','none','-1','26538','0','true','true','true','true','crystallized_ice_bow_shaft','material'),
- ('2075','Orcish Glaive Blade','false','material','60','stackable','liquid','none','-1','22750','0','true','true','true','true','orcish_glaive_blade','material'),
- ('2076','Body Slasher Blade','false','material','60','stackable','liquid','none','-1','22750','0','true','true','true','true','body_slasher_blade','material'),
- ('2077','Shamshir Blade','false','material','60','stackable','liquid','none','-1','29556','0','true','true','true','true','shamshir_blade','material'),
- ('2078','Katana Blade','false','material','60','stackable','liquid','none','-1','29556','0','true','true','true','true','katana_blade','material'),
- ('2079','Bec De Corbin Blade','false','material','60','stackable','liquid','none','-1','31667','0','true','true','true','true','bech_de_corbin_blade','material'),
- ('2080','Spirit Sword Blade','false','material','60','stackable','liquid','none','-1','29556','0','true','true','true','true','spirits_sword_blade','material'),
- ('2081','Raid Sword Blade','false','material','60','stackable','liquid','none','-1','29556','0','true','true','true','true','raid_sword_blade','material'),
- ('2082','Cursed Staff Head','false','material','60','stackable','liquid','none','-1','30911','0','true','true','true','true','cursed_staff_head','material'),
- ('2083','Stiletto Edge','false','material','60','stackable','liquid','none','-1','29556','0','true','true','true','true','stiletto_edge','material'),
- ('2084','Soulfire Dirk Blade','false','material','60','stackable','liquid','none','-1','29556','0','true','true','true','true','dagger_of_magicflame_blade','material'),
- ('2085','Crossbow Shaft','false','material','60','stackable','liquid','none','-1','26189','0','true','true','true','true','elemental_bow_shaft','material'),
- ('2086','Elven Bow of Nobility Shaft','false','material','60','stackable','liquid','none','-1','26189','0','true','true','true','true','noble_elven_bow_shaft','material'),
- ('2087','Tears of Fairy Drop','false','material','60','stackable','liquid','none','-1','30911','0','true','true','true','true','tears_of_fairy_drop','material'),
- ('2088','Horn of Glory Fragment','false','material','60','stackable','liquid','none','-1','30911','0','true','true','true','true','horn_of_glory_fragment','material'),
- ('2089','Caliburs Edge','false','material','60','stackable','liquid','none','-1','37450','0','true','true','true','true','caliburs_edge','material'),
- ('2090','Delusional Blade','false','material','60','stackable','liquid','none','-1','37450','0','true','true','true','true','sword_of_delusion_blade','material'),
- ('2091','Tsurugi Blade','false','material','60','stackable','liquid','none','-1','37450','0','true','true','true','true','tsurugi_blade','material'),
- ('2092','Homunkulus\'s Sword Blade','false','material','60','stackable','liquid','none','-1','37450','0','true','true','true','true','homunkulus\'s_sword_blade','material'),
- ('2093','Poleaxe Blade','false','material','60','stackable','liquid','none','-1','34200','0','true','true','true','true','poleaxe_blade','material'),
- ('2094','Sword of Limit Blade','false','material','60','stackable','liquid','none','-1','37450','0','true','true','true','true','sword_of_limit_blade','material'),
- ('2095','Sword of Nightmare Blade','false','material','60','stackable','liquid','none','-1','37450','0','true','true','true','true','sword_of_nightmare_blade','material'),
- ('2096','Sword of Whispering Death Blade','false','material','60','stackable','liquid','none','-1','37450','0','true','true','true','true','deathbreath_sword_blade','material'),
- ('2097','War Axe Blade','false','material','60','stackable','liquid','none','-1','37000','0','true','true','true','true','war_axe_blade','material'),
- ('2098','Nirvana Axe Blade','false','material','60','stackable','liquid','none','-1','37000','0','true','true','true','true','nirvana_axe_blade','material'),
- ('2099','Stick of Eternity Shaft','false','material','60','stackable','liquid','none','-1','35900','0','true','true','true','true','stick_of_eternity_shaft','material'),
- ('2100','Paradia Staff Head','false','material','60','stackable','liquid','none','-1','35900','0','true','true','true','true','paradia_staff_head','material'),
- ('2101','Inferno Staff Head','false','material','60','stackable','liquid','none','-1','35900','0','true','true','true','true','inferno_staff_head','material'),
- ('2102','Pa\'agrian Hammer Head','false','material','60','stackable','liquid','none','-1','34200','0','true','true','true','true','paagrio_hammer_head','material'),
- ('2103','Sage\'s Staff Head','false','material','60','stackable','liquid','none','-1','35900','0','true','true','true','true','sage\'s_staff_head','material'),
- ('2104','Club of Nature Head','false','material','60','stackable','liquid','none','-1','35900','0','true','true','true','true','club_of_nature_head','material'),
- ('2105','Mace of The Underworld Head','false','material','60','stackable','liquid','none','-1','37000','0','true','true','true','true','mace_of_underworld_head','material'),
- ('2106','Grace Dagger Edge','false','material','60','stackable','liquid','none','-1','37450','0','true','true','true','true','grace_dagger_edge','material'),
- ('2107','Dark Screamer Edge','false','material','60','stackable','liquid','none','-1','37450','0','true','true','true','true','dark_screamer_edge','material'),
- ('2108','Fisted Blade Piece','false','material','60','stackable','liquid','none','-1','37000','0','true','true','true','true','fist_blade_piece','material'),
- ('2109','Akat Longbow Shaft','false','material','60','stackable','liquid','none','-1','41130','0','true','true','true','true','akat_long_bow_shaft','material'),
- ('2110','Heathen\'s Book Page','false','material','60','stackable','liquid','none','-1','35900','0','true','true','true','true','heathen\'s_book_page','material'),
- ('2111','Hex Doll Fragment','false','material','60','stackable','liquid','none','-1','35900','0','true','true','true','true','hex_doll_fragment','material'),
- ('2112','Pa\'agrian Axe Blade','false','material','60','stackable','liquid','none','-1','39900','0','true','true','true','true','paagrio_axe_blade','material'),
- ('2113','Scorpion Blade','false','material','60','stackable','liquid','none','-1','39900','0','true','true','true','true','scorpion_blade','material'),
- ('2114','Widowmaker Head','false','material','60','stackable','liquid','none','-1','39900','0','true','true','true','true','widow_maker_head','material'),
- ('2115','Samurai Longsword Blade','false','material','60','stackable','liquid','none','-1','46636','0','true','true','true','true','samurai_longsword_blade','material'),
- ('2116','Deadman\'s Staff Head','false','material','60','stackable','liquid','none','-1','43818','0','true','true','true','true','deadman\'s_staff_head','material'),
- ('2117','Ghoul\'s Staff Head','false','material','60','stackable','liquid','none','-1','43818','0','true','true','true','true','ghoul\'s_staff_head','material'),
- ('2118','Demon\'s Staff Head','false','material','60','stackable','liquid','none','-1','43818','0','true','true','true','true','demon\'s_staff_head','material'),
- ('2119','Crystal Dagger Blade','false','material','60','stackable','liquid','none','-1','43136','0','true','true','true','true','crystal_dagger_blade','material'),
- ('2120','Great Pata Blade','false','material','60','stackable','liquid','none','-1','45964','0','true','true','true','true','great_pata_blade','material'),
- ('2121','Eminence Bow Shaft','false','material','60','stackable','liquid','none','-1','47218','0','true','true','true','true','eminence_bow_shaft','material'),
- ('2122','Orcish Poleaxe Blade','false','material','60','stackable','liquid','none','-1','43818','0','true','true','true','true','orcish_poleaxe_blade','material'),
- ('2123','Candle of Wisdom Model','false','material','60','stackable','liquid','none','-1','43818','0','true','true','true','true','candle_of_wisdom_model','material'),
- ('2124','Blessed Branch Splinter','false','material','60','stackable','liquid','none','-1','43818','0','true','true','true','true','blessed_branch_splinter','material'),
- ('2125','Phoenix Feather Piece','false','material','60','stackable','liquid','none','-1','43818','0','true','true','true','true','phoenix\'s_feather_piece','material'),
- ('2126','Cerberus Eye Fragment','false','material','60','stackable','liquid','none','-1','43818','0','true','true','true','true','cerberus\'s_eye_fragment','material'),
- ('2127','Scroll of Destruction Page','false','material','60','stackable','liquid','none','-1','43818','0','true','true','true','true','scroll_of_destruction_page','material'),
- ('2128','Claws of Black Dragon Piece','false','material','60','stackable','liquid','none','-1','43818','0','true','true','true','true','claws_of_blackdragon_piece','material'),
- ('2129','Three Eyed Crow\'s Feather Piece','false','material','60','stackable','liquid','none','-1','43818','0','true','true','true','true','three_eye_crow\'s_feather_piece','material'),
- ('2130','Gemstone D','false','material','2','stackable','liquid','none','-1','1000','0','true','true','true','true','gemstone_d','material'),
- ('2131','Gemstone C','false','material','2','stackable','liquid','none','-1','3000','0','true','true','true','true','gemstone_c','material'),
- ('2132','Gemstone B','false','material','2','stackable','liquid','none','-1','10000','0','true','true','true','true','gemstone_b','material'),
- ('2133','Gemstone A','false','material','2','stackable','liquid','none','-1','30000','0','true','true','true','true','gemstone_a','material'),
- ('2134','Gemstone S','false','material','2','stackable','liquid','none','-1','100000','0','true','true','true','true','gemstone_s','material'),
- ('2135','Recipe: Braided Hemp','false','recipe','30','stackable','liquid','none','-1','680','0','true','true','true','true','rp_braided_hemp','recipe'),
- ('2136','Recipe: Cokes','false','recipe','30','stackable','liquid','none','-1','680','0','true','true','true','true','rp_cokes','recipe'),
- ('2137','Recipe: Steel','false','recipe','30','stackable','liquid','none','-1','680','0','true','true','true','true','rp_steel','recipe'),
- ('2138','Recipe: Coarse Bone Powder (100%)','false','recipe','30','stackable','liquid','none','-1','680','0','true','true','true','true','rp_coarse_bone_powder','recipe'),
- ('2139','Recipe: Steel Mold','false','recipe','30','stackable','liquid','none','-1','1000','0','true','true','true','true','rp_steel_mold','recipe'),
- ('2140','Recipe: High Grade Suede','false','recipe','30','stackable','liquid','none','-1','1000','0','true','true','true','true','rp_high_grade_suede','recipe'),
- ('2141','Recipe: Silver Mold','false','recipe','30','stackable','liquid','none','-1','1000','0','true','true','true','true','rp_silver_mold','recipe'),
- ('2142','Recipe: Varnish of Purity','false','recipe','30','stackable','liquid','none','-1','1000','0','true','true','true','true','rp_varnish_of_purity','recipe'),
- ('2143','Recipe: Synthetic Cokes','false','recipe','30','stackable','liquid','none','-1','1000','0','true','true','true','true','rp_synthesis_cokes','recipe'),
- ('2144','Recipe: Compound Braid','false','recipe','30','stackable','liquid','none','-1','1000','0','true','true','true','true','rp_compound_braid','recipe'),
- ('2145','Recipe: Mithril Alloy','false','recipe','30','stackable','liquid','none','-1','2800','0','true','true','true','true','rp_mithirl_alloy','recipe'),
- ('2146','Recipe: Artisan\'s frame','false','recipe','30','stackable','liquid','none','-1','2800','0','true','true','true','true','rp_artisan\'s_frame','recipe'),
- ('2147','Recipe: Blacksmith\'s frame','false','recipe','30','stackable','liquid','none','-1','2800','0','true','true','true','true','rp_blacksmith\'s_frame','recipe'),
- ('2148','Recipe: Crafted Leather','false','recipe','30','stackable','liquid','none','-1','2800','0','true','true','true','true','rp_crafted_leather','recipe'),
- ('2149','Recipe: Metallic Fiber','false','recipe','30','stackable','liquid','none','-1','2800','0','true','true','true','true','rp_metallic_fiber','recipe'),
- ('2150','Recipe: Blue Diamond Necklace','false','recipe','30','stackable','liquid','none','-1','426','0','true','true','true','true','rp_blue_diamond_necklace','recipe'),
- ('2151','Recipe: Necklace of Devotion','false','recipe','30','stackable','liquid','none','-1','718','0','true','true','true','true','rp_necklace_of_devotion','recipe'),
- ('2152','Recipe: Enchanted Necklace','false','recipe','30','stackable','liquid','none','-1','1136','0','true','true','true','true','rp_enchanted_necklace','recipe'),
- ('2153','Recipe: Tiger\'s Eye Earring','false','recipe','30','stackable','liquid','none','-1','1286','0','true','true','true','true','rp_tiger\'seye_earing','recipe'),
- ('2154','Recipe: Elven Earring','false','recipe','30','stackable','liquid','none','-1','1868','0','true','true','true','true','rp_elven_earing','recipe'),
- ('2155','Recipe: Elven Ring','false','recipe','30','stackable','liquid','none','-1','1246','0','true','true','true','true','rp_elven_ring','recipe'),
- ('2156','Recipe: Elven Necklace','false','recipe','30','stackable','liquid','none','-1','2500','0','true','true','true','true','rp_elven_necklace','recipe'),
- ('2157','Recipe: Omen Beast\'s Eye Earring','false','recipe','30','stackable','liquid','none','-1','2420','0','true','true','true','true','rp_onyxbeast\'seye_earing','recipe'),
- ('2158','Recipe: Mithril Ring','false','recipe','30','stackable','liquid','none','-1','1616','0','true','true','true','true','rp_mithril_ring','recipe'),
- ('2159','Recipe: Necklace of Darkness','false','recipe','30','stackable','liquid','none','-1','3240','0','true','true','true','true','rp_necklace_of_darkness','recipe'),
- ('2160','Recipe: Moonstone Earring','false','recipe','30','stackable','liquid','none','-1','3100','0','true','true','true','true','rp_moonstone_earing','recipe'),
- ('2161','Recipe: Aquastone Ring','false','recipe','30','stackable','liquid','none','-1','2060','0','true','true','true','true','rp_aquastone_ring','recipe'),
- ('2162','Recipe: Aquastone Necklace','false','recipe','30','stackable','liquid','none','-1','4140','0','true','true','true','true','rp_aquastone_necklace','recipe'),
- ('2163','Recipe: Earring of Protection','false','recipe','30','stackable','liquid','none','-1','3920','0','true','true','true','true','rp_earing_of_protection','recipe'),
- ('2164','Recipe: Ring of Protection','false','recipe','30','stackable','liquid','none','-1','2600','0','true','true','true','true','rp_ring_of_protection','recipe'),
- ('2165','Recipe: Necklace of Protection','false','recipe','30','stackable','liquid','none','-1','5220','0','true','true','true','true','rp_necklace_of_protection','recipe'),
- ('2166','Recipe: Earrings of Binding (100%)','false','recipe','30','stackable','liquid','none','-1','5900','0','true','true','true','true','rp_earing_of_binding','recipe'),
- ('2167','Recipe: Ring of Ages','false','recipe','30','stackable','liquid','none','-1','3920','0','true','true','true','true','rp_ring_of_ages','recipe'),
- ('2168','Recipe: Necklace of Mermaid','false','recipe','30','stackable','liquid','none','-1','7860','0','true','true','true','true','rp_necklace_of_mermaid','recipe'),
- ('2169','Recipe: Necklace of Binding','false','recipe','30','stackable','liquid','none','-1','11300','0','true','true','true','true','rp_necklace_of_binding','recipe'),
- ('2170','Recipe: Nassen\'s Earring','false','recipe','30','stackable','liquid','none','-1','8480','0','true','true','true','true','rp_nassen\'s_earing','recipe'),
- ('2171','Recipe: Sage\'s Ring','false','recipe','30','stackable','liquid','none','-1','5640','0','true','true','true','true','rp_ring_of_sage','recipe'),
- ('2172','Recipe: Sage\'s Necklace','false','recipe','30','stackable','liquid','none','-1','11300','0','true','true','true','true','rp_sage\'s_necklace','recipe'),
- ('2173','Recipe: Hard Leather Shirt','false','recipe','30','stackable','liquid','none','-1','738','0','true','true','true','true','rp_hard_leather_shirt','recipe'),
- ('2174','Recipe: Hard Leather Gaiters','false','recipe','30','stackable','liquid','none','-1','460','0','true','true','true','true','rp_hard_leather_gaiters','recipe'),
- ('2175','Recipe: Boots','false','recipe','30','stackable','liquid','none','-1','246','0','true','true','true','true','rp_boots','recipe'),
- ('2176','Recipe: Leather Boots','false','recipe','30','stackable','liquid','none','-1','418','0','true','true','true','true','rp_leather_boots','recipe'),
- ('2177','Recipe: Bone Helmet','false','recipe','30','stackable','liquid','none','-1','626','0','true','true','true','true','rp_bone_helmet','recipe'),
- ('2178','Recipe: Dark Stockings','false','recipe','30','stackable','liquid','none','-1','1250','0','true','true','true','true','rp_dark_hose','recipe'),
- ('2179','Recipe: Crafted Leather Gloves','false','recipe','30','stackable','liquid','none','-1','418','0','true','true','true','true','rp_excellence_leather_gloves','recipe'),
- ('2180','Recipe: Scale Mail','false','recipe','30','stackable','liquid','none','-1','2660','0','true','true','true','true','rp_scale_mail','recipe'),
- ('2181','Recipe: White Tunic','false','recipe','30','stackable','liquid','none','-1','1998','0','true','true','true','true','rp_white_tunic','recipe'),
- ('2182','Recipe: Scale Gaiters','false','recipe','30','stackable','liquid','none','-1','1666','0','true','true','true','true','rp_scale_gaiters','recipe'),
- ('2183','Recipe: Mithril Banded Mail','false','recipe','30','stackable','liquid','none','-1','3040','0','true','true','true','true','rp_mithril_banded_mail','recipe'),
- ('2184','Recipe: Mithril Banded Gaiters','false','recipe','30','stackable','liquid','none','-1','1904','0','true','true','true','true','rp_mithril_banded_gaiters','recipe'),
- ('2185','Recipe: Iron Boots','false','recipe','30','stackable','liquid','none','-1','1016','0','true','true','true','true','rp_iron_boots','recipe'),
- ('2186','Recipe: Brigandine Tunic','false','recipe','30','stackable','liquid','none','-1','5980','0','true','true','true','true','rp_brigandine','recipe'),
- ('2187','Recipe: Manticore Skin Shirt','false','recipe','30','stackable','liquid','none','-1','4480','0','true','true','true','true','rp_manticor_skin_shirt','recipe'),
- ('2188','Recipe: Manticore Skin Gaiters','false','recipe','30','stackable','liquid','none','-1','2800','0','true','true','true','true','rp_manticor_skin_gaiters','recipe'),
- ('2189','Recipe: Mithril Tunic','false','recipe','30','stackable','liquid','none','-1','4480','0','true','true','true','true','rp_mithril_tunic','recipe'),
- ('2190','Recipe: Mithril Stockings','false','recipe','30','stackable','liquid','none','-1','2800','0','true','true','true','true','rp_mithril_hose','recipe'),
- ('2191','Recipe: RIP Gauntlets','false','recipe','30','stackable','liquid','none','-1','1494','0','true','true','true','true','rp_gauntlet_of_repose_of_the_soul','recipe'),
- ('2192','Recipe: Kite Shield','false','recipe','30','stackable','liquid','none','-1','1568','0','true','true','true','true','rp_kite_shield','recipe'),
- ('2193','Recipe: Boots of Power','false','recipe','30','stackable','liquid','none','-1','1494','0','true','true','true','true','rp_boots_of_power','recipe'),
- ('2194','Recipe: Mithril Gloves','false','recipe','30','stackable','liquid','none','-1','1956','0','true','true','true','true','rp_mithril_glove','recipe'),
- ('2195','Recipe: Half Plate Armor','false','recipe','30','stackable','liquid','none','-1','7820','0','true','true','true','true','rp_half_plate','recipe'),
- ('2196','Recipe: Plate Gaiters','false','recipe','30','stackable','liquid','none','-1','4880','0','true','true','true','true','rp_plate_gaiters','recipe'),
- ('2197','Recipe: Salamander Skin Mail','false','recipe','30','stackable','liquid','none','-1','9540','0','true','true','true','true','rp_slamander_skin_mail','recipe'),
- ('2198','Recipe: Sage\'s Rag','false','recipe','30','stackable','liquid','none','-1','9540','0','true','true','true','true','rp_sage\'s_rag','recipe'),
- ('2199','Recipe: Karmian Stockings','false','recipe','30','stackable','liquid','none','-1','4740','0','true','true','true','true','rp_karmian_hose','recipe'),
- ('2200','Recipe: Chain Helmet','false','recipe','30','stackable','liquid','none','-1','2940','0','true','true','true','true','rp_chain_helmet','recipe'),
- ('2201','Recipe: Square Shield','false','recipe','30','stackable','liquid','none','-1','2060','0','true','true','true','true','rp_square_shield','recipe'),
- ('2202','Recipe: Assault Boots','false','recipe','30','stackable','liquid','none','-1','1956','0','true','true','true','true','rp_assault_boots','recipe'),
- ('2203','Recipe: Mithril Boots','false','recipe','30','stackable','liquid','none','-1','918','0','true','true','true','true','rp_mithril_boots','recipe'),
- ('2204','Recipe: Chain Mail Shirt','false','recipe','30','stackable','liquid','none','-1','10100','0','true','true','true','true','rp_chain_mail_shirt','recipe'),
- ('2205','Recipe: Chain Gaiters','false','recipe','30','stackable','liquid','none','-1','6320','0','true','true','true','true','rp_chain_gaiters','recipe'),
- ('2206','Recipe: Mithril Shirt','false','recipe','30','stackable','liquid','none','-1','7580','0','true','true','true','true','rp_tempered_mithril_shirt','recipe'),
- ('2207','Recipe: Karmian Tunic','false','recipe','30','stackable','liquid','none','-1','7580','0','true','true','true','true','rp_karmian_tunic','recipe'),
- ('2208','Recipe: Ogre Power Gauntlets','false','recipe','30','stackable','liquid','none','-1','1956','0','true','true','true','true','rp_ogre_power_gauntlet','recipe'),
- ('2209','Recipe: Eldarake','false','recipe','30','stackable','liquid','none','-1','2660','0','true','true','true','true','rp_eldarake','recipe'),
- ('2210','Recipe: Steel Plate Helmet','false','recipe','30','stackable','liquid','none','-1','4120','0','true','true','true','true','rp_metal_plate_helmet','recipe'),
- ('2211','Recipe: Plated Leather Armor','false','recipe','30','stackable','liquid','none','-1','8920','0','true','true','true','true','rp_plate_leather','recipe'),
- ('2212','Recipe: Plated Leather Gaiters','false','recipe','30','stackable','liquid','none','-1','5580','0','true','true','true','true','rp_plate_leather_gaiters','recipe'),
- ('2213','Recipe: Dwarven Chain Mail Shirt','false','recipe','30','stackable','liquid','none','-1','12880','0','true','true','true','true','rp_dwarven_chain_mail_shirt','recipe'),
- ('2214','Recipe: Dwarven Chain Gaiters','false','recipe','30','stackable','liquid','none','-1','8060','0','true','true','true','true','rp_dwarven_chain_gaiters','recipe'),
- ('2215','Recipe: Robe of Seal','false','recipe','30','stackable','liquid','none','-1','15700','0','true','true','true','true','rp_robe_of_seal','recipe'),
- ('2216','Recipe: Great Helmet','false','recipe','30','stackable','liquid','none','-1','4840','0','true','true','true','true','rp_great_helmet','recipe'),
- ('2217','Recipe: Knight\'s Shield','false','recipe','30','stackable','liquid','none','-1','3380','0','true','true','true','true','rp_knight_shield','recipe'),
- ('2218','Recipe: Pa\'agrian Hand','false','recipe','30','stackable','liquid','none','-1','3220','0','true','true','true','true','rp_paagrio_hand','recipe'),
- ('2219','Recipe: Crimson Boots','false','recipe','30','stackable','liquid','none','-1','3220','0','true','true','true','true','rp_crimson_boots','recipe'),
- ('2220','Recipe: Rind Leather Armor','false','recipe','30','stackable','liquid','none','-1','9660','0','true','true','true','true','rp_rind_leather_mail','recipe'),
- ('2221','Recipe: Rind Leather Gaiters','false','recipe','30','stackable','liquid','none','-1','6040','0','true','true','true','true','rp_rind_leather_gaiters','recipe'),
- ('2222','Recipe: Composite Armor','false','recipe','30','stackable','liquid','none','-1','32000','0','true','true','true','true','rp_composite_armor','recipe'),
- ('2223','Recipe: Tower Shield','false','recipe','30','stackable','liquid','none','-1','5160','0','true','true','true','true','rp_tower_shield','recipe'),
- ('2224','Recipe: Demon\'s Tunic','false','recipe','30','stackable','liquid','none','-1','14720','0','true','true','true','true','rp_demon\'s_tunic','recipe'),
- ('2225','Recipe: Demon\'s Stockings','false','recipe','30','stackable','liquid','none','-1','9200','0','true','true','true','true','rp_demon\'s_hose','recipe'),
- ('2226','Recipe: Mithril Gauntlets','false','recipe','30','stackable','liquid','none','-1','4900','0','true','true','true','true','rp_mithril_gauntlet','recipe'),
- ('2227','Recipe: Forgotten Boots','false','recipe','30','stackable','liquid','none','-1','4900','0','true','true','true','true','rp_forgotten_boots','recipe'),
- ('2228','Recipe: Shining Circlet','false','recipe','30','stackable','liquid','none','-1','7360','0','true','true','true','true','rp_shining_circlet','recipe'),
- ('2229','Recipe: Theca Leather Armor','false','recipe','30','stackable','liquid','none','-1','16500','0','true','true','true','true','rp_theca_leather_mail','recipe'),
- ('2230','Recipe: Theca Leather Gaiters','false','recipe','30','stackable','liquid','none','-1','10320','0','true','true','true','true','rp_theca_leather_gaiters','recipe'),
- ('2231','Recipe: Full Plate Armor','false','recipe','30','stackable','liquid','none','-1','46400','0','true','true','true','true','rp_full_plate_armor','recipe'),
- ('2232','Recipe: Drake Leather Armor','false','recipe','30','stackable','liquid','none','-1','34800','0','true','true','true','true','rp_drake_leather_mail','recipe'),
- ('2233','Recipe: Divine Tunic','false','recipe','30','stackable','liquid','none','-1','21400','0','true','true','true','true','rp_divine_tunic','recipe'),
- ('2234','Recipe: Divine Stockings','false','recipe','30','stackable','liquid','none','-1','13420','0','true','true','true','true','rp_divine_hose','recipe'),
- ('2235','Recipe: Mithril Helmet','false','recipe','30','stackable','liquid','none','-1','10720','0','true','true','true','true','rp_mithril_helmet','recipe'),
- ('2236','Recipe: Cap of Mana','false','recipe','30','stackable','liquid','none','-1','10720','0','true','true','true','true','rp_cap_of_mana','recipe'),
- ('2237','Recipe: Paradia Hood','false','recipe','30','stackable','liquid','none','-1','10720','0','true','true','true','true','rp_paradia_hood','recipe'),
- ('2238','Recipe: Hood of Solar Eclipse','false','recipe','30','stackable','liquid','none','-1','10720','0','true','true','true','true','rp_hood_of_sola_eclipse','recipe'),
- ('2239','Recipe: Hood of Summoning','false','recipe','30','stackable','liquid','none','-1','10720','0','true','true','true','true','rp_hood_of_summons','recipe'),
- ('2240','Recipe: Elemental Hood','false','recipe','30','stackable','liquid','none','-1','10720','0','true','true','true','true','rp_elemental_hood','recipe'),
- ('2241','Recipe: Hood of Grace','false','recipe','30','stackable','liquid','none','-1','10720','0','true','true','true','true','rp_hood_of_grace','recipe'),
- ('2242','Recipe: Phoenix Hood','false','recipe','30','stackable','liquid','none','-1','10720','0','true','true','true','true','rp_phoenix\'s_hood','recipe'),
- ('2243','Recipe: Hood of Aid','false','recipe','30','stackable','liquid','none','-1','10720','0','true','true','true','true','rp_hood_of_assistance','recipe'),
- ('2244','Recipe: Flame Helm','false','recipe','30','stackable','liquid','none','-1','10720','0','true','true','true','true','rp_flame_bonnet','recipe'),
- ('2245','Recipe: Tallum Helm','false','recipe','30','stackable','liquid','none','-1','10720','0','true','true','true','true','rp_tallum_bonnet','recipe'),
- ('2246','Recipe: Helm of Avadon','false','recipe','30','stackable','liquid','none','-1','10720','0','true','true','true','true','rp_bonnet_o\'_avadon','recipe'),
- ('2247','Recipe: Helmet of Pledge','false','recipe','30','stackable','liquid','none','-1','10720','0','true','true','true','true','rp_helmet_of_pledge','recipe'),
- ('2248','Recipe: Gauntlets of Ghost','false','recipe','30','stackable','liquid','none','-1','7160','0','true','true','true','true','rp_gauntlet_of_ghost','recipe'),
- ('2249','Recipe: Adamantite Boots','false','recipe','30','stackable','liquid','none','-1','7160','0','true','true','true','true','rp_adamantite_boots','recipe'),
- ('2250','Recipe: Bone Arrow','false','recipe','30','stackable','liquid','none','-1','800','0','true','true','true','true','rp_bone_arrow','recipe'),
- ('2251','Recipe: Steel Arrow','false','recipe','30','stackable','liquid','none','-1','1200','0','true','true','true','true','rp_fine_steel_arrow','recipe'),
- ('2252','Recipe: Iron Hammer','false','recipe','30','stackable','liquid','none','-1','4880','0','true','true','true','true','rp_iron_hammer','recipe'),
- ('2253','Recipe: Sword Breaker','false','recipe','30','stackable','liquid','none','-1','4880','0','true','true','true','true','rp_sword_breaker','recipe'),
- ('2254','Recipe: Composition Bow','false','recipe','30','stackable','liquid','none','-1','4880','0','true','true','true','true','rp_composition_bow','recipe'),
- ('2255','Recipe: Saber','false','recipe','30','stackable','liquid','none','-1','8180','0','true','true','true','true','rp_saber','recipe'),
- ('2256','Recipe: Assassin Knife','false','recipe','30','stackable','liquid','none','-1','8180','0','true','true','true','true','rp_assassin_knife','recipe'),
- ('2257','Recipe: Trident','false','recipe','30','stackable','liquid','none','-1','8180','0','true','true','true','true','rp_trident','recipe'),
- ('2258','Recipe: Temptation of Abyss','false','recipe','30','stackable','liquid','none','-1','8180','0','true','true','true','true','rp_temptation_of_abyss','recipe'),
- ('2259','Recipe: Spinebone Sword','false','recipe','30','stackable','liquid','none','-1','12880','0','true','true','true','true','rp_spinebone_sword','recipe'),
- ('2260','Recipe: Mace of Judgment','false','recipe','30','stackable','liquid','none','-1','12880','0','true','true','true','true','rp_mace_of_judgment','recipe'),
- ('2261','Recipe: Conjuror\'s Staff','false','recipe','30','stackable','liquid','none','-1','12880','0','true','true','true','true','rp_conjure_staff','recipe'),
- ('2262','Recipe: Elven Bow','false','recipe','30','stackable','liquid','none','-1','12880','0','true','true','true','true','rp_elven_bow','recipe'),
- ('2263','Recipe: Dwarven Trident','false','recipe','30','stackable','liquid','none','-1','12880','0','true','true','true','true','rp_dwarven_trident','recipe'),
- ('2264','Recipe: Two-handed Sword','false','recipe','30','stackable','liquid','none','-1','19340','0','true','true','true','true','rp_two-handed_sword','recipe'),
- ('2265','Recipe: Spiked Club','false','recipe','30','stackable','liquid','none','-1','19340','0','true','true','true','true','rp_spike_club','recipe'),
- ('2266','Recipe: Shilen Knife','false','recipe','30','stackable','liquid','none','-1','19340','0','true','true','true','true','rp_knife_o\'_silenus','recipe'),
- ('2267','Recipe: Gastraphetes','false','recipe','30','stackable','liquid','none','-1','19340','0','true','true','true','true','rp_gastraphetes','recipe'),
- ('2268','Recipe: Tome of Blood','false','recipe','30','stackable','liquid','none','-1','19340','0','true','true','true','true','rp_tome_of_blood','recipe'),
- ('2269','Recipe: Morning Star','false','recipe','30','stackable','liquid','none','-1','28000','0','true','true','true','true','rp_morning_star','recipe'),
- ('2270','Recipe: Goat Head Staff','false','recipe','30','stackable','liquid','none','-1','28000','0','true','true','true','true','rp_goathead_staff','recipe'),
- ('2271','Recipe: Winged Spear','false','recipe','30','stackable','liquid','none','-1','28000','0','true','true','true','true','rp_winged_spear','recipe'),
- ('2272','Recipe: Sword of Revolution','false','recipe','30','stackable','liquid','none','-1','28000','0','true','true','true','true','rp_sword_of_revolution','recipe'),
- ('2273','Recipe: Tarbar','false','recipe','30','stackable','liquid','none','-1','28000','0','true','true','true','true','rp_tarbar','recipe'),
- ('2274','Recipe: Skull Breaker','false','recipe','30','stackable','liquid','none','-1','28000','0','true','true','true','true','rp_skull_breaker','recipe'),
- ('2275','Recipe: Heavy Bone Club','false','recipe','30','stackable','liquid','none','-1','28000','0','true','true','true','true','rp_heavy_bone_club','recipe'),
- ('2276','Recipe: Maingauche','false','recipe','30','stackable','liquid','none','-1','28000','0','true','true','true','true','rp_maingauche','recipe'),
- ('2277','Recipe: Bich\'hwa','false','recipe','30','stackable','liquid','none','-1','28000','0','true','true','true','true','rp_bich\'hwa','recipe'),
- ('2278','Recipe: Strengthened Long Bow','false','recipe','30','stackable','liquid','none','-1','28000','0','true','true','true','true','rp_strengthening_long_bow','recipe'),
- ('2279','Recipe: War Pick','false','recipe','30','stackable','liquid','none','-1','28000','0','true','true','true','true','rp_hammer_in_flames','recipe'),
- ('2280','Recipe: Crucifix of Blood','false','recipe','30','stackable','liquid','none','-1','28000','0','true','true','true','true','rp_crucifix_of_blood','recipe'),
- ('2281','Recipe: Eye of Infinity','false','recipe','30','stackable','liquid','none','-1','28000','0','true','true','true','true','rp_eye_of_infinity','recipe'),
- ('2282','Recipe: Cursed Maingauche','false','recipe','30','stackable','liquid','none','-1','28000','0','true','true','true','true','rp_cursed_maingauche','recipe'),
- ('2283','Recipe: Blue Crystal Skull','false','recipe','30','stackable','liquid','none','-1','30400','0','true','true','true','true','rp_blue_crystal_skull','recipe'),
- ('2284','Recipe: Demon Fangs','false','recipe','30','stackable','liquid','none','-1','30400','0','true','true','true','true','rp_demon_fangs','recipe'),
- ('2285','Recipe: Claymore','false','recipe','30','stackable','liquid','none','-1','36000','0','true','true','true','true','rp_claymore','recipe'),
- ('2286','Recipe: Bonebreaker','false','recipe','30','stackable','liquid','none','-1','36000','0','true','true','true','true','rp_bonebreaker','recipe'),
- ('2287','Recipe: Atuba Hammer','false','recipe','30','stackable','liquid','none','-1','36000','0','true','true','true','true','rp_atuba_hammer','recipe'),
- ('2288','Recipe: Ghost Staff','false','recipe','30','stackable','liquid','none','-1','36000','0','true','true','true','true','rp_ghost_staff','recipe'),
- ('2289','Recipe: Staff of Life','false','recipe','30','stackable','liquid','none','-1','36000','0','true','true','true','true','rp_life_stick','recipe'),
- ('2290','Recipe: Mithril Dagger','false','recipe','30','stackable','liquid','none','-1','36000','0','true','true','true','true','rp_mithril_dagger','recipe'),
- ('2291','Recipe: Scallop Jamadhr','false','recipe','30','stackable','liquid','none','-1','36000','0','true','true','true','true','rp_scallop_jamadhr','recipe'),
- ('2292','Recipe: Light Crossbow','false','recipe','30','stackable','liquid','none','-1','36000','0','true','true','true','true','rp_cyclone_bow','recipe'),
- ('2293','Recipe: Glaive','false','recipe','30','stackable','liquid','none','-1','36000','0','true','true','true','true','rp_glaive','recipe'),
- ('2294','Recipe: Vajra Wands','false','recipe','30','stackable','liquid','none','-1','36000','0','true','true','true','true','rp_vajra_wands','recipe'),
- ('2295','Recipe: Ancient Reagent','false','recipe','30','stackable','liquid','none','-1','36000','0','true','true','true','true','rp_ancient_reagent','recipe'),
- ('2296','Recipe: Atuba Mace','false','recipe','30','stackable','liquid','none','-1','36000','0','true','true','true','true','rp_atuba_mace','recipe'),
- ('2297','Recipe: Flamberge','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_flamberge','recipe'),
- ('2298','Recipe: Stormbringer','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_stormbringer','recipe'),
- ('2299','Recipe: Big Hammer','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_big_hammer','recipe'),
- ('2300','Recipe: Scythe','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_scythe','recipe'),
- ('2301','Recipe: Battle Axe','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_battle_axe','recipe'),
- ('2302','Recipe: Silver Axe','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_war_pick','recipe'),
- ('2303','Recipe: Skull Graver','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_skull_graver','recipe'),
- ('2304','Recipe: Heavy Doom Hammer','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_heavy_doom_hammer','recipe'),
- ('2305','Recipe: Crystal Staff','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_crystal_staff','recipe'),
- ('2306','Recipe: Stick of Faith','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_stick_of_faith','recipe'),
- ('2307','Recipe: Heavy Doom Axe','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_heavy_doom_axe','recipe'),
- ('2308','Recipe: Cursed Dagger','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_cursed_dagger','recipe'),
- ('2309','Recipe: Wolverine Needle','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_needle_wolverine','recipe'),
- ('2310','Recipe: Dark Elven Dagger','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_darkelven_dagger','recipe'),
- ('2311','Recipe: Chakram','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_chakram','recipe'),
- ('2312','Recipe: Crystallized Ice Bow','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_crystallized_ice_bow','recipe'),
- ('2313','Recipe: Orcish Glaive','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_orcish_glaive','recipe'),
- ('2314','Recipe: Body Slasher','false','recipe','30','stackable','liquid','none','-1','45800','0','true','true','true','true','rp_body_slasher','recipe'),
- ('2315','Recipe: Shamshir','false','recipe','30','stackable','liquid','none','-1','57400','0','true','true','true','true','rp_shamshir','recipe'),
- ('2316','Recipe: Katana','false','recipe','30','stackable','liquid','none','-1','57400','0','true','true','true','true','rp_katana','recipe'),
- ('2317','Recipe: Bec de Corbin','false','recipe','30','stackable','liquid','none','-1','57400','0','true','true','true','true','rp_bech_de_corbin','recipe'),
- ('2318','Recipe: Spirit Sword','false','recipe','30','stackable','liquid','none','-1','57400','0','true','true','true','true','rp_spirits_sword','recipe'),
- ('2319','Recipe: Raid Sword','false','recipe','30','stackable','liquid','none','-1','57400','0','true','true','true','true','rp_raid_sword','recipe'),
- ('2320','Recipe: Cursed Staff','false','recipe','30','stackable','liquid','none','-1','57400','0','true','true','true','true','rp_cursed_staff','recipe'),
- ('2321','Recipe: Stiletto','false','recipe','30','stackable','liquid','none','-1','57400','0','true','true','true','true','rp_stiletto','recipe'),
- ('2322','Recipe: Soulfire Dirk','false','recipe','30','stackable','liquid','none','-1','57400','0','true','true','true','true','rp_dagger_of_magicflame','recipe'),
- ('2323','Recipe: Elemental Bow','false','recipe','30','stackable','liquid','none','-1','57400','0','true','true','true','true','rp_elemental_bow','recipe'),
- ('2324','Recipe: Elven Bow of Nobility','false','recipe','30','stackable','liquid','none','-1','57400','0','true','true','true','true','rp_noble_elven_bow','recipe'),
- ('2325','Recipe: Tears of Fairy','false','recipe','30','stackable','liquid','none','-1','57400','0','true','true','true','true','rp_tears_of_fairy','recipe'),
- ('2326','Recipe: Horn of Glory','false','recipe','30','stackable','liquid','none','-1','57400','0','true','true','true','true','rp_horn_of_glory','recipe'),
- ('2327','Recipe: Caliburs','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_caliburs','recipe'),
- ('2328','Recipe: Sword of Delusion','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_sword_of_delusion','recipe'),
- ('2329','Recipe: Tsurugi','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_tsurugi','recipe'),
- ('2330','Recipe: Homunkulus\'s Sword','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_homunkulus\'s_sword','recipe'),
- ('2331','Recipe: Poleaxe','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_poleaxe','recipe'),
- ('2332','Recipe: Sword of Limit','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_sword_of_limit','recipe'),
- ('2333','Recipe: Sword of Nightmare','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_sword_of_nightmare','recipe'),
- ('2334','Recipe: Sword of Whispering Death','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_deathbreath_sword','recipe'),
- ('2335','Recipe: War Axe','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_war_axe','recipe'),
- ('2336','Recipe: Nirvana Axe','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_nirvana_axe','recipe'),
- ('2337','Recipe: Stick of Eternity','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_stick_of_eternity','recipe'),
- ('2338','Recipe: Paradia Staff','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_paradia_staff','recipe'),
- ('2339','Recipe: Inferno Staff','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_inferno_staff','recipe'),
- ('2340','Recipe: Pa\'agrian Hammer','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_paagrio_hammer','recipe'),
- ('2341','Recipe: Sage\'s Staff','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_sage\'s_staff','recipe'),
- ('2342','Recipe: Club of Nature','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_club_of_nature','recipe'),
- ('2343','Recipe: Mace of the Underworld','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_mace_of_underworld','recipe'),
- ('2344','Recipe: Grace Dagger','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_grace_dagger','recipe'),
- ('2345','Recipe: Dark Screamer','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_dark_screamer','recipe'),
- ('2346','Recipe: Fisted Blade','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_fist_blade','recipe'),
- ('2347','Recipe: Akat Long Bow','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_akat_long_bow','recipe'),
- ('2348','Recipe: Heathen\'s Book','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_heathen\'s_book','recipe'),
- ('2349','Recipe: Hex Doll','false','recipe','30','stackable','liquid','none','-1','86000','0','true','true','true','true','rp_hex_doll','recipe'),
- ('2350','Recipe: Pa\'agrian Axe','false','recipe','30','stackable','liquid','none','-1','95600','0','true','true','true','true','rp_paagrio_axe','recipe'),
- ('2351','Recipe: Scorpion','false','recipe','30','stackable','liquid','none','-1','95600','0','true','true','true','true','rp_scorpion','recipe'),
- ('2352','Recipe: Widow Maker','false','recipe','30','stackable','liquid','none','-1','95600','0','true','true','true','true','rp_widow_maker','recipe'),
- ('2353','Recipe: Samurai Longsword','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_samurai_longsword','recipe'),
- ('2354','Recipe: Deadman\'s Staff','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_deadman\'s_staff','recipe'),
- ('2355','Recipe: Ghoul\'s Staff','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_ghoul\'s_staff','recipe'),
- ('2356','Recipe: Demon\'s Staff','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_demon\'s_staff','recipe'),
- ('2357','Recipe: Crystal Dagger','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_crystal_dagger','recipe'),
- ('2358','Recipe: Great Pata','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_great_pata','recipe'),
- ('2359','Recipe: Eminence Bow','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_eminence_bow','recipe'),
- ('2360','Recipe: Orcish Poleaxe','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_orcish_poleaxe','recipe'),
- ('2361','Recipe: Candle of Wisdom','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_candle_of_wisdom','recipe'),
- ('2362','Recipe: Blessed Branch','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_blessed_branch','recipe'),
- ('2363','Recipe: Phoenix Feather','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_phoenix\'s_feather','recipe'),
- ('2364','Recipe: Cerberus Eye','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_cerberus\'s_eye','recipe'),
- ('2365','Recipe: Scroll of Destruction','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_scroll_of_destruction','recipe'),
- ('2366','Recipe: Claws of Black Dragon','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_claws_of_blackdragon','recipe'),
- ('2367','Recipe: Three Eyed Crow\'s Feather','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_three_eye_crow\'s_feather','recipe'),
- ('2375','Wolf Collar','false','pet_collar','10','normal','leather','none','-1','0','0','true','true','true','true','wolf_collar','pet_collar'),
- ('2508','Cursed Bone','false','material','3','stackable','liquid','none','-1','300','0','true','true','true','true','cursed_bone','material'),
- ('2509','Spiritshot: No Grade','false','shot','5','stackable','paper','none','-1','15','0','true','true','true','true','spiritshot_none','none'),
- ('2510','Spiritshot: D-grade','false','shot','5','stackable','paper','d','-1','18','0','true','true','true','true','spiritshot_d','none'),
- ('2511','Spiritshot: C-grade','false','shot','3','stackable','paper','c','-1','35','0','true','true','true','true','spiritshot_c','none'),
- ('2512','Spiritshot: B-grade','false','shot','3','stackable','paper','b','-1','100','0','true','true','true','true','spiritshot_b','none'),
- ('2513','Spiritshot: A-grade','false','shot','2','stackable','paper','a','-1','120','0','true','true','true','true','spiritshot_a','none'),
- ('2514','Spiritshot: S-grade','false','shot','2','stackable','paper','s','-1','150','0','true','true','true','true','spiritshot_s','none'),
- ('2515','Food For Wolves','false','none','40','stackable','liquid','none','-1','100','0','true','true','true','true','food_for_wolves','none'),
- ('2627','Mark of Challenger','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_challenger','none'),
- ('2628','Letter of Kash','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_of_kash','none'),
- ('2629','Watcher\'s 1st Eye','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','watchers_eye1','none'),
- ('2630','Watcher\'s 2nd Eye','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','watchers_eye2','none'),
- ('2631','Scroll of Shyslassys','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scroll_of_shyslassy','none'),
- ('2632','Broken Key','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','broken_key','none'),
- ('2633','Mark of Duty','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_duty','none'),
- ('2634','Letter of Dustin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_of_dustin','none'),
- ('2635','Knights Tear','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','knights_tear','none'),
- ('2636','Mirror of Orpic','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mirror_of_orpic','none'),
- ('2637','Tear of Confession','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tear_of_confession','none'),
- ('2638','Report Piece','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','report_piece','none'),
- ('2639','Report Piece','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','talianuss_report','none'),
- ('2640','Tear of Loyalty','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tear_of_loyalty','none'),
- ('2641','Militas Article','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','militas_article','none'),
- ('2642','Saints Ashes Urn','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','saints_ashes_urn','none'),
- ('2643','Athebaldt\'s Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','atebalts_skull','none'),
- ('2644','Athebaldt\'s Ribs','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','atebalts_ribs','none'),
- ('2645','Athebaldt\'s Shin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','atebalts_shin','none'),
- ('2646','Letter of Windawood','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_of_windawood','none'),
- ('2647','Dufners Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','dufners_letter','none'),
- ('2648','Terry\'s 1st Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','terys_order1','none'),
- ('2649','Terry\'s 2nd Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','terys_order2','none'),
- ('2650','Terry\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','terys_letter','none'),
- ('2651','Viktor\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','viktors_letter','none'),
- ('2652','Hawkeye\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hawkeyes_letter','none'),
- ('2653','Mysterious Runestone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mysterious_runestone','none'),
- ('2654','Ol Mahum Runestone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ol_mahum_runestone','none'),
- ('2655','Turek Runestone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','turek_runestone','none'),
- ('2656','Ant Runestone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ant_runestone','none'),
- ('2657','Turak Bugbear Runestone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','turak_bugbear_runestone','none'),
- ('2658','Terry\'s Box','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','terys_box','none'),
- ('2659','Viktor\'s Request','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','viktors_request','none'),
- ('2660','Medusa Scales','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','medusas_scales','none'),
- ('2661','Shilen\'s Runestone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','silens_runestone','none'),
- ('2662','Analysis Request','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','analysis_request','none'),
- ('2663','Marina\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','marinas_letter','none'),
- ('2664','Experiment Tools','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','experiment_tools','none'),
- ('2665','Analysis Result','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','analysis_result','none'),
- ('2666','Terry\'s 3rd Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','terys_order3','none'),
- ('2667','List of Host','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','list_of_host','none'),
- ('2668','Abyss Runestone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','abyss_runestone1','none'),
- ('2669','Abyss Runestone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','abyss_runestone2','none'),
- ('2670','Abyss Runestone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','abyss_runestone3','none'),
- ('2671','Abyss Runestone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','abyss_runestone4','none'),
- ('2672','Terry\'s Report','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','terys_report','none'),
- ('2673','Mark of Seeker','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_seeker','none'),
- ('2674','Mark of Scholar','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_scholar','none'),
- ('2675','Mirien\'s 1st Sigil','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','miriens_sigil1','none'),
- ('2676','Mirien\'s 2nd Sigil','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','miriens_sigil2','none'),
- ('2677','Mirien\'s 3rd Sigil','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','miriens_sigil3','none'),
- ('2678','Mirien\'s Instruction','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','miriens_instruction','none'),
- ('2679','Maria\'s 1st Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','maryas_letter1','none'),
- ('2680','Maria\'s 2nd Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','maryas_letter2','none'),
- ('2681','Lucas\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lukas_letter','none'),
- ('2682','Lucilla\'s Handbag','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lucillas_handbag','none'),
- ('2683','Creta\'s 1st Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cretas_letter1','none'),
- ('2684','Creta\'s Painting1','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cretas_painting1','none'),
- ('2685','Creta\'s Painting2','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cretas_painting2','none'),
- ('2686','Creta\'s Painting3','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cretas_painting3','none'),
- ('2687','Brown Scroll Scrap','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','brown_scroll_scrap','none'),
- ('2688','Crystal of Purity','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_purity1','none'),
- ('2689','High Priest\'s Sigil','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','highpriests_sigil','none'),
- ('2690','Grand Magister\'s Sigil','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gmagisters_sigil','none'),
- ('2691','Crono\'s Sigil','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cronos_sigil','none'),
- ('2692','Sylvain\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sylvains_letter','none'),
- ('2693','Symbol of Sylvain','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','symbol_of_sylvain','none'),
- ('2694','Jurek\'s List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','jureks_list','none'),
- ('2695','Monster Eye Destroyer Skin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','beamers_skin','none'),
- ('2696','Shaman\'s Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','shamans_necklace','none'),
- ('2697','Shackle\'s Scalp','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','shackles_scalp','none'),
- ('2698','Symbol of Jurek','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','symbol_of_jurek','none'),
- ('2699','Cronos Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cronos_letter','none'),
- ('2700','Dieter\'s Key','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','dieters_key','none'),
- ('2701','Creta\'s 2nd Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cretas_letter2','none'),
- ('2702','Dieter\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','dieters_letter','none'),
- ('2703','Dieter\'s Diary','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','dieters_diary','none'),
- ('2704','Raut\'s Letter Envelope','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rauts_letter_envelope','none'),
- ('2705','Triff\'s Ring','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','treafs_ring','none'),
- ('2706','Scripture Chapter 1','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scripture_chapter_1','none'),
- ('2707','Scripture Chapter 2','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scripture_chapter_2','none'),
- ('2708','Scripture Chapter 3','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scripture_chapter_3','none'),
- ('2709','Scripture Chapter 4','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scripture_chapter_4','none'),
- ('2710','Valkon\'s Request','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','valkons_request','none'),
- ('2711','Poitan\'s Notes','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','poitans_notes','none'),
- ('2712','Scriptures of Knowledge','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scripture_of_knowledge','none'),
- ('2713','Strong Liquor','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','strong_liquor','none'),
- ('2714','Crystal of Purity','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_purity2','none'),
- ('2715','Casian\'s List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kasians_list','none'),
- ('2716','Ghoul\'s Skin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ghouls_skin','none'),
- ('2717','Medusa\'s Blood','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','medusas_blood','none'),
- ('2718','Fettered Soul\'s Ichor','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fetteredsouls_ichor','none'),
- ('2719','Enchanted Gargoyle\'s Nail','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','encht_gargoyles_nail','none'),
- ('2720','Symbol of Cronos','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','symbol_of_cronos','none'),
- ('2721','Mark of Pilgrim','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_pilgrim','none'),
- ('2722','Book of Sage','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','book_of_sage','none'),
- ('2723','Voucher of Trial','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','voucher_of_trial','none'),
- ('2724','Spirit of Flame','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','spirit_of_flame','none'),
- ('2725','Essence of Flame','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','essense_of_flame','none'),
- ('2726','Book of Gerald','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','book_of_gerald','none'),
- ('2727','Gray Badge','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','grey_badge','none'),
- ('2728','Picture of Nahir','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','picture_of_nahir','none'),
- ('2729','Hair of Nahir','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hair_of_nahir','none'),
- ('2730','Statue of Einhasad','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','statue_of_Einhasad','none'),
- ('2731','Book of Darkness','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','book_of_darkness','none'),
- ('2732','Debris of Willow','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','debris_of_willow','none'),
- ('2733','Tag of Rumor','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tag_of_rumor','none'),
- ('2734','Mark of Trust','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_trust','none'),
- ('2735','Letter to Elf','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_to_elf','none'),
- ('2736','Letter to Darkelf','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_to_darkelf','none'),
- ('2737','Letter to Dwarf','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_to_dwarf','none'),
- ('2738','Letter to Orc','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_to_orc','none'),
- ('2739','Letter to Seresin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_to_seresin','none'),
- ('2740','Scroll of Dark Elf Trust','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scroll_of_darkelf_trust','none'),
- ('2741','Scroll of Elf Trust','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scroll_of_elf_trust','none'),
- ('2742','Scroll of Dwarf Trust','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scroll_of_dwarf_trust','none'),
- ('2743','Scroll of Orc Trust','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scroll_of_orc_trust','none'),
- ('2744','Recommendation of Hollint','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','recommendation_of_hollin','none'),
- ('2745','Order of Asterios','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','order_of_ozzy','none'),
- ('2746','Breath of Winds','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','breath_of_winds','none'),
- ('2747','Seed of Verdure','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','seed_of_verdure','none'),
- ('2748','Letter from Thifiell','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_of_thifiell','none'),
- ('2749','Blood of Guardian Basilisk','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','blood_of_guardian_basilisk','none'),
- ('2750','Giant Aphid','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','giant_aphid','none'),
- ('2751','Stakatos Fluids','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','stakatos_fluids','none'),
- ('2752','Basilisk Plasma','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','basilisk_plasma','none'),
- ('2753','Honey Dew','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','honey_dew','none'),
- ('2754','Stakato Ichor','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','stakato_ichor','none'),
- ('2755','Order of Clayton','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','order_of_clayton','none'),
- ('2756','Parasite of Lota','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','parasite_of_lota','none'),
- ('2757','Letter to Manakia','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_to_manakia','none'),
- ('2758','Letter of Manakia','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_of_manakia','none'),
- ('2759','Letter to Nikola','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_to_nichola','none'),
- ('2760','Order of Nikola','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','order_of_nichola','none'),
- ('2761','Heartstone of Porta','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','heart_of_porta','none'),
- ('2762','Mark of Duelist','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_duelist','none'),
- ('2763','Order Gludio','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','order_gludio','none'),
- ('2764','Order Dion','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','order_dion','none'),
- ('2765','Order Giran','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','order_giran','none'),
- ('2766','Order Oren','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','order_oren','none'),
- ('2767','Order Aden','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','order_aden','none'),
- ('2768','Puncher\'s Shard','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','punchers_shard','none'),
- ('2769','Noble Ant\'s Feeler','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','noble_ants_feeler','none'),
- ('2770','Drone\'s Chitin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','drones_chitin','none'),
- ('2771','Dead Seeker Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','deadseeker_fang','none'),
- ('2772','Overlord Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','overlord_necklace','none'),
- ('2773','Fettered Soul\'s Chain','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crimsonbinds_chain','none'),
- ('2774','Chief\'s Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','chiefs_amulet','none'),
- ('2775','Enchanted Eye Meat','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tempered_eye_meat','none'),
- ('2776','Tamrin Orc\'s Ring','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tamrin_orcs_ring','none'),
- ('2777','Tamrin Orc\'s Arrow','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tamrin_orcs_arrow','none'),
- ('2778','Final Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','final_order','none'),
- ('2779','Excuro\'s Skin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','excuros_skin','none'),
- ('2780','Krator\'s Shard','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','krators_shard','none'),
- ('2781','Grandi\'s Skin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','grandis_skin','none'),
- ('2782','Timak Orc\'s Belt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','timak_orcs_belt','none'),
- ('2783','Lakin\'s Mace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rakins_mace','none'),
- ('2784','Luther\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','luthers_letter','none'),
- ('2785','Alex\'s Warrant','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','alankells_warrant','none'),
- ('2786','Leirynn\'s 1st Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leirynns_order1','none'),
- ('2787','Delu Totem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','delu_totem','none'),
- ('2788','Leirynn\'s 2nd Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leirynns_order2','none'),
- ('2789','Chief Kalki\'s Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','chief_kalkis_fang','none'),
- ('2790','Leirynn\'s Report','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leirynns_report','none'),
- ('2791','Strange Map','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','strange_map','none'),
- ('2792','Lambert\'s Map','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lamberts_map','none'),
- ('2793','Alex\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','alankells_letter','none'),
- ('2794','Alex\'s Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','alankells_order','none'),
- ('2795','Wine Catalog','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wine_catalog','none'),
- ('2796','Tyra\'s Contract','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tweetys_contract','none'),
- ('2797','Red Spore Dust','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','red_spore_dust','none'),
- ('2798','Malrukian Wine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','malrukian_wine','none'),
- ('2799','Old Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','old_order','none'),
- ('2800','Jax\'s Diary','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rexs_diary','none'),
- ('2801','1st Torn Map Piece','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','torn_map_piece1','none'),
- ('2802','2nd Torn Map Piece','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','torn_map_piece2','none'),
- ('2803','Solt\'s Map','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','solts_map','none'),
- ('2804','Makel\'s Map','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','makels_map','none'),
- ('2805','Combined Map','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','combined_map','none'),
- ('2806','Rusted Key','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rusted_key1','none'),
- ('2807','Gold Bar','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gold_bar','none'),
- ('2808','Alex\'s Recommend','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','alankells_recommend','none'),
- ('2809','Mark of Searcher','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_searcher','none'),
- ('2810','Report of Perrin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','report_of_perrin','none'),
- ('2811','Kristina\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cristinas_letter','none'),
- ('2812','Picture of Windy','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','picture_of_windy','none'),
- ('2813','Golden Statue','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','golden_statue','none'),
- ('2814','Windy\'s Pebbles','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','windys_pebbles','none'),
- ('2815','Order of Sorius','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','order_of_sorius','none'),
- ('2816','1st Secret Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','secret_letter1','none'),
- ('2817','2nd Secret Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','secret_letter2','none'),
- ('2818','3rd Secret Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','secret_letter3','none'),
- ('2819','4th Secret Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','secret_letter4','none'),
- ('2820','Mark of Healer','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_healer','none'),
- ('2821','Mark of Reformer','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_reformer','none'),
- ('2822','Book of Reform','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','book_of_reform','none'),
- ('2823','Letter of Introduction','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_of_introduction','none'),
- ('2824','Sla\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','slas_letter','none'),
- ('2825','Greetings','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','greetings','none'),
- ('2826','Ol Mahum\'s Money','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','olmahums_money','none'),
- ('2827','Katari\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kataris_letter','none'),
- ('2828','Nyakuri\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','nyakuris_letter','none'),
- ('2829','Undead List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','undead_list','none'),
- ('2830','Ramus\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ramuss_letter','none'),
- ('2831','Ripped Diary','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ripped_diary','none'),
- ('2832','Huge Nail','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','huge_nail','none'),
- ('2833','Letter of Betrayer','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_of_betrayer','none'),
- ('2834','Bone Fragment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bone_fragment4','none'),
- ('2835','Bone Fragment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bone_fragment5','none'),
- ('2836','Bone Fragment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bone_fragment6','none'),
- ('2837','Bone Fragment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bone_fragment7','none'),
- ('2838','Bone Fragment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bone_fragment8','none'),
- ('2839','Bone Fragment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bone_fragment9','none'),
- ('2840','Mark of Magus','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_magus','none'),
- ('2841','Rukal\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rukals_letter','none'),
- ('2842','Parina\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','parinas_letter','none'),
- ('2843','Lilac Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lilac_charm','none'),
- ('2844','1st Golden Seed','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','golden_seed1','none'),
- ('2845','2nd Golden Seed','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','golden_seed2','none'),
- ('2846','3rd Golden Seed','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','golden_seed3','none'),
- ('2847','Score of Elements','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','score_of_elements','none'),
- ('2848','Dazzling Drop','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','dazzling_drop','none'),
- ('2849','Flame Crystal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','flame_crystal','none'),
- ('2850','Harpy\'s Feather','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','harpys_feather','none'),
- ('2851','Wyrm\'s Wingbone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wyrms_wingbone','none'),
- ('2852','Windsus Mane','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','windsus_mane','none'),
- ('2853','Enchanted Monster Eye Shell','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','en_monstereye_shell','none'),
- ('2854','Enchanted Stone Golem Powder','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','en_stonegolem_powder','none'),
- ('2855','Enchanted Iron Golem Scrap','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','en_irongolem_scrap','none'),
- ('2856','Tone of Water','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tone_of_water','none'),
- ('2857','Tone of Fire','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tone_of_fire','none'),
- ('2858','Tone of Wind','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tone_of_wind','none'),
- ('2859','Tone of Earth','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tone_of_earth','none'),
- ('2860','Salamander Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','salamander_charm','none'),
- ('2861','Sylph Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sylph_charm','none'),
- ('2862','Undine Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','undine_charm','none'),
- ('2863','Serpent Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','serpent_charm','none'),
- ('2864','Recommendation of Balanki','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','recommendation_of_balanki','none'),
- ('2865','Recommendation of Filaur','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','recommendation_of_filaur','none'),
- ('2866','Recommendation of Arin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','recommendation_of_arin','none'),
- ('2867','Mark of Maestro','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_maestro','none'),
- ('2868','Letter of Solder Detachment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_of_solder_detachment','none'),
- ('2869','Paint of Kamuru','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','paint_of_kamuru','none'),
- ('2870','Necklace of Kamuru','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','necklace_of_kamuru','none'),
- ('2871','Paint of Teleport Device','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','paint_of_teleport_device','none'),
- ('2872','Teleport Device','false','quest','0','stackable','steel','none','-1','0','0','false','false','false','false','teleport_device','none'),
- ('2873','Architecture of Cruma','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','architecture_of_kruma','none'),
- ('2874','Report of Cruma','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','report_of_kruma','none'),
- ('2875','Ingredients of Antidote','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ingredients_of_antidote','none'),
- ('2876','Stinger Wasp Needle','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','weird_bees_needle','none'),
- ('2877','Marsh Spider\'s Web','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','marsh_spiders_web','none'),
- ('2878','Blood of Leech','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','blood_of_leech','none'),
- ('2879','Mark of Warspirit','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_warspirit','none'),
- ('2880','Vendetta Totem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','vendetta_totem','none'),
- ('2881','Tamlin Orc Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tamlin_orc_head','none'),
- ('2882','Warspirit Totem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','warspirit_totem','none'),
- ('2883','Orim\'s Contract','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','orims_contract','none'),
- ('2884','Porta\'s Eye','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','portas_eye','none'),
- ('2885','Excuro\'s Scale','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','excuros_scale','none'),
- ('2886','Mordeos Talon','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mordeos_talon','none'),
- ('2887','Braki\'s Remains','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','brakis_remains1','none'),
- ('2888','Pekiron\'s Totem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pekirons_totem','none'),
- ('2889','Tonar\'s Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tonars_skull','none'),
- ('2890','Tonar\'s Rib Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tonars_rib_bone','none'),
- ('2891','Tonar\'s Spine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tonars_spine','none'),
- ('2892','Tonar\'s Arm Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tonars_arm_bone','none'),
- ('2893','Tonar\'s Thigh Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tonars_thigh_bone','none'),
- ('2894','Tonar\'s Remains','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tonars_remains1','none'),
- ('2895','Manakia\'s Totem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','manakias_totem','none'),
- ('2896','Hermodt\'s Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hermodts_skull','none'),
- ('2897','Hermodt\'s Rib Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hermodts_rib_bone','none'),
- ('2898','Hermodt\'s Spine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hermodts_spine','none'),
- ('2899','Hermodt\'s Arm Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hermodts_arm_bone','none'),
- ('2900','Hermodt\'s Thigh Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hermodts_thigh_bone','none'),
- ('2901','Hermodt\'s Remains','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hermodts_remains1','none'),
- ('2902','Racoy\'s Totem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','racoys_totem','none'),
- ('2903','Vivyan\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','viviantes_letter','none'),
- ('2904','Insect Diagram Book','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','insect_diagram_book','none'),
- ('2905','Kiruna\'s Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kirunas_skull','none'),
- ('2906','Kiruna\'s Rib Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kirunas_rib_bone','none'),
- ('2907','Kiruna\'s Spine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kirunas_spine','none'),
- ('2908','Kiruna\'s Arm Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kirunas_arm_bone','none'),
- ('2909','Kiruna\'s Thigh Bone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kirunas_thigh_bone','none'),
- ('2910','Kiruna\'s Remains','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kirunas_remains1','none'),
- ('2911','Braki\'s Remains','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','brakis_remains2','none'),
- ('2912','Tonar\'s Remains','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tonars_remains2','none'),
- ('2913','Hermodt\'s Remains','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hermodts_remains2','none'),
- ('2914','Kiruna\'s Remains','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kirunas_remains2','none'),
- ('2916','Broken Teleport Device','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','broken_teleport_device','none'),
- ('2917','Ring of Binding Gemstone','false','material','60','stackable','liquid','none','-1','3482','0','true','true','true','true','ring_of_binding_gemstone','material'),
- ('2918','Mithril Scale Gaiters Material','false','material','60','stackable','liquid','none','-1','3371','0','true','true','true','true','mithril_scale_gaiters_material','material'),
- ('2919','Brigandine Gaiters Material','false','material','60','stackable','liquid','none','-1','3371','0','true','true','true','true','brigandine_gaiters_material','material'),
- ('2920','Elven Mithril Tunic Pattern','false','material','60','stackable','liquid','none','-1','3921','0','true','true','true','true','elven_mithril_tunic_pattern','material'),
- ('2921','Elven Mithril Stockings Pattern','false','material','60','stackable','liquid','none','-1','2518','0','true','true','true','true','elven_mithril_hose_pattern','material'),
- ('2922','Brigandine Helmet Design','false','material','60','stackable','liquid','none','-1','5193','0','true','true','true','true','brigandine_helmet_design','material'),
- ('2923','Manticore Skin Boot Lining','false','material','60','stackable','liquid','none','-1','1480','0','true','true','true','true','manticor_skin_boots_lining','material'),
- ('2924','Brigandine Boots Design','false','material','60','stackable','liquid','none','-1','1480','0','true','true','true','true','brigandine_boots_design','material'),
- ('2925','Elven Mithril Boots Design','false','material','60','stackable','liquid','none','-1','1480','0','true','true','true','true','elven_mithril_boots_design','material'),
- ('2926','Manticore Skin Gloves Lining','false','material','60','stackable','liquid','none','-1','1480','0','true','true','true','true','manticor_skin_gloves_linging','material'),
- ('2927','Brigandine Gauntlets Pattern','false','material','60','stackable','liquid','none','-1','1480','0','true','true','true','true','brigandine_gauntlet_pattern','material'),
- ('2928','Elven Mithril Gloves Design','false','material','60','stackable','liquid','none','-1','1480','0','true','true','true','true','elven_mithril_gloves_design','material'),
- ('2929','Brigandine Shield Fragment','false','material','60','stackable','liquid','none','-1','1389','0','true','true','true','true','brigandine_shield_fragment','material'),
- ('2930','Plate Helmet Design','false','material','60','stackable','liquid','none','-1','2481','0','true','true','true','true','plate_helmet_design','material'),
- ('2931','Salamander Skin Boot Lining','false','material','60','stackable','liquid','none','-1','1792','0','true','true','true','true','slamander_skin_boots_lining','material'),
- ('2932','Plate Boots Design','false','material','60','stackable','liquid','none','-1','1792','0','true','true','true','true','plate_boots_design','material'),
- ('2933','Sage\'s Worn Gloves Lining','false','material','60','stackable','liquid','none','-1','1792','0','true','true','true','true','sage\'s_worn_gloves_lining','material'),
- ('2934','Plate Shield Fragment','false','material','60','stackable','liquid','none','-1','1762','0','true','true','true','true','plate_shield_fragment','material'),
- ('2935','Tempered Mithril Gaiters Fragment','false','material','60','stackable','liquid','none','-1','3763','0','true','true','true','true','tempered_mithril_gaiters_fragment','material'),
- ('2936','Chain Hood Pattern','false','material','60','stackable','liquid','none','-1','2725','0','true','true','true','true','chain_hood_pattern','material'),
- ('2937','Chain Boots Part','false','material','60','stackable','liquid','none','-1','2225','0','true','true','true','true','chain_boots_part','material'),
- ('2938','Karmian Boots Fabric','false','material','60','stackable','liquid','none','-1','2225','0','true','true','true','true','karmian_boots_fabric','material'),
- ('2939','Plate Leather Boot Lining','false','material','60','stackable','liquid','none','-1','2225','0','true','true','true','true','plate_leather_boots_lining','material'),
- ('2940','Dwarven Chain Boots Part','false','material','60','stackable','liquid','none','-1','2225','0','true','true','true','true','dwarven_chain_boots_part','material'),
- ('2941','Boots of Seal Pattern','false','material','60','stackable','liquid','none','-1','2225','0','true','true','true','true','boots_of_seal_pattern','material'),
- ('2942','Reinforced Mithril Gloves Design','false','material','60','stackable','liquid','none','-1','2225','0','true','true','true','true','reinforce_mithril_gloves_design','material'),
- ('2943','Chain Gloves Design','false','material','60','stackable','liquid','none','-1','2225','0','true','true','true','true','chain_gloves_design','material'),
- ('2944','Karmian Gloves Fabric','false','material','60','stackable','liquid','none','-1','2225','0','true','true','true','true','karmian_gloves_fabric','material'),
- ('2945','Chain Shield Fragment','false','material','60','stackable','liquid','none','-1','2475','0','true','true','true','true','chain_shield_fragment','material'),
- ('2946','Plate Leather Gloves Design','false','material','60','stackable','liquid','none','-1','3578','0','true','true','true','true','plate_leather_gloves_design','material'),
- ('2947','Dwarven Chain Shield Fragment','false','material','60','stackable','liquid','none','-1','2800','0','true','true','true','true','dwarven_chain_shield_fragment','material'),
- ('2948','Rind Leather Boot Lining','false','material','60','stackable','liquid','none','-1','2378','0','true','true','true','true','rind_leather_boots_lining','material'),
- ('2949','Dwarven Chain Gloves Design','false','material','60','stackable','liquid','none','-1','2378','0','true','true','true','true','dwarven_chain_gloves_design','material'),
- ('2950','Gloves of Seal Pattern','false','material','60','stackable','liquid','none','-1','2378','0','true','true','true','true','gloves_of_seal_pattern','material'),
- ('2951','Rind Leather Gloves Design','false','material','60','stackable','liquid','none','-1','2378','0','true','true','true','true','rind_leather_gloves_design','material'),
- ('2952','Demon\'s Boots Fabric','false','material','60','stackable','liquid','none','-1','3400','0','true','true','true','true','demon\'s_boots_fabric','material'),
- ('2953','Demon\'s Gloves Fabric','false','material','60','stackable','liquid','none','-1','3400','0','true','true','true','true','demon\'s_gloves_fabric','material'),
- ('2954','Theca Leather Boots Texture','false','material','60','stackable','liquid','none','-1','3160','0','true','true','true','true','theca_leather_boots_texture','material'),
- ('2955','Theca Leather Gloves Texture','false','material','60','stackable','liquid','none','-1','3160','0','true','true','true','true','theca_leather_gloves_texture','material'),
- ('2956','Composite Boots Part','false','material','60','stackable','liquid','none','-1','3400','0','true','true','true','true','composite_boots_part','material'),
- ('2957','Composite Helmet Design','false','material','60','stackable','liquid','none','-1','4560','0','true','true','true','true','composite_helmet_design','material'),
- ('2958','Divine Boots Fabric','false','material','60','stackable','liquid','none','-1','3673','0','true','true','true','true','divine_boots_fabric','material'),
- ('2959','Full Plate Helmet Design','false','material','60','stackable','liquid','none','-1','5782','0','true','true','true','true','full_plate_helmet_design','material'),
- ('2960','Drake Leather Boots Design','false','material','60','stackable','liquid','none','-1','3673','0','true','true','true','true','drake_leather_boots_design','material'),
- ('2961','Full Plate Boots Part','false','material','60','stackable','liquid','none','-1','3673','0','true','true','true','true','full_plate_boots_part','material'),
- ('2962','Drake Leather Gloves Design','false','material','60','stackable','liquid','none','-1','3673','0','true','true','true','true','drake_leather_gloves_design','material'),
- ('2963','Full Plate Gauntlets Part','false','material','60','stackable','liquid','none','-1','3673','0','true','true','true','true','full_plate_gauntlet_part','material'),
- ('2964','Divine Gloves Pattern','false','material','60','stackable','liquid','none','-1','3673','0','true','true','true','true','blessed_gloves_pattern','material'),
- ('2965','Blessed Gloves Design','false','material','60','stackable','liquid','none','-1','3673','0','true','true','true','true','divine_gloves_design','material'),
- ('2966','Full Plate Shield Fragment','false','material','60','stackable','liquid','none','-1','3655','0','true','true','true','true','full_plate_shield_fragment','material'),
- ('2967','Elven Long Sword Blade','false','material','60','stackable','liquid','none','-1','23062','0','true','true','true','true','elven_long_sword_blade','material'),
- ('2968','Dwarven Warhammer Head','false','material','60','stackable','liquid','none','-1','30067','0','true','true','true','true','dwarven_warhammer_head','material'),
- ('2969','Yaksa Mace Head','false','material','60','stackable','liquid','none','-1','38364','0','true','true','true','true','yaksa_mace_head','material'),
- ('2970','Recipe: Ring of Binding','false','recipe','30','stackable','liquid','none','-1','5640','0','true','true','true','true','rp_ring_of_binding','recipe'),
- ('2971','Recipe: Mithril Scale Gaiters','false','recipe','30','stackable','liquid','none','-1','3740','0','true','true','true','true','rp_mithril_scale_gaiters','recipe'),
- ('2972','Recipe: Brigandine Gaiters','false','recipe','30','stackable','liquid','none','-1','3740','0','true','true','true','true','rp_brigandine_gaiters','recipe'),
- ('2973','Recipe: Elven Mithril Tunic','false','recipe','30','stackable','liquid','none','-1','4480','0','true','true','true','true','rp_elven_mithril_tunic','recipe'),
- ('2974','Recipe: Elven Mithril Stockings','false','recipe','30','stackable','liquid','none','-1','2800','0','true','true','true','true','rp_elven_mithril_hose','recipe'),
- ('2975','Recipe: Brigandine Helmet','false','recipe','30','stackable','liquid','none','-1','2240','0','true','true','true','true','rp_brigandine_helmet','recipe'),
- ('2976','Recipe: Manticore Skin Boots','false','recipe','30','stackable','liquid','none','-1','1494','0','true','true','true','true','rp_manticor_skin_boots','recipe'),
- ('2977','Recipe: Brigandine Boots','false','recipe','30','stackable','liquid','none','-1','1494','0','true','true','true','true','rp_brigandine_boots','recipe'),
- ('2978','Recipe: Elven Mithril Boots','false','recipe','30','stackable','liquid','none','-1','1494','0','true','true','true','true','rp_elven_mithril_boots','recipe'),
- ('2979','Recipe: Manticore Skin Gloves','false','recipe','30','stackable','liquid','none','-1','1494','0','true','true','true','true','rp_manticor_skin_gloves','recipe'),
- ('2980','Recipe: Brigandine Gauntlets','false','recipe','30','stackable','liquid','none','-1','1494','0','true','true','true','true','rp_brigandine_gauntlet','recipe'),
- ('2981','Recipe: Elven Mithril Gloves','false','recipe','30','stackable','liquid','none','-1','1494','0','true','true','true','true','rp_elven_mithril_gloves','recipe'),
- ('2982','Recipe: Brigandine Shield','false','recipe','30','stackable','liquid','none','-1','1568','0','true','true','true','true','rp_brigandine_shield','recipe'),
- ('2983','Recipe: Plate Helmet','false','recipe','30','stackable','liquid','none','-1','2940','0','true','true','true','true','rp_plate_helmet','recipe'),
- ('2984','Recipe: Salamander Skin Boots','false','recipe','30','stackable','liquid','none','-1','1956','0','true','true','true','true','rp_slamander_skin_boots','recipe'),
- ('2985','Recipe: Plate Boots','false','recipe','30','stackable','liquid','none','-1','1956','0','true','true','true','true','rp_plate_boots','recipe'),
- ('2986','Recipe: Sage\'s Worn Gloves','false','recipe','30','stackable','liquid','none','-1','1956','0','true','true','true','true','rp_sage\'s_worn_gloves','recipe'),
- ('2987','Recipe: Plate Shield','false','recipe','30','stackable','liquid','none','-1','2060','0','true','true','true','true','rp_plate_shield','recipe'),
- ('2988','Recipe: Tempered Mithril Gaiters','false','recipe','30','stackable','liquid','none','-1','4740','0','true','true','true','true','rp_tempered_mithril_gaiters','recipe'),
- ('2989','Recipe: Chain Hood','false','recipe','30','stackable','liquid','none','-1','3780','0','true','true','true','true','rp_chain_hood','recipe'),
- ('2990','Recipe: Chain Boots','false','recipe','30','stackable','liquid','none','-1','2520','0','true','true','true','true','rp_chain_boots','recipe'),
- ('2991','Recipe: Karmian Boots','false','recipe','30','stackable','liquid','none','-1','2520','0','true','true','true','true','rp_karmian_boots','recipe'),
- ('2992','Recipe: Plated Leather Boots','false','recipe','30','stackable','liquid','none','-1','2520','0','true','true','true','true','rp_plate_leather_boots','recipe'),
- ('2993','Recipe: Dwarven Chain Boots','false','recipe','30','stackable','liquid','none','-1','2520','0','true','true','true','true','rp_dwarven_chain_boots','recipe'),
- ('2994','Recipe: Boots of Seal','false','recipe','30','stackable','liquid','none','-1','2520','0','true','true','true','true','rp_boots_of_seal','recipe'),
- ('2995','Recipe: Reinforced Mithril Gloves','false','recipe','30','stackable','liquid','none','-1','2520','0','true','true','true','true','rp_reinforce_mithril_gloves','recipe'),
- ('2996','Recipe: Chain Gloves','false','recipe','30','stackable','liquid','none','-1','2520','0','true','true','true','true','rp_chain_gloves','recipe'),
- ('2997','Recipe: Karmian Gloves','false','recipe','30','stackable','liquid','none','-1','2520','0','true','true','true','true','rp_karmian_gloves','recipe'),
- ('2998','Recipe: Chain Shield','false','recipe','30','stackable','liquid','none','-1','2660','0','true','true','true','true','rp_chain_shield','recipe'),
- ('2999','Recipe: Plated Leather Gloves','false','recipe','30','stackable','liquid','none','-1','2980','0','true','true','true','true','rp_plate_leather_gloves','recipe'),
- ('3000','Recipe: Dwarven Chain Shield','false','recipe','30','stackable','liquid','none','-1','3120','0','true','true','true','true','rp_dwarven_chain_shield','recipe'),
- ('3001','Recipe: Rind Leather Boots','false','recipe','30','stackable','liquid','none','-1','3220','0','true','true','true','true','rp_rind_leather_boots','recipe'),
- ('3002','Recipe: Dwarven Chain Gloves','false','recipe','30','stackable','liquid','none','-1','3220','0','true','true','true','true','rp_dwarven_chain_gloves','recipe'),
- ('3003','Recipe: Gloves of Seal','false','recipe','30','stackable','liquid','none','-1','3220','0','true','true','true','true','rp_gloves_of_seal','recipe'),
- ('3004','Recipe: Rind Leather Gloves','false','recipe','30','stackable','liquid','none','-1','3220','0','true','true','true','true','rp_rind_leather_gloves','recipe'),
- ('3005','Recipe: Demon\'s Boots','false','recipe','30','stackable','liquid','none','-1','4900','0','true','true','true','true','rp_demon\'s_boots','recipe'),
- ('3006','Recipe: Demon\'s Gloves','false','recipe','30','stackable','liquid','none','-1','4900','0','true','true','true','true','rp_demon\'s_gloves','recipe'),
- ('3007','Recipe: Theca Leather Boots','false','recipe','30','stackable','liquid','none','-1','5500','0','true','true','true','true','rp_theca_leather_boots','recipe'),
- ('3008','Recipe: Theca Leather Gloves','false','recipe','30','stackable','liquid','none','-1','5500','0','true','true','true','true','rp_theca_leather_gloves','recipe'),
- ('3009','Recipe: Composite Boots','false','recipe','30','stackable','liquid','none','-1','4900','0','true','true','true','true','rp_composite_boots','recipe'),
- ('3010','Recipe: Composite Helmet','false','recipe','30','stackable','liquid','none','-1','7360','0','true','true','true','true','rp_composite_helmet','recipe'),
- ('3011','Recipe: Divine Boots','false','recipe','30','stackable','liquid','none','-1','7160','0','true','true','true','true','rp_divine_boots','recipe'),
- ('3012','Recipe: Full Plate Helmet','false','recipe','30','stackable','liquid','none','-1','10720','0','true','true','true','true','rp_full_plate_helmet','recipe'),
- ('3013','Recipe: Drake Leather Boots','false','recipe','30','stackable','liquid','none','-1','7160','0','true','true','true','true','rp_drake_leather_boots','recipe'),
- ('3014','Recipe: Full Plate Boots','false','recipe','30','stackable','liquid','none','-1','7160','0','true','true','true','true','rp_full_plate_boots','recipe'),
- ('3015','Recipe: Drake Leather Gloves','false','recipe','30','stackable','liquid','none','-1','7160','0','true','true','true','true','rp_drake_leather_gloves','recipe'),
- ('3016','Recipe: Full Plate Gauntlets','false','recipe','30','stackable','liquid','none','-1','7160','0','true','true','true','true','rp_full_plate_gauntlet','recipe'),
- ('3017','Recipe: Divine Gloves','false','recipe','30','stackable','liquid','none','-1','7160','0','true','true','true','true','rp_blessed_gloves','recipe'),
- ('3018','Recipe: Blessed Gloves','false','recipe','30','stackable','liquid','none','-1','7160','0','true','true','true','true','rp_divine_gloves','recipe'),
- ('3019','Recipe: Full Plate Shield','false','recipe','30','stackable','liquid','none','-1','7500','0','true','true','true','true','rp_full_plate_shield','recipe'),
- ('3020','Recipe: Elven Long Sword','false','recipe','30','stackable','liquid','none','-1','36000','0','true','true','true','true','rp_elven_long_sword','recipe'),
- ('3021','Recipe: Dwarven War Hammer','false','recipe','30','stackable','liquid','none','-1','57400','0','true','true','true','true','rp_dwarven_warhammer','recipe'),
- ('3022','Recipe: Yaksa Mace','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_yaksa_mace','recipe'),
- ('3023','Recipe: Titan Key','false','recipe','30','stackable','liquid','none','-1','0','0','false','false','false','false','rp_titan_key','recipe'),
- ('3024','Recipe: Journeyman Ring','false','recipe','30','stackable','liquid','none','-1','0','0','false','false','false','false','rp_journeyman_ring','recipe'),
- ('3025','Recipe: Amber Bead','false','recipe','30','stackable','liquid','none','-1','0','0','false','false','false','false','rp_amber_bead','recipe'),
- ('3030','Key of Titan','false','none','10','stackable','bronze','none','-1','0','0','true','true','true','true','key_of_titan','none'),
- ('3031','Spirit Ore','false','material','5','stackable','liquid','none','-1','400','0','true','true','true','true','spirit_ore','material'),
- ('3032','Recipe: Spiritshot D','false','recipe','30','stackable','liquid','none','-1','5000','0','true','true','true','true','rp_spiritshot_d','recipe'),
- ('3033','Recipe: Spiritshot C','false','recipe','30','stackable','liquid','none','-1','60000','0','true','true','true','true','rp_spiritshot_c','recipe'),
- ('3034','Recipe: Spiritshot B','false','recipe','30','stackable','liquid','none','-1','100000','0','true','true','true','true','rp_spiritshot_b','recipe'),
- ('3035','Recipe: Spiritshot A','false','recipe','30','stackable','liquid','none','-1','150000','0','true','true','true','true','rp_spiritshot_a','recipe'),
- ('3036','Recipe: Spiritshot S','false','recipe','30','stackable','liquid','none','-1','450000','0','true','true','true','true','rp_spiritshot_s','recipe'),
- ('3037','Kakan\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kakans_letter','none'),
- ('3038','Blueprint: Summon Mechanic Golem','false','spellbook','120','normal','paper','none','-1','1550','0','true','true','true','true','sb_summon_mechanic_golem1','none'),
- ('3039','Spellbook: Summon Storm Cubic','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_summon_storm_cubic1','none'),
- ('3040','Spellbook: Summon Vampiric Cubic','false','spellbook','120','normal','paper','none','-1','3700','0','true','true','true','true','sb_summon_vampiric_cubic1','none'),
- ('3041','Spellbook: Summon Phantom Cubic','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_summon_poltergeist_cubic1','none'),
- ('3042','Spellbook: Life Scavenge','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_life_scavenge1','none'),
- ('3043','Spellbook: Holy Strike','false','spellbook','120','normal','paper','none','-1','4250','0','true','true','true','true','sb_holy_strike1','none'),
- ('3044','Spellbook: Horror','false','spellbook','120','normal','paper','none','-1','4250','0','true','true','true','true','sb_horror1','none'),
- ('3045','Spellbook: Summon Life Cubic','false','spellbook','120','normal','paper','none','-1','3700','0','true','true','true','true','sb_summon_life_cubic1','none'),
- ('3046','Spellbook: Sacrifice','false','spellbook','120','normal','paper','none','-1','5400','0','true','true','true','true','sb_sacrifice1','none'),
- ('3047','Spellbook: Iron Will','false','spellbook','120','normal','paper','none','-1','3700','0','true','true','true','true','sb_iron_will1','none'),
- ('3048','Spellbook: Reflect Damage','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_reflect_damage1','none'),
- ('3049','Spellbook: Corpse Plague','false','spellbook','120','normal','paper','none','-1','4250','0','true','true','true','true','sb_corpse_plague1','none'),
- ('3050','Spellbook: Hex','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_hex1','none'),
- ('3051','Spellbook: Spirit Barrier','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_spirit_barrier1','none'),
- ('3052','Spellbook: Hamstring','false','spellbook','120','normal','paper','none','-1','3700','0','true','true','true','true','sb_hamstring1','none'),
- ('3053','Spellbook: Holy Blessing','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_holy_blessing11','none'),
- ('3054','Spellbook: Summon Viper Cubic','false','spellbook','120','normal','paper','none','-1','4800','0','true','true','true','true','sb_summon_viper_cubic1','none'),
- ('3055','Spellbook: Lightning Strike','false','spellbook','120','normal','paper','none','-1','6750','0','true','true','true','true','sb_lightening_strike1','none'),
- ('3056','Spellbook: Summon Dark Panther','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_summon_dark_panther1','none'),
- ('3057','Spellbook: Summon Reanimated Man','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_summon_skeletonwarrior1','none'),
- ('3058','Spellbook: Summon Corrupted Man','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_summon_zombi1','none'),
- ('3059','Spellbook: Corpse Burst','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','sb_corpse_burst1','none'),
- ('3060','Spellbook: Forget','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_forget','none'),
- ('3061','Spellbook: Curse Discord','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_curse_discord1','none'),
- ('3062','Spellbook: Curse Fear','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_curse_fear1','none'),
- ('3063','Spellbook: Anchor','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_anchor1','none'),
- ('3064','Spellbook: Silence','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_silence1','none'),
- ('3065','Spellbook: Death Spike','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_death_spike1','none'),
- ('3066','Spellbook: Curse Death Link','false','spellbook','120','normal','paper','none','-1','5400','0','true','true','true','true','sb_curse_death_link1','none'),
- ('3067','Spellbook: Vampiric Claw','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_vampiric_claw11','none'),
- ('3068','Spellbook: Vitalize','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','sb_vitalize1','none'),
- ('3069','Spellbook: Repose','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_repose1','none'),
- ('3070','Spellbook: Hold Undead','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','sb_hold_undead1','none'),
- ('3071','Spellbook: Requiem','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_requiem1','none'),
- ('3072','Spellbook: Purify','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_purify1','none'),
- ('3073','Spellbook: Might of Heaven','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_might_of_heaven11','none'),
- ('3074','Spellbook: Surrender to Wind','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_surrender_to_wind1','none'),
- ('3075','Spellbook: Blazing Circle','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_blazing_circle1','none'),
- ('3076','Spellbook: Prominence','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_prominence11','none'),
- ('3077','Spellbook: Blazing Skin','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_blazing_skin1','none'),
- ('3078','Spellbook: Decay','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','sb_decay1','none'),
- ('3079','Spellbook: Cancel','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','sb_cancel1','none'),
- ('3080','Spellbook: Sleeping Cloud','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_sleeping_cloud1','none'),
- ('3081','Spellbook: Aura Flare','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_aura_flare11','none'),
- ('3082','Spellbook: Surrender to Water','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_surrender_to_water1','none'),
- ('3083','Spellbook: Frost Wall','false','spellbook','120','normal','paper','none','-1','5400','0','true','true','true','true','sb_frost_wall1','none'),
- ('3084','Spellbook: Freezing Shackle','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_freezing_shackle1','none'),
- ('3085','Spellbook: Hydro Blast','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_hydro_blast11','none'),
- ('3086','Spellbook: Frost Bolt','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_frost_bolt11','none'),
- ('3087','Spellbook: Ice Dagger','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_ice_dagger1','none'),
- ('3088','Spellbook: Freezing Skin','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_freezing_skin1','none'),
- ('3089','Spellbook: Tempest','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','sb_tempest1','none'),
- ('3090','Spellbook: Hurricane','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_hurricane11','none'),
- ('3091','Spellbook: Servitor Magic Shield','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_servitor_magic_shield1','none'),
- ('3092','Spellbook: Servitor Physical Shield','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_servitor_physical_shield1','none'),
- ('3093','Spellbook: Servitor Haste','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_servitor_haste1','none'),
- ('3094','Spellbook: Invigor','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_invigor1','none'),
- ('3095','Spellbook: Magic Barrier','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_magic_barrier1','none'),
- ('3096','Spellbook: Blessed Body','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_bless_the_body1','none'),
- ('3097','Spellbook: Blessed Soul','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_bless_the_soul1','none'),
- ('3098','Spellbook: Return','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_return1','none'),
- ('3099','Spellbook: Haste','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_haste1','none'),
- ('3100','Spellbook: Guidance','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_guidance1','none'),
- ('3101','Spellbook: Death Whisper','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_death_whisper1','none'),
- ('3102','Spellbook: Bless Shield','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_bless_shield1','none'),
- ('3103','Amulet: Pa\'agrio\'s Wisdom','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_wisdom_of_paagrio1','none'),
- ('3104','Amulet: Pa\'agrio\'s Glory','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_glory_of_paagrio1','none'),
- ('3105','Amulet: Seal of Winter','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_seal_of_winter1','none'),
- ('3106','Amulet: Seal of Flame','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','sb_seal_of_flame1','none'),
- ('3107','Amulet: Seal of Gloom','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_seal_of_gloom1','none'),
- ('3108','Amulet: Seal of Mirage','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_seal_of_mirage1','none'),
- ('3109','Amulet: Seal of Silence','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','sb_seal_of_silence1','none'),
- ('3110','Amulet: Seal of Scourge','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_seal_of_scourge1','none'),
- ('3111','Amulet: Seal of Suspension','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','sb_seal_of_suspension1','none'),
- ('3112','Amulet: Pa\'agrio\'s Vision','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_sight_of_paagrio1','none'),
- ('3113','Amulet: Pa\'agrio\'s Protection','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_shield_of_paagrio1','none'),
- ('3114','Amulet: Steal Essence','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_steal_essence1','none'),
- ('3115','Amulet: Freezing Flame','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_freezing_flame1','none'),
- ('3116','Amulet: Chant of Fury','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','sb_chant_of_fury1','none'),
- ('3117','Amulet: Chant of Evasion','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_chant_of_evasion1','none'),
- ('3118','Amulet: Chant of Rage','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_chant_of_rage1','none'),
- ('3119','Mark of Guildsman','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_guildsman','none'),
- ('3120','Valkon\'s Recommendation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','valkons_recommend','none'),
- ('3121','Mandragora Berry','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mandragora_berry','none'),
- ('3122','Altran\'s Instructions','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','alltrans_instructions','none'),
- ('3123','Altran\'s 1st Recommendation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','alltrans_recommend1','none'),
- ('3124','Altran\'s 2nd Recommendation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','alltrans_recommend2','none'),
- ('3125','Norman\'s Instructions','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','normans_instructions','none'),
- ('3126','Norman\'s Receipt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','normans_receipt','none'),
- ('3127','Duning\'s Instructions','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','dunings_instructions','none'),
- ('3128','Duning\'s Key','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','dunings_key','none'),
- ('3129','Norman\'s List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','normans_list','none'),
- ('3130','Gray Bone Powder','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','gray_bone_powder','none'),
- ('3131','Granite Whetstone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','granite_whetstone','none'),
- ('3132','Red Pigment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','red_pigment','none'),
- ('3133','Braided Yarn','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','braided_yarn','none'),
- ('3134','Journeyman Gem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','journeyman_gem','none'),
- ('3135','Pinter\'s Instructions','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pinters_instructions','none'),
- ('3136','Amber Bead','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','amber_bead','none'),
- ('3137','Amber Lump','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','amber_lump','none'),
- ('3138','Journeyman Deco Beads','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','journeyman_deco_beads','none'),
- ('3139','Journeyman Ring','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','journeyman_ring','none'),
- ('3140','Mark of Life','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_life','none'),
- ('3141','Cardien\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cardiens_letter','none'),
- ('3142','Camomile Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','camomile_charm','none'),
- ('3143','Hierarch\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hierarchs_letter','none'),
- ('3144','Moonflower Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','moonflower_charm','none'),
- ('3145','Grail Diagram','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','grail_diagram','none'),
- ('3146','Thalia\'s 1st Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','thalyas_letter1','none'),
- ('3147','Thalia\'s 2nd Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','thalyas_letter2','none'),
- ('3148','Thalia\'s Instructions','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','thalyas_instructions','none'),
- ('3149','Pushkin\'s List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pushkins_list','none'),
- ('3150','Pure Mithril Cup','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pure_mithril_cup','none'),
- ('3151','Arkenia\'s Contract','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','arkenias_contract','none'),
- ('3152','Arkenia\'s Instructions','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','arkenias_instructions','none'),
- ('3153','Adonius\'s list','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','adonius_list','none'),
- ('3154','Andariel Scripture Copy','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','andariel_scripture_copy','none'),
- ('3155','Stardust','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','stardust','none'),
- ('3156','Isael\'s Instructions','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','isaels_instructions','none'),
- ('3157','Isael\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','isaels_letter','none'),
- ('3158','Grail of Purity','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','grail_of_purity','none'),
- ('3159','Tears of Unicorn','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tears_of_unicorn','none'),
- ('3160','Water of Life','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','water_of_life','none'),
- ('3161','Pure Mithril Ore','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pure_mithril_ore','none'),
- ('3162','Ant Soldier Acid','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ant_soldier_acid','none'),
- ('3163','Wyrm\'s Talon','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wyrms_talon1','none'),
- ('3164','Spider Ichor','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','spider_ichor','none'),
- ('3165','Harpy\'s Down','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','harpys_down','none'),
- ('3166','Talin\'s Spear Blade','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','talins_spear_blade','none'),
- ('3167','Talin\'s Spear Shaft','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','talins_spear_shaft','none'),
- ('3168','Talin\'s Ruby','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','talins_ruby','none'),
- ('3169','Talin\'s Aquamarine','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','talins_aquamarine','none'),
- ('3170','Talin\'s Amethyst','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','talins_amethyst','none'),
- ('3171','Talin\'s Peridot','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','talins_peridot','none'),
- ('3172','Mark of Fate','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_fate','none'),
- ('3173','Kaira\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kairas_letter1','none'),
- ('3174','Metheus\'s Funeral Jar','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','metheus_funeral_jar','none'),
- ('3175','Kasandra\'s Remains','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kasandras_remains','none'),
- ('3176','Herbalism Textbook','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','herbalism_textbook','none'),
- ('3177','Ixia\'s List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ixias_list','none'),
- ('3178','Medusa\'s Ichor','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','medusa_ichor','none'),
- ('3179','Marsh Spider Fluids','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','m_spider_fluids','none'),
- ('3180','Dead Seeker Dung','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','dead_seeker_dung','none'),
- ('3181','Tyrant\'s Blood','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tyrants_blood','none'),
- ('3182','Nightshade Root','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','nightshade_root','none'),
- ('3183','Belladonna','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','belladonna','none'),
- ('3184','Alder\'s Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','alders_skull1','none'),
- ('3185','Alders Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','alders_skull2','none'),
- ('3186','Alder\'s Receipt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','alders_receipt','none'),
- ('3187','Revelations Manuscript','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','revelations_manuscript','none'),
- ('3188','Kaira\'s Instructions','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kairas_instructions','none'),
- ('3189','Kaira\'s Recommendation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kairas_recommend','none'),
- ('3190','Palus Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','palus_charm','none'),
- ('3191','Thifiell\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','thifiels_letter','none'),
- ('3192','Arkenia\'s Note','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','arkenias_note','none'),
- ('3193','Pixy Garnet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pixy_garnet','none'),
- ('3194','Grandis\'s Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','grandis_skull','none'),
- ('3195','Karul Bugbear Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','karul_bugbear_skull','none'),
- ('3196','Breka Overlord Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','breka_overlord_skull','none'),
- ('3197','Leto Overlord Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leto_overlord_skull','none'),
- ('3198','Red Fairy Dust','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','red_fairy_dust','none'),
- ('3199','Blight Treant Seed','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','timiriran_seed','none'),
- ('3200','Black Willow Leaf','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','black_willow_leaf','none'),
- ('3201','Blight Treant Sap','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','timiriran_sap','none'),
- ('3202','Arkenia\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','arkenias_letter1','none'),
- ('3203','Mark of Glory','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_glory','none'),
- ('3204','Vokian\'s Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','vokiyans_order1','none'),
- ('3205','Manashen Shard','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','manashen_shard','none'),
- ('3206','Tyrant Talon','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tyrant_talon','none'),
- ('3207','Guardian Basilisk Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','guardian_basilisk_fang','none'),
- ('3208','Vokian\'s Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','vokiyans_order2','none'),
- ('3209','Necklace of Authority','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','necklace_of_authority','none'),
- ('3210','Chianta\'s 1st Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','chiantas_order1','none'),
- ('3211','Scepter of Breka','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scepter_of_breka','none'),
- ('3212','Scepter of Enku','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scepter_of_enku','none'),
- ('3213','Scepter of Vuku','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scepter_of_vuku','none'),
- ('3214','Scepter of Turek','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scepter_of_turek','none'),
- ('3215','Scepter of Tunath','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scepter_of_lennunt','none'),
- ('3216','Chianta\'s 2nd Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','chiantas_order2','none'),
- ('3217','Chianta\'s 3rd Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','chiantas_order3','none'),
- ('3218','Tamlin Orc Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tamlin_orc_skull','none'),
- ('3219','Timak Orc Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','timak_orc_head','none'),
- ('3220','Scepter Box','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scepter_box','none'),
- ('3221','Pashika\'s Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pashikas_head','none'),
- ('3222','Vultus\' Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','vultus_head','none'),
- ('3223','Glove of Voltar','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','glove_of_voltar','none'),
- ('3224','Enku Overlord Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','enku_overlord_head','none'),
- ('3225','Glove of Kepra','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','glove_of_kepra','none'),
- ('3226','Makum Bugbear Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','makum_bugbear_head','none'),
- ('3227','Glove of Burai','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','glove_of_burai','none'),
- ('3228','Manakia\'s 1st Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','manakias_letter1','none'),
- ('3229','Manakia\'s 2nd Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','manakias_letter2','none'),
- ('3230','Kasman\'s 1st Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kasmans_letter1','none'),
- ('3231','Kasman\'s 2nd Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kasmans_letter2','none'),
- ('3232','Kasman\'s 3rd Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','kasmans_letter3','none'),
- ('3233','Driko\'s Contract','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','drikos_contract','none'),
- ('3234','Stakato Drone Husk','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','stakato_drone_husk1','none'),
- ('3235','Tanapi\'s Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tanapis_order1','none'),
- ('3236','Scepter of Tantos','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','scepter_of_tantos','none'),
- ('3237','Ritual Box','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ritual_box','none'),
- ('3238','Mark of Prosperity','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_prosperity','none'),
- ('3239','1st Ring of Testimony','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ring_of_testimony1','none'),
- ('3240','2nd Ring of Testimony','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ring_of_testimony2','none'),
- ('3241','Old Account Book','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','old_account_book','none'),
- ('3242','Blessed Seed','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','blessed_seed','none'),
- ('3243','Emily\'s Recipe','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','recipe_of_emilly','none'),
- ('3244','Lilith\'s Elven Wafer','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','rylith_elven_wafer','none'),
- ('3245','Maphr Tablet Fragment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','maphr_tablet_fragment','none'),
- ('3246','Collection License','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','collection_license','none'),
- ('3247','Lockirin\'s 1st Notice','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lockirins_notice1','none'),
- ('3248','Lockirin\'s 2nd Notice','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lockirins_notice2','none'),
- ('3249','Lockirin\'s 3rd Notice','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lockirins_notice3','none'),
- ('3250','Lockirin\'s 4th Notice','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lockirins_notice4','none'),
- ('3251','Lockirin\'s 5th Notice','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lockirins_notice5','none'),
- ('3252','Contribution of Shari','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','contribution_of_chali','none'),
- ('3253','Contribution of Mion','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','contribution_of_mion','none'),
- ('3254','Contribution of Maryse','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','contribution_of_marife','none'),
- ('3255','Maryse\'s Request','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','marifes_request','none'),
- ('3256','Contribution of Toma','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','contribution_of_toma','none'),
- ('3257','Receipt of Bolter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','receipt_of_bolter','none'),
- ('3258','1st Receipt of Contribution','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','receipt_of_contribution1','none'),
- ('3259','2nd Receipt of Contribution','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','receipt_of_contribution2','none'),
- ('3260','3rd Receipt of Contribution','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','receipt_of_contribution3','none'),
- ('3261','4th Receipt of Contribution','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','receipt_of_contribution4','none'),
- ('3262','5th Receipt of Contribution','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','receipt_of_contribution5','none'),
- ('3263','Procuration of Torocco','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','procuration_of_torocco','none'),
- ('3264','Bright\'s List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','brights_list','none'),
- ('3265','Mandragora Petal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mandragora_petal','none'),
- ('3266','Crimson Moss','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crimson_moss','none'),
- ('3267','Mandragora Bouquet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mandragora_bouquet','none'),
- ('3268','Parman\'s Instructions','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','parmans_instructions','none'),
- ('3269','Parman\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','parmans_letter','none'),
- ('3270','Clay Dough','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','clay_dough','none'),
- ('3271','Pattern of Keyhole','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','pattern_of_keyhole','none'),
- ('3272','Nikolas\' List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','nikolas_list','none'),
- ('3273','Stakato Shell','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','stakato_shell','none'),
- ('3274','Toad Lord Sac','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','inpicio_sac','none'),
- ('3275','Spider Thorn','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','spider_thorn','none'),
- ('3276','Mark of Champion','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_champion','none'),
- ('3277','Ascalon\'s 1st Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ascalons_letter1','none'),
- ('3278','Mason\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','masons_letter','none'),
- ('3279','Iron Rose Ring','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','iron_rose_ring','none'),
- ('3280','Ascalon\'s 2nd Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ascalons_letter2','none'),
- ('3281','White Rose Insignia','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','white_rose_insignia','none'),
- ('3282','Groot\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','groots_letter','none'),
- ('3283','Ascalon\'s 3rd Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ascalons_letter3','none'),
- ('3284','Mouen\'s 1st Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mouens_order1','none'),
- ('3285','Mouen\'s 2nd Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mouens_order2','none'),
- ('3286','Mouen\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mouens_letter','none'),
- ('3287','Harpy\'s Egg','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','harpys_egg1','none'),
- ('3288','Medusa\'s Venom','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','medusa_venom1','none'),
- ('3289','Windsus Bile','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','windsus_bile1','none'),
- ('3290','Bloody Axe Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bloody_axe_head','none'),
- ('3291','Road Ratman Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','road_ratman_head','none'),
- ('3292','Leto Lizardman Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leto_lizardman_fang1','none'),
- ('3293','Mark of Sagittarius','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_sagittarius','none'),
- ('3294','Bernard\'s Introduction','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bernards_introduction','none'),
- ('3295','Hamil\'s 1st Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_of_hamil1','none'),
- ('3296','Hamil\'s 2nd Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_of_hamil2','none'),
- ('3297','Hamil\'s 3rd Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letter_of_hamil3','none'),
- ('3298','Hunter\'s 1st Rune','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hunters_rune1','none'),
- ('3299','Hunter\'s 2nd Rune','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hunters_rune2','none'),
- ('3300','Talisman of Kadesh','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','talisman_of_kadesh','none'),
- ('3301','Talisman of Snake','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','talisman_of_snake','none'),
- ('3302','Mithril Clip','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mithril_clip','none'),
- ('3303','Stakato Chitin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','stakato_chitin','none'),
- ('3304','Reinforced Bowstring','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','st_bowstring','none'),
- ('3305','Manashen\'s Horn','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','manashens_horn','none'),
- ('3306','Blood of Lizardman','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','blood_of_lizardman','none'),
- ('3307','Mark of Witchcraft','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_witchcraft','none'),
- ('3308','Orim\'s Diagram','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','orims_diagram','none'),
- ('3309','Alexandria\'s Book','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','alexandrias_book','none'),
- ('3310','Iker\'s List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ikers_list','none'),
- ('3311','Dire Wyrm Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','dire_wyrm_fang','none'),
- ('3312','Leto Lizardman Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leto_lizardman_charm','none'),
- ('3313','Enchanted Golem Heartstone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','en_golem_heartstone','none'),
- ('3314','Lara\'s Memo','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lars_memo1','none'),
- ('3315','Nestle\'s Memo','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','nestle_memo1','none'),
- ('3316','Leopold\'s Journal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','leopolds_journal1','none'),
- ('3317','Aklantoth 1st Gem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','aklantos_gem1','none'),
- ('3318','Aklantoth 2nd Gem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','aklantos_gem2','none'),
- ('3319','Aklantoth 3rd Gem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','aklantos_gem3','none'),
- ('3320','Aklantoth 4th Gem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','aklantos_gem4','none'),
- ('3321','Aklantoth 5th Gem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','aklantos_gem5','none'),
- ('3322','Aklantoth 6th Gem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','aklantos_gem6','none'),
- ('3323','1st Brimstone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','brimstone1','none'),
- ('3324','Orim\'s Instructions','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','orims_instructions','none'),
- ('3325','Orim\'s 1st Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','orims_letter1','none'),
- ('3326','Orim\'s 2nd Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','orims_letter2','none'),
- ('3327','Sir Vasper\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sir_vaspers_letter','none'),
- ('3328','Vadin\'s Crucifix','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','vadins_crucifix','none'),
- ('3329','Tamlin Orc Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tamlin_orc_amulet','none'),
- ('3330','Vadin\'s Sanctions','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','vadins_sanctions','none'),
- ('3331','Iker\'s Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ikers_amulet','none'),
- ('3332','Soultrap Crystal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','soultrap_crystal','none'),
- ('3333','Purgatory Key','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','purgatory_key','none'),
- ('3334','Zeruel Bind Crystal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','zeruel_bind_crystal','none'),
- ('3335','2nd Brimstone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','brimstone2','none'),
- ('3336','Mark of Summoner','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_summoner','none'),
- ('3337','Leto Lizardman Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','letolizardman_amulet','none'),
- ('3338','Sac of Redspores','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sac_of_redspores','none'),
- ('3339','Karul Bugbear Totem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','karulbugbear_totem','none'),
- ('3340','Shards of Manashen','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','shards_of_manashen','none'),
- ('3341','Breka Orc Totem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','brekaorc_totem','none'),
- ('3342','Crimson Bloodstone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crimson_bloodstone','none'),
- ('3343','Talons of Tyrant','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','talons_of_tyrant','none'),
- ('3344','Wings of Droneant','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','wings_of_droneant','none'),
- ('3345','Tusk of Windsus','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tusk_of_windsus','none'),
- ('3346','Fangs of Wyrm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','fangs_of_wyrm','none'),
- ('3347','Lara\'s 1st List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lars_list1','none'),
- ('3348','Lara\'s 2nd List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lars_list2','none'),
- ('3349','Lara\'s 3rd List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lars_list3','none'),
- ('3350','Lara\'s 4th List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lars_list4','none'),
- ('3351','Lara\'s 5th List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','lars_list5','none'),
- ('3352','Galatea\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','galateas_letter','none'),
- ('3353','Beginner\'s Arcana','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','beginners_arcana','none'),
- ('3354','Almors\'s Arcana','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','almors_arcana','none'),
- ('3355','Camoniell\'s Arcana','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','camoniell_arcana','none'),
- ('3356','Belthus\'s Arcana','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','belthus_arcana','none'),
- ('3357','Basillia\'s Arcana','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','basillia_arcana','none'),
- ('3358','Celestiel\'s Arcana','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','celestiel_arcana','none'),
- ('3359','Brynthea\'s Arcana','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','brynthea_arcana','none'),
- ('3360','1st Crystal of Starting','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_starting1','none'),
- ('3361','1st Crystal of Inprogress','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_inprogress1','none'),
- ('3362','1st Crystal of Foul','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_foul1','none'),
- ('3363','1st Crystal of Defeat','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_defeat1','none'),
- ('3364','1st Crystal of Victory','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_victory1','none'),
- ('3365','2nd Crystal of Starting','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_starting2','none'),
- ('3366','2nd Crystal of Inprogress','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_inprogress2','none'),
- ('3367','2nd Crystal of Foul','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_foul2','none'),
- ('3368','2nd Crystal of Defeat','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_defeat2','none'),
- ('3369','2nd Crystal of Victory','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_victory2','none'),
- ('3370','3rd Crystal of Starting','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_starting3','none'),
- ('3371','3rd Crystal of Inprogress','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_inprogress3','none'),
- ('3372','3rd Crystal of Foul','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_foul3','none'),
- ('3373','3rd Crystal of Defeat','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_defeat3','none'),
- ('3374','3rd Crystal of Victory','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_victory3','none'),
- ('3375','4th Crystal of Starting','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_starting4','none'),
- ('3376','4th Crystal of Inprogress','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_inprogress4','none'),
- ('3377','4th Crystal of Foul','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_foul4','none'),
- ('3378','4th Crystal of Defeat','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_defeat4','none'),
- ('3379','4th Crystal of Victory','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_victory4','none'),
- ('3380','5th Crystal of Starting','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_starting5','none'),
- ('3381','5th Crystal of Inprogress','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_inprogress5','none'),
- ('3382','5th Crystal of Foul','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_foul5','none'),
- ('3383','5th Crystal of Defeat','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_defeat5','none'),
- ('3384','5th Crystal of Victory','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_victory5','none'),
- ('3385','6th Crystal of Starting','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_starting6','none'),
- ('3386','6th Crystal of Inprogress','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_inprogress6','none'),
- ('3387','6th Crystal of Foul','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_foul6','none'),
- ('3388','6th Crystal of Defeat','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_defeat6','none'),
- ('3389','6th Crystal of Victory','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_of_victory6','none'),
- ('3390','Mark of Lord','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','mark_of_lord','none'),
- ('3391','Ordeal Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ordeal_necklace','none'),
- ('3392','Varkee\'s Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','varkees_charm','none'),
- ('3393','Tantus\'s Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','tantus_charm','none'),
- ('3394','Hatos\'s Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','hatos_charm','none'),
- ('3395','Takuna\'s Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','takuna_charm','none'),
- ('3396','Chianta\'s Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','chianta_charm','none'),
- ('3397','Manakia\'s Orders','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','manakias_orders','none'),
- ('3398','Breka Orc Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','breka_orc_fang','none'),
- ('3399','Manakia\'s Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','manakias_amulet','none'),
- ('3400','Huge Orc Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','huge_orc_fang','none'),
- ('3401','Sumari\'s Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sumaris_letter','none'),
- ('3402','Urutu Blade','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','urutu_blade','none'),
- ('3403','Timak Orc Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','timak_orc_skull','none'),
- ('3404','Sword Into Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','sword_into_skull','none'),
- ('3405','Neruga Axe Blade','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','neruga_axe_blade','none'),
- ('3406','Axe of Ceremony','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','axe_of_ceremony','none'),
- ('3407','Marsh Spider Feeler','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','marsh_spider_feeler','none'),
- ('3408','Marsh Spider Feet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','marsh_spider_feet','none'),
- ('3409','Handiwork Spider Brooch','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','handiwork_spider_brooch','none'),
- ('3410','Cornea of Enchanted Monster Eye','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','cornea_of_en_monstereye','none'),
- ('3411','Monster Eye Woodcarving','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','monstereye_woodcarving','none'),
- ('3412','Bear Fang Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bear_fang_necklace','none'),
- ('3413','Martankus\'s Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','martankus_charm','none'),
- ('3414','Ragna Orc Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ragna_orc_head','none'),
- ('3415','Ragna Chief Notice','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','ragna_chief_notice','none'),
- ('3416','Immortal Flame','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','immortal_flame','none'),
- ('3417','Animal Lover\'s List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','animal_lovers_list','none'),
- ('3418','Animal Slayer\'s 1st List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','animal_slayer_list1','none'),
- ('3419','Animal Slayer\'s 2nd List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','animal_slayer_list2','none'),
- ('3420','Animal Slayer\'s 3rd List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','animal_slayer_list3','none'),
- ('3421','Animal Slayer\'s 4th List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','animal_slayer_list4','none'),
- ('3422','Animal Slayer\'s 5th List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','animal_slayer_list5','none'),
- ('3423','Bloody Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bloody_fang','none'),
- ('3424','Bloody Claw','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bloody_claw','none'),
- ('3425','Bloody Nail','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bloody_nail','none'),
- ('3426','Bloody Kasha Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bloody_kasha_fang','none'),
- ('3427','Bloody Tarantula Nail','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','bloody_tarantula_nail','none'),
- ('3428','Crystal Brooch','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','crystal_brooch','none'),
- ('3429','Spellbook: Greater Heal','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_greater_heal11','none'),
- ('3430','Spellbook: Greater Battle Heal','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_greater_battle_heal11','none'),
- ('3431','Spellbook: Greater Group Heal','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_greater_group_heal11','none'),
- ('3432','Spellbook: Remedy','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_remedy1','none'),
- ('3433','Elf Figure','false','none','0','normal','steel','none','-1','0','0','false','false','false','false','elf_figure','none'),
- ('3434','Coke','false','none','0','normal','steel','none','-1','0','0','false','false','false','false','coke','none'),
- ('3435','Nvidia','false','none','0','normal','steel','none','-1','0','0','false','false','false','false','nvidia','none'),
- ('3436','Mouse','false','none','0','normal','steel','none','-1','0','0','false','false','false','false','mouse','none'),
- ('3437','Trade Book of Merchant','false','none','120','normal','paper','none','-1','20000','0','true','true','true','true','trade_book_of_merchant','none'),
- ('3438','Trade Book of Great Merchant','false','none','120','normal','paper','none','-1','20000','0','true','true','true','true','trade_book_of_great_merchant','none'),
- ('3440','Cargo Box','false','none','20','stackable','steel','none','-1','10','0','true','true','true','true','q_cargo_box1','none'),
- ('3441','Cargo Box','false','none','20','stackable','steel','none','-1','10','0','true','true','true','true','q_cargo_box2','none'),
- ('3442','Cargo Box','false','none','20','stackable','steel','none','-1','10','0','true','true','true','true','q_cargo_box3','none'),
- ('3443','Cargo Box','false','none','20','stackable','steel','none','-1','10','0','true','true','true','true','q_cargo_box4','none'),
- ('3444','Gludio Apples','false','none','20','stackable','steel','none','-1','1000','0','true','true','true','true','q_loot_1','none'),
- ('3445','Dion Corn Meal','false','none','20','stackable','steel','none','-1','1000','0','true','true','true','true','q_loot_2','none'),
- ('3446','Dire Wolf Pelts','false','none','20','stackable','steel','none','-1','1000','0','true','true','true','true','q_loot_3','none'),
- ('3447','Moonstone','false','none','20','stackable','steel','none','-1','1500','0','true','true','true','true','q_loot_4','none'),
- ('3448','Gludio Wheat Flour','false','none','20','stackable','steel','none','-1','1500','0','true','true','true','true','q_loot_5','none'),
- ('3449','Spidersilk Rope','false','none','20','stackable','steel','none','-1','1500','0','true','true','true','true','q_loot_6','none'),
- ('3450','Alexandrite','false','none','20','stackable','steel','none','-1','2000','0','true','true','true','true','q_loot_7','none'),
- ('3451','Silver Tea Service','false','none','20','stackable','steel','none','-1','2000','0','true','true','true','true','q_loot_8','none'),
- ('3452','Mechanic Golem Spare Parts','false','none','20','stackable','steel','none','-1','2000','0','true','true','true','true','q_loot_9','none'),
- ('3453','Fire Emerald','false','none','20','stackable','steel','none','-1','5000','0','true','true','true','true','q_loot_10','none'),
- ('3454','Avellan Silk Frock','false','none','20','stackable','steel','none','-1','5000','0','true','true','true','true','q_loot_11','none'),
- ('3455','Feriotic Porcelain Urn','false','none','20','stackable','steel','none','-1','20000','0','true','true','true','true','q_loot_12','none'),
- ('3456','Imperial Diamond','false','none','20','stackable','steel','none','-1','20000','0','true','true','true','true','q_loot_13','none'),
- ('3457','Statue of Shilen - Head','false','none','20','stackable','steel','none','-1','2000','0','true','true','true','true','q_loot_14','none'),
- ('3458','Statue of Shilen - Torso','false','none','20','stackable','steel','none','-1','2000','0','true','true','true','true','q_loot_15','none'),
- ('3459','Statue of Shilen - Arm','false','none','20','stackable','steel','none','-1','2000','0','true','true','true','true','q_loot_16','none'),
- ('3460','Statue of Shilen - Leg','false','none','20','stackable','steel','none','-1','2000','0','true','true','true','true','q_loot_17','none'),
- ('3461','Complete Statue of Shilen','false','none','20','stackable','steel','none','-1','20000','0','true','true','true','true','q_loot_18','none'),
- ('3462','Fragment of Ancient Tablet - 1st Piece','false','none','20','stackable','steel','none','-1','2000','0','true','true','true','true','q_loot_19','none'),
- ('3463','Fragment of Ancient Tablet - 2nd Piece','false','none','20','stackable','steel','none','-1','2000','0','true','true','true','true','q_loot_20','none'),
- ('3464','Fragment of Ancient Tablet - 3rd Piece','false','none','20','stackable','steel','none','-1','2000','0','true','true','true','true','q_loot_21','none'),
- ('3465','Fragment of Ancient Tablet - 4th Piece','false','none','20','stackable','steel','none','-1','2000','0','true','true','true','true','q_loot_22','none'),
- ('3466','Complete Ancient Tablet','false','none','20','stackable','steel','none','-1','20000','0','true','true','true','true','q_loot_23','none'),
- ('3467','Wish Potion','false','none','60','normal','paper','none','-1','10','0','true','true','true','true','q_wish_potion','none'),
- ('3468','Ancient Crown','false','none','0','normal','paper','none','-1','1000','0','true','true','true','true','q_ancient_crown','none'),
- ('3469','Certificate of Royalty','false','none','0','normal','paper','none','-1','10','0','true','true','true','true','q_certificate_of_royalty','none'),
- ('3470','Gold Bar','false','none','0','stackable','paper','none','-1','10000','0','true','true','true','true','q_gold_bar','none'),
- ('3472','Blood Medusa','false','none','0','stackable','steel','none','-1','50','0','true','true','true','true','q_blood_medusa','none'),
- ('3473','Blood Werewolf','false','none','0','stackable','steel','none','-1','100','0','true','true','true','true','q_blood_werewolf','none'),
- ('3474','Blood Basilisk','false','none','0','stackable','steel','none','-1','150','0','true','true','true','true','q_blood_basilisk','none'),
- ('3475','Blood Drevanul','false','none','0','stackable','steel','none','-1','100','0','true','true','true','true','q_blood_drevanul','none'),
- ('3476','Blood Succubus','false','none','0','stackable','steel','none','-1','150','0','true','true','true','true','q_blood_succubus','none'),
- ('3477','Blood Dragon','false','none','0','stackable','steel','none','-1','200','0','true','true','true','true','q_blood_dragon','none'),
- ('3478','Beleth\'s Blood Dragon','false','none','0','stackable','steel','none','-1','300','0','true','true','true','true','q_bereths_blood_dragon','none'),
- ('3479','Manak\'s Blood Werewolf','false','none','0','stackable','steel','none','-1','150','0','true','true','true','true','q_manaks_blood_werewolf','none'),
- ('3480','Nia\'s Blood Medusa','false','none','0','stackable','steel','none','-1','100','0','true','true','true','true','q_nias_blood_medusa','none'),
- ('3481','Gold Dragon','false','none','0','stackable','steel','none','-1','200','0','true','true','true','true','q_gold_dragon','none'),
- ('3482','Gold Wyvern','false','none','0','stackable','steel','none','-1','50','0','true','true','true','true','q_gold_wyvern','none'),
- ('3483','Gold Knight','false','none','0','stackable','steel','none','-1','100','0','true','true','true','true','q_gold_knight','none'),
- ('3484','Gold Giant','false','none','0','stackable','steel','none','-1','150','0','true','true','true','true','q_gold_giant','none'),
- ('3485','Gold Drake','false','none','0','stackable','steel','none','-1','100','0','true','true','true','true','q_gold_drake','none'),
- ('3486','Gold Wyrm','false','none','0','stackable','steel','none','-1','150','0','true','true','true','true','q_gold_wyrm','none'),
- ('3487','Beleth\'s Gold Dragon','false','none','0','stackable','steel','none','-1','300','0','true','true','true','true','q_bereths_gold_dragon','none'),
- ('3488','Manak\'s Gold Giant','false','none','0','stackable','steel','none','-1','150','0','true','true','true','true','q_manaks_gold_giant','none'),
- ('3489','Nia\'s Gold Wyvern','false','none','0','stackable','steel','none','-1','100','0','true','true','true','true','q_nias_gold_wyvern','none'),
- ('3490','Silver Unicorn','false','none','0','stackable','steel','none','-1','50','0','true','true','true','true','q_silver_unicorn','none'),
- ('3491','Silver Fairy','false','none','0','stackable','steel','none','-1','100','0','true','true','true','true','q_silver_fairy','none'),
- ('3492','Silver Dryad','false','none','0','stackable','steel','none','-1','150','0','true','true','true','true','q_silver_dryad','none'),
- ('3493','Silver Dragon','false','none','0','stackable','steel','none','-1','200','0','true','true','true','true','q_silver_dragon','none'),
- ('3494','Silver Golem','false','none','0','stackable','steel','none','-1','100','0','true','true','true','true','q_silver_golem','none'),
- ('3495','Silver Undine','false','none','0','stackable','steel','none','-1','150','0','true','true','true','true','q_silver_undine','none'),
- ('3496','Beleth\'s Silver Dragon','false','none','0','stackable','steel','none','-1','300','0','true','true','true','true','q_bereths_silver_dragon','none'),
- ('3497','Manak\'s Silver Dryad','false','none','0','stackable','steel','none','-1','150','0','true','true','true','true','q_manaks_silver_dryad','none'),
- ('3498','Nia\'s Silver Fairy','false','none','0','stackable','steel','none','-1','100','0','true','true','true','true','q_nias_silver_fairy','none'),
- ('3499','Fairy Dust','false','none','0','normal','steel','none','-1','10000','0','true','false','true','true','q_fairy_dust','none'),
- ('3500','Dragonflute of Wind','false','pet_collar','20','normal','steel','none','-1','1000','0','true','true','true','true','dragonflute_of_wind','pet_collar'),
- ('3501','Dragonflute of Star','false','pet_collar','20','normal','steel','none','-1','1000','0','true','true','true','true','dragonflute_of_star','pet_collar'),
- ('3502','Dragonflute of Twilight','false','pet_collar','20','normal','steel','none','-1','1000','0','true','true','true','true','dragonflute_of_twilight','pet_collar'),
- ('3503','Deliverymen Decertificate','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_deliverymen_decertificate','none'),
- ('3504','Kirunas Horn','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_kirunas_horn','none'),
- ('3505','Mithril Mold','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_mithril_mold','none'),
- ('3506','Bloody Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_bloody_letter','none'),
- ('3507','Supplies to Alex','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_supplies_to_alankell','none'),
- ('3508','Supplies to Endrigo','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_supplies_to_endrigo','none'),
- ('3509','Alex\'s Coins','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_alankells_coins','none'),
- ('3510','Wardens Appreciation','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_wardens_appreciation','none'),
- ('3511','Blackbox to Orim','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_blackbox_to_orim','none'),
- ('3512','Deluxe Windsus Ham','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delux_windsus_ham','none'),
- ('3513','Heart of Silenos','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_heart_of_silenos','none'),
- ('3514','Request Giran','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_giran','none'),
- ('3515','Request Gludin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_gludin','none'),
- ('3516','Request Hunters','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_hunters','none'),
- ('3517','Delivery Score Red','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_score_red','none'),
- ('3518','Delivery Score Blue','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_score_blue','none'),
- ('3519','Deliverymen Advanced Certificate Super','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_deliverymen_decertificate_super','none'),
- ('3520','1st Confirmation Document','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_1st','none'),
- ('3521','2nd Confirmation Document','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_2nd','none'),
- ('3522','Delivery Goods 01','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_01','none'),
- ('3523','Delivery Goods 02','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_02','none'),
- ('3524','Delivery Goods 03','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_03','none'),
- ('3525','Delivery Goods 04','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_04','none'),
- ('3526','Delivery Goods 05','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_05','none'),
- ('3527','Delivery Goods 06','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_06','none'),
- ('3528','Delivery Goods 07','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_07','none'),
- ('3529','Delivery Goods 08','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_08','none'),
- ('3530','Delivery Goods 09','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_09','none'),
- ('3531','Delivery Goods 10','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_10','none'),
- ('3532','Delivery Goods 11','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_11','none'),
- ('3533','Delivery Goods 12','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_12','none'),
- ('3534','Delivery Goods 13','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_13','none'),
- ('3535','Delivery Goods 14','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_14','none'),
- ('3536','Delivery Goods 15','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_15','none'),
- ('3537','Delivery Goods 16','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_16','none'),
- ('3538','Delivery Goods 17','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_17','none'),
- ('3539','Delivery Goods 18','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_18','none'),
- ('3540','Delivery Goods 19','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_19','none'),
- ('3541','Delivery Goods 20','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_20','none'),
- ('3542','Delivery Goods 21','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_21','none'),
- ('3543','Delivery Goods 22','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_22','none'),
- ('3544','Delivery Goods 23','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_23','none'),
- ('3545','Delivery Goods 24','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_24','none'),
- ('3546','Delivery Goods 25','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_25','none'),
- ('3547','Delivery Goods 26','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_26','none'),
- ('3548','Delivery Goods 27','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_27','none'),
- ('3549','Delivery Goods 28','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_28','none'),
- ('3550','Delivery Goods 29','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_29','none'),
- ('3551','Delivery Goods 30','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_30','none'),
- ('3552','Delivery Goods 31','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_31','none'),
- ('3553','Delivery Goods 32','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_32','none'),
- ('3554','Delivery Goods 33','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_33','none'),
- ('3555','Delivery Goods 34','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_34','none'),
- ('3556','Delivery Goods 35','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_35','none'),
- ('3557','Delivery Goods 36','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_36','none'),
- ('3558','Delivery Goods 37','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_37','none'),
- ('3559','Delivery Goods 38','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_38','none'),
- ('3560','Delivery Goods 39','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_39','none'),
- ('3561','Delivery Goods 40','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_40','none'),
- ('3562','Delivery Goods 41','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_41','none'),
- ('3563','Delivery Goods 42','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_42','none'),
- ('3564','Delivery Goods 43','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_43','none'),
- ('3565','Delivery Goods 44','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_44','none'),
- ('3566','Delivery Goods 45','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_45','none'),
- ('3567','Delivery Goods 46','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_46','none'),
- ('3568','Delivery Goods 47','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_47','none'),
- ('3569','Delivery Goods 48','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_48','none'),
- ('3570','Delivery Goods 49','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_49','none'),
- ('3571','Delivery Goods 50','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_50','none'),
- ('3572','Delivery Goods 51','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_51','none'),
- ('3573','Delivery Goods 52','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_52','none'),
- ('3574','Delivery Goods 53','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_53','none'),
- ('3575','Delivery Goods 54','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_54','none'),
- ('3576','Delivery Goods 55','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_55','none'),
- ('3577','Delivery Goods 56','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_56','none'),
- ('3578','Delivery Goods 57','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_57','none'),
- ('3579','Delivery Goods 58','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_58','none'),
- ('3580','Delivery Goods 59','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_59','none'),
- ('3581','Delivery Goods 60','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_60','none'),
- ('3582','Delivery Goods 61','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_61','none'),
- ('3583','Delivery Goods 62','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_62','none'),
- ('3584','Delivery Goods 63','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_63','none'),
- ('3585','Delivery Goods 64','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_64','none'),
- ('3586','Delivery Goods 65','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_65','none'),
- ('3587','Delivery Goods 66','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_66','none'),
- ('3588','Delivery Goods 67','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delivery_goods_67','none'),
- ('3589','Confirmation Document 01','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_01','none'),
- ('3590','Confirmation Document 02','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_02','none'),
- ('3591','Confirmation Document 03','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_03','none'),
- ('3592','Confirmation Document 04','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_04','none'),
- ('3593','Confirmation Document 05','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_05','none'),
- ('3594','Confirmation Document 06','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_06','none'),
- ('3595','Confirmation Document 07','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_07','none'),
- ('3596','Confirmation Document 08','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_08','none'),
- ('3597','Confirmation Document 09','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_09','none'),
- ('3598','Confirmation Document 10','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_10','none'),
- ('3599','Confirmation Document 11','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_11','none'),
- ('3600','Confirmation Document 12','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_12','none'),
- ('3601','Confirmation Document 13','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_13','none'),
- ('3602','Confirmation Document 14','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_14','none'),
- ('3603','Confirmation Document 15','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_15','none'),
- ('3604','Confirmation Document 16','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_16','none'),
- ('3605','Confirmation Document 17','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_17','none'),
- ('3606','Confirmation Document 18','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_18','none'),
- ('3607','Confirmation Document 19','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_19','none'),
- ('3608','Confirmation Document 20','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_20','none'),
- ('3609','Confirmation Document 21','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_21','none'),
- ('3610','Confirmation Document 22','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_22','none'),
- ('3611','Confirmation Document 23','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_23','none'),
- ('3612','Confirmation Document 24','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_24','none'),
- ('3613','Confirmation Document 25','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_25','none'),
- ('3614','Confirmation Document 26','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_26','none'),
- ('3615','Confirmation Document 27','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_27','none'),
- ('3616','Confirmation Document 28','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_28','none'),
- ('3617','Confirmation Document 29','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_29','none'),
- ('3618','Confirmation Document 30','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_30','none'),
- ('3619','Confirmation Document 31','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_31','none'),
- ('3620','Confirmation Document 32','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_32','none'),
- ('3621','Confirmation Document 33','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_33','none'),
- ('3622','Confirmation Document 34','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_34','none'),
- ('3623','Confirmation Document 35','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_35','none'),
- ('3624','Confirmation Document 36','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_36','none'),
- ('3625','Confirmation Document 37','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_37','none'),
- ('3626','Confirmation Document 38','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_38','none'),
- ('3627','Confirmation Document 39','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_39','none'),
- ('3628','Confirmation Document 40','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_40','none'),
- ('3629','Confirmation Document 41','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_41','none'),
- ('3630','Confirmation Document 42','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_42','none'),
- ('3631','Confirmation Document 43','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_43','none'),
- ('3632','Confirmation Document 44','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_44','none'),
- ('3633','Confirmation Document 45','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_45','none'),
- ('3634','Confirmation Document 46','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_46','none'),
- ('3635','Confirmation Document 47','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_47','none'),
- ('3636','Confirmation Document 48','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_48','none'),
- ('3637','Confirmation Document 49','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_49','none'),
- ('3638','Confirmation Document 50','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_50','none'),
- ('3639','Confirmation Document 51','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_51','none'),
- ('3640','Confirmation Document 52','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_52','none'),
- ('3641','Confirmation Document 53','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_53','none'),
- ('3642','Confirmation Document 54','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_54','none'),
- ('3643','Confirmation Document 55','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_55','none'),
- ('3644','Confirmation Document 56','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_56','none'),
- ('3645','Confirmation Document 57','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_57','none'),
- ('3646','Confirmation Document 58','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_58','none'),
- ('3647','Confirmation Document 59','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_59','none'),
- ('3648','Confirmation Document 60','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_60','none'),
- ('3649','Confirmation Document 61','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_61','none'),
- ('3650','Confirmation Document 62','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_62','none'),
- ('3651','Confirmation Document 63','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_63','none'),
- ('3652','Confirmation Document 64','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_64','none'),
- ('3653','Confirmation Document 65','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_65','none'),
- ('3654','Confirmation Document 66','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_66','none'),
- ('3655','Confirmation Document 67','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_confirmation_document_67','none'),
- ('3656','Eye of Seer','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_eye_of_seer','none'),
- ('3657','Pincher Claw','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_claw_of_pinrul_roader','none'),
- ('3658','Ol Mahum Uniform','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_ol_mahum_uniform','none'),
- ('3659','Enku Orc Champion\'s Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_enku_orc_champions_head','none'),
- ('3660','Bloody Bee Stinger','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_sting_of_bloody_bee','none'),
- ('3661','Ignition of Ghost Fire','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_ignition_of_ghost_fire','none'),
- ('3662','Ethereal Blood','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_ethereal_blood','none'),
- ('3663','Returned Delivery Goods 10','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_returned_delivery_goods_10','none'),
- ('3664','Returned Delivery Goods 15','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_returned_delivery_goods_15','none'),
- ('3665','Returned Delivery Goods 30','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_returned_delivery_goods_30','none'),
- ('3666','Returned Delivery Goods 33','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_returned_delivery_goods_33','none'),
- ('3667','Returned Delivery Goods 37','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_returned_delivery_goods_37','none'),
- ('3668','Returned Delivery Goods 45','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_returned_delivery_goods_45','none'),
- ('3669','Returned Delivery Goods 55','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_returned_delivery_goods_55','none'),
- ('3670','Returned Delivery Goods 60','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_returned_delivery_goods_60','none'),
- ('3671','Sophya\'s 1st Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_sophias_order1','none'),
- ('3672','Sophya\'s 2nd Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_sophias_order2','none'),
- ('3673','Sophya\'s 3rd Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_sophias_order3','none'),
- ('3674','Sophya\'s 4th Order','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_sophias_order4','none'),
- ('3675','Lion\'s Claw','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_lions_claw','none'),
- ('3676','Lion\'s Eye','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_lions_eye','none'),
- ('3677','Guild Coin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_guild_coin','none'),
- ('3678','Alchemy Text','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_alchemy_text','none'),
- ('3679','Secret Book of Potion','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_secret_book_of_potion','none'),
- ('3680','1st Potion Recipe','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_potion_recipe_1','none'),
- ('3681','2nd Potion Recipe','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_potion_recipe_2','none'),
- ('3682','Matild\'s Orb','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_matilds_orb','none'),
- ('3683','Forbidden Love Scroll','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_fobbiden_love_scroll','none'),
- ('3684','Amber Scale','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_amber_scale','none'),
- ('3685','Wind Soulstone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_wind_soulstone','none'),
- ('3686','Glass Eye','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_glass_eye','none'),
- ('3687','Horror Ectoplasm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_horror_ectoplasm','none'),
- ('3688','Silenos Horn','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_silenos_horn','none'),
- ('3689','Ant Soldier Aphid','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_ant_soldier_aphid','none'),
- ('3690','Tyrant\'s Chitin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_tyrants_chitin','none'),
- ('3691','Bugbear Blood','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_bugbear_blood','none'),
- ('3692','1st Circle Hunter License','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_hunter_license_1','none'),
- ('3693','2nd Circle Hunter License','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_hunter_license_2','none'),
- ('3694','Laurel Leaf Pin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_laurel_leaf_pin','none'),
- ('3695','1st Test Instructions','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_test_instructions_1','none'),
- ('3696','2nd Test Instructions','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_test_instructions_2','none'),
- ('3697','Cybellin\'s Request','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_cybellins_request','none'),
- ('3698','Blood Crystal: Purity 1','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_blood_crystal_1','none'),
- ('3699','Blood Crystal: Purity 2','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_blood_crystal_2','none'),
- ('3700','Blood Crystal: Purity 3','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_blood_crystal_3','none'),
- ('3701','Blood Crystal: Purity 4','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_blood_crystal_4','none'),
- ('3702','Blood Crystal: Purity 5','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_blood_crystal_5','none'),
- ('3703','Blood Crystal: Purity 6','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_blood_crystal_6','none'),
- ('3704','Blood Crystal: Purity 7','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_blood_crystal_7','none'),
- ('3705','Blood Crystal: Purity 8','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_blood_crystal_8','none'),
- ('3706','Blood Crystal: Purity 9','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_blood_crystal_9','none'),
- ('3707','Blood Crystal: Purity 10','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_blood_crystal_10','none'),
- ('3708','Blood Crystal: Broken','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_blood_crystal_x','none'),
- ('3709','Guardian Basilisk Scale','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_g_basil_scale','none'),
- ('3710','Karut Weed','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_karut_weed','none'),
- ('3711','Haka\'s Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_hakas_head','none'),
- ('3712','Jakas\' Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_jakas_head','none'),
- ('3713','Marka\'s Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_markas_head','none'),
- ('3714','Windsus Aleph Skin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_windsus_aleph_skin','none'),
- ('3715','Indigo Runestone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_indigo_runestone','none'),
- ('3716','Sporesea Seed','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_sporesea_seed','none'),
- ('3717','Timak Orc Totem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_timak_orc_totem','none'),
- ('3718','Trisalim Silk','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_trisalim_silk','none'),
- ('3719','Ambrosius Fruit','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_ambrosius_fruit','none'),
- ('3720','Balefire Crystal','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_balefire_crystal','none'),
- ('3721','Imperial Arrowhead','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_imperial_arrowhead','none'),
- ('3722','Athu\'s Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_athus_head','none'),
- ('3723','Lanka\'s Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_lankas_head','none'),
- ('3724','Triska\'s Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_triskas_head','none'),
- ('3725','Motura\'s Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_moturas_head','none'),
- ('3726','Kalath\'s Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_kalaths_head','none'),
- ('3727','1st Circle Request: 1C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1c_1','none'),
- ('3728','1st Circle Request: 2C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1c_2','none'),
- ('3729','1st Circle Request: 3C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1c_3','none'),
- ('3730','1st Circle Request: 4C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1c_4','none'),
- ('3731','1st Circle Request: 5C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1c_5','none'),
- ('3732','1st Circle Request: 6C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1c_6','none'),
- ('3733','1st Circle Request: 7C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1c_7','none'),
- ('3734','1st Circle Request: 8C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1c_8','none'),
- ('3735','1st Circle Request: 9C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1c_9','none'),
- ('3736','1st Circle Request: 10C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1c_10','none'),
- ('3737','1st Circle Request: 11C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1c_11','none'),
- ('3738','1st Circle Request: 12C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1c_12','none'),
- ('3739','1st Circle Request: 1B','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1u_1','none'),
- ('3740','1st Circle Request: 2B','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1u_2','none'),
- ('3741','1st Circle Request: 3B','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1u_3','none'),
- ('3742','1st Circle Request: 4B','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1u_4','none'),
- ('3743','1st Circle Request: 5B','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1u_5','none'),
- ('3744','1st Circle Request: 6B','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1u_6','none'),
- ('3745','1st Circle Request: 1A','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1r_1','none'),
- ('3746','1st Circle Request: 2A','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1r_2','none'),
- ('3747','1st Circle Request: 3A','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_1r_3','none'),
- ('3748','2nd Circle Request: 1C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2c_1','none'),
- ('3749','2nd Circle Request 2C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2c_2','none'),
- ('3750','2nd Circle Request 3C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2c_3','none'),
- ('3751','2nd Circle Request: 4C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2c_4','none'),
- ('3752','2nd Circle Request: 5C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2c_5','none'),
- ('3753','2nd Circle Request: 6C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2c_6','none'),
- ('3754','2nd Circle Request: 7C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2c_7','none'),
- ('3755','2nd Circle Request: 8C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2c_8','none'),
- ('3756','2nd Circle Request: 9C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2c_9','none'),
- ('3757','2nd Circle Request: 10C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2c_10','none'),
- ('3758','2nd Circle Request: 11C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2c_11','none'),
- ('3759','2nd Circle Request: 12C','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2c_12','none'),
- ('3760','2nd Circle Request: 1B','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2u_1','none'),
- ('3761','2nd Circle Request: 2B','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2u_2','none'),
- ('3762','2nd Circle Request: 3B','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2u_3','none'),
- ('3763','2nd Circle Request: 4B','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2u_4','none'),
- ('3764','2nd Circle Request: 5B','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2u_5','none'),
- ('3765','2nd Circle Request: 6B','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2u_6','none'),
- ('3766','2nd Circle Request: 1A','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2r_1','none'),
- ('3767','2nd Circle Request: 2A','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2r_2','none'),
- ('3768','2nd Circle Request: 3A','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_request_2r_3','none'),
- ('3769','Charm of Kadesh','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_charm_of_kadesh','none'),
- ('3770','Timak Jade Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_timak_jade_necklace','none'),
- ('3771','Enchanted Golem Shard','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_en_golem_shard','none'),
- ('3772','Giant Monster Eye Meat','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_g_monstereye_meat','none'),
- ('3773','Dire Wyrm Egg','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_dire_wyrm_egg','none'),
- ('3774','Grd Basilisk Talon','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_grd_basilisk_talon','none'),
- ('3775','Revenant\'s Chains','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_revenants_chains','none'),
- ('3776','Windsus Tusk','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_windsus_tusk','none'),
- ('3777','Grandis Skull','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_grandis_skull','none'),
- ('3778','Taik Obsidian Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_taik_obsidian_amulet','none'),
- ('3779','Karul Bugbear Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_karul_bugbear_head','none'),
- ('3780','Tamlin Ivory Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_tamlin_ivory_charm','none'),
- ('3781','Fang of Narak','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_fang_of_narak','none'),
- ('3782','Enchanted Gargoyle Horn','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_en_gargoyle_horn','none'),
- ('3783','Coiled Serpent Totem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_coiled_serpent_totem','none'),
- ('3784','Totem of Kadesh','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_totem_of_kadesh','none'),
- ('3785','Kaiki\'s Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_kaikis_head','none'),
- ('3786','Kronbe Venom Sac','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_kronbe_venom_sac','none'),
- ('3787','Eva\'s Charm','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_evas_charm','none'),
- ('3788','Titan\'s Tablet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_titans_tablet','none'),
- ('3789','Book of Shunaiman','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_book_of_shunaiman','none'),
- ('3790','Rotting Tree Spores','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_rot_tree_spores','none'),
- ('3791','Trisalim Venom Sac','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_trisalim_venom_sac','none'),
- ('3792','Taik Orc Totem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_taik_orc_totem','none'),
- ('3793','Harit Barbed Necklace','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_harit_barbed_necklace','none'),
- ('3794','Coin of Old Empire','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_coin_of_old_empire','none'),
- ('3795','Skin of Farcran','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_skin_of_farcran','none'),
- ('3796','Tempest Shard','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_tempest_shard','none'),
- ('3797','Tsunami Shard','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_tsunami_shard','none'),
- ('3798','Satyr Mane','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_pan_ruem_mane','none'),
- ('3799','Hamadryad Shard','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_hamadryad_shard','none'),
- ('3800','Vanor Silenos Mane','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_vanor_silenos_mane','none'),
- ('3801','Talk Bugbear Totem','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_talk_bugbear_totem','none'),
- ('3802','Okun\'s Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_okuns_head','none'),
- ('3803','Kakran\'s Head','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_kakrans_head','none'),
- ('3804','Narcissus\'s Soulstone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_narcissus_soulstone','none'),
- ('3805','Deprive Eye','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_diprive_eye','none'),
- ('3806','Unicorn\'s Horn','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_unicorns_horn','none'),
- ('3807','Kerunos\'s Gold Mane','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_kerunos_gold_mane','none'),
- ('3808','Skull of Executed','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_skull_of_executed','none'),
- ('3809','Bust of Travis','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_bust_of_travis','none'),
- ('3810','Sword of Cadmus','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_sword_of_cadmus','none'),
- ('3811','Coin Diagram','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_coin_diagram','none'),
- ('3812','Kaldis Gold Dragon','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_kaldis_gold_dragon','none'),
- ('3813','Coin Collector Membership 1','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_cc_membership_1','none'),
- ('3814','Coin Collector Membership 2','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_cc_membership_2','none'),
- ('3815','Coin Collector Membership 3','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_cc_membership_3','none'),
- ('3816','Fairy Stone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_fairy_stone','none'),
- ('3817','Deluxe Fairy Stone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_fairy_stone_delux','none'),
- ('3818','Fairy Stone List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_list_of_stuff_for_fs','none'),
- ('3819','Deluxe Fairy Stone List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_list_of_stuff_for_fsd','none'),
- ('3820','Toad Lord Back Skin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_inpicios_back_skin','none'),
- ('3821','Juice of Monkshood','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_juice_of_monkshood','none'),
- ('3822','Scale of Drake Exarion','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_scale_of_drake_exarion','none'),
- ('3823','Egg of Drake Exarion','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_egg_of_drake_exarion','none'),
- ('3824','Scale of Drake Zwov','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_scale_of_drake_zwov','none'),
- ('3825','Egg of Drake Zwov','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_egg_of_drake_zwov','none'),
- ('3826','Scale of Drake Kalibran','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_scale_of_drake_kalibran','none'),
- ('3827','Egg of Drake Kalibran','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_egg_of_drake_kalibran','none'),
- ('3828','Scale of Wyvern Suzet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_scale_of_wyrm_suzet','none'),
- ('3829','Egg of Wyvern Suzet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_egg_of_wyrm_suzet','none'),
- ('3830','Scale of Wyvern Shamhai','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_scale_of_wyrm_shamhai','none'),
- ('3831','Egg of Wyvern Shamhai','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_egg_of_wyrm_shamhai','none'),
- ('3832','Herb of Harit','false','none','0','normal','steel','none','-1','0','0','true','false','true','true','q_herb_of_breka','none'),
- ('3833','Herb of Vanor','false','none','0','normal','steel','none','-1','0','0','true','false','true','true','q_herb_of_vanor','none'),
- ('3834','Herb of Oel Mahum','false','none','0','normal','steel','none','-1','0','0','true','false','true','true','q_herb_of_oel_mahum','none'),
- ('3835','Blood of Eva','false','none','0','normal','steel','none','-1','0','0','true','false','true','true','q_blood_of_eva','none'),
- ('3836','Athrea\'s Coin','false','none','0','normal','steel','none','-1','0','0','true','false','true','true','q_athreas_coin','none'),
- ('3837','Symbol of Loyalty','false','none','0','normal','steel','none','-1','0','0','true','false','true','true','q_symbol_of_loyalty','none'),
- ('3838','Recipe: Titan\'s Powerstone','false','recipe','30','stackable','liquid','none','-1','0','0','true','false','true','true','q_rp_titans_powerstone','recipe'),
- ('3839','Mist Drake Egg','false','none','0','stackable','steel','none','-1','0','0','true','false','true','true','q_mist_drake_egg','none'),
- ('3840','Blitz Wyrm Egg','false','none','0','stackable','steel','none','-1','0','0','true','false','true','true','q_blitz_wyrm_egg','none'),
- ('3841','Drake Egg','false','none','0','stackable','steel','none','-1','0','0','true','false','true','true','q_drake_egg','none'),
- ('3842','Thunder Wyrm Egg','false','none','0','stackable','steel','none','-1','0','0','true','false','true','true','q_thunderwyrm_egg','none'),
- ('3843','Brooch of the Magpie','false','none','0','normal','steel','none','-1','1000','0','true','false','true','true','q_magipie_brooch','none'),
- ('3844','Nebulite Crystals','false','none','0','stackable','steel','none','-1','0','0','true','false','true','true','q_nebulite_crystals','none'),
- ('3845','Broken Titan\'s Powerstone','false','none','0','stackable','steel','none','-1','500','0','true','false','true','true','q_bk_titan_powerstone','none'),
- ('3846','Titan\'s Powerstone','false','none','0','stackable','steel','none','-1','0','0','true','false','true','true','q_titan_powerstone','none'),
- ('3847','Imperial Key','false','none','0','stackable','steel','none','-1','0','0','true','false','true','true','q_imperial_key','none'),
- ('3848','Undead Ash','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_undead_ash','none'),
- ('3849','Bloody Axe Insignia','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_bloodyaxe_insignia','none'),
- ('3850','Delu Lizardman Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_delu_lizardman_fang','none'),
- ('3851','Stakato Talon','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_stakato_talon','none'),
- ('3852','Feather of Gabrielle','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_feather_of_gabrielle','none'),
- ('3853','Marsh Stalker Horn','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_marsh_stalker_horn','none'),
- ('3854','Marsh Drake Talons','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_marsh_drake_talon','none'),
- ('3855','Kranrot Skin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_kranrot_skin','none'),
- ('3856','Hamrut Leg','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_hamrut_leg','none'),
- ('3857','Remains of Sacrified','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_remains_of_sacrificed','none'),
- ('3858','Totem of Land Dragon','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_totem_of_earthdragon','none'),
- ('3859','1st Fragment of Abyss Jewel','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_frag_of_abyss_jewel1','none'),
- ('3860','2nd Fragment of Abyss Jewel','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_frag_of_abyss_jewel2','none'),
- ('3861','3rd Fragment of Abyss Jewel','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_frag_of_abyss_jewel3','none'),
- ('3862','Mara Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_mara_fang','none'),
- ('3863','Musfel Fang','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_musfel_fang','none'),
- ('3864','Mark of Watchman','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_mark_of_watchers','none'),
- ('3865','Portal Stone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_portal_stone_1','none'),
- ('3866','Gustav\'s 1st Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_gustafs_letter1','none'),
- ('3867','Gustav\'s 2nd Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_gustafs_letter2','none'),
- ('3868','Gustav\'s 3rd Letter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_gustafs_letter3','none'),
- ('3869','Scepter of Judgment','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_scepter_of_judgemnt','none'),
- ('3870','Seal of Aspiration','false','quest','0','stackable','steel','none','-1','0','0','false','false','false','false','q_proof_of_aspiration','none'),
- ('3871','Black Anvil Coin','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_black_anvil_coin','none'),
- ('3872','Antidote Recipe List','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_antidote_recipe_list','none'),
- ('3873','Voucher of Faith','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_voucher_of_faith','none'),
- ('3874','Alliance Manifesto','false','quest','0','stackable','steel','none','-1','0','0','false','false','false','false','q_proof_of_alliance','none'),
- ('3875','L2Day - A','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','alphabet_a','none'),
- ('3876','L2Day - C','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','alphabet_c','none'),
- ('3877','L2Day - E','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','alphabet_e','none'),
- ('3878','L2Day - F','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','alphabet_f','none'),
- ('3879','L2Day - G','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','alphabet_g','none'),
- ('3880','L2Day - H','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','alphabet_h','none'),
- ('3881','L2Day - I','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','alphabet_i','none'),
- ('3882','L2Day - L','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','alphabet_l','none'),
- ('3883','L2Day - N','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','alphabet_n','none'),
- ('3884','L2Day - O','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','alphabet_o','none'),
- ('3885','L2Day - R','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','alphabet_r','none'),
- ('3886','L2Day - S','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','alphabet_s','none'),
- ('3887','L2Day - T','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','alphabet_t','none'),
- ('3888','L2Day - II','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','alphabet_ii','none'),
- ('3889','Potion of Recovery','false','potion','180','stackable','liquid','none','-1','0','0','true','true','true','true','q_potion_of_recovery','potion'),
- ('3890','Herald of Slayer','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_herald_of_slayer','none'),
- ('3926','L2Day - Scroll of Guidance','false','scroll','120','stackable','paper','none','-1','0','0','true','true','true','true','l2day_scroll_of_guidance','scroll'),
- ('3927','L2Day - Scroll of Death Whisper','false','scroll','120','stackable','paper','none','-1','0','0','true','true','true','true','l2day_scroll_of_death_whisper','scroll'),
- ('3928','L2Day - Scroll of Focus','false','scroll','120','stackable','paper','none','-1','0','0','true','true','true','true','l2day_scroll_of_focus','scroll'),
- ('3929','L2Day - Scroll of Greater Acumen','false','scroll','120','stackable','paper','none','-1','0','0','true','true','true','true','l2day_scroll_of_greater_acumen','scroll'),
- ('3930','L2Day - Scroll of Haste','false','scroll','120','stackable','paper','none','-1','0','0','true','true','true','true','l2day_scroll_of_haste','scroll'),
- ('3931','L2Day - Scroll of Agility','false','scroll','120','stackable','paper','none','-1','0','0','true','true','true','true','l2day_scroll_of_agility','scroll'),
- ('3932','L2Day - Scroll of Mystic Empower','false','scroll','120','stackable','paper','none','-1','0','0','true','true','true','true','l2day_scroll_of_empower','scroll'),
- ('3933','L2Day - Scroll of Might','false','scroll','120','stackable','paper','none','-1','0','0','true','true','true','true','l2day_scroll_of_might','scroll'),
- ('3934','L2Day - Scroll of Windwalk','false','scroll','120','stackable','paper','none','-1','0','0','true','true','true','true','l2day_scroll_of_wind_walk','scroll'),
- ('3935','L2Day - Scroll of Shield','false','scroll','120','stackable','paper','none','-1','0','0','true','true','true','true','l2day_scroll_of_shield','scroll'),
- ('3936','Blessed Scroll of Resurrection','false','scroll','120','stackable','paper','none','-1','400000','0','true','true','true','true','blessed_scroll_of_resurrection','scroll'),
- ('3940','Blueprint: Summon Siege Golem','false','spellbook','120','normal','paper','none','-1','4800','0','true','true','true','true','sb_summon_siege_golem','none'),
- ('3941','Spellbook: Mass Resurrection','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','sb_mass_ressurection1','none'),
- ('3942','Spellbook: Party Return','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','sb_party_recall1','none'),
- ('3943','Amulet: Pa\'agrio\'s Heart','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_heart_of_paagrio1','none'),
- ('3944','Spellbook: Decrease Weight','false','spellbook','120','normal','paper','none','-1','2450','0','true','true','true','true','sb_decrease_weight1','none'),
- ('3945','Boat Ticket: Talking Island to Giran','false','none','20','stackable','paper','none','-1','8000','0','true','true','true','true','boat_ticket_talk_kiran','none'),
- ('3946','Boat Ticket: Giran to Talking Island','false','none','20','stackable','paper','none','-1','8000','0','true','true','true','true','boat_ticket_kiran_talk','none'),
- ('3947','Blessed Spiritshot: No Grade','false','shot','5','stackable','paper','none','-1','35','0','true','true','true','true','blessed_spiritshot_none','none'),
- ('3948','Blessed Spiritshot: D-Grade','false','shot','5','stackable','paper','d','-1','45','0','true','true','true','true','blessed_spiritshot_d','none'),
- ('3949','Blessed Spiritshot: C-Grade','false','shot','3','stackable','paper','c','-1','90','0','true','true','true','true','blessed_spiritshot_c','none'),
- ('3950','Blessed Spiritshot: B-Grade','false','shot','3','stackable','paper','b','-1','245','0','true','true','true','true','blessed_spiritshot_b','none'),
- ('3951','Blessed Spiritshot: A-Grade','false','shot','2','stackable','paper','a','-1','290','0','true','true','true','true','blessed_spiritshot_a','none'),
- ('3952','Blessed Spiritshot: S Grade','false','shot','2','stackable','paper','s','-1','350','0','true','true','true','true','blessed_spiritshot_s','none'),
- ('3953','Recipe: Blessed Spiritshot D','false','recipe','30','stackable','liquid','none','-1','5000','0','true','true','true','true','rp_blessed_spiritshot_d','recipe'),
- ('3954','Recipe: Blessed Spiritshot C','false','recipe','30','stackable','liquid','none','-1','60000','0','true','true','true','true','rp_blessed_spiritshot_c','recipe'),
- ('3955','Recipe: Blessed Spiritshot B','false','recipe','30','stackable','liquid','none','-1','100000','0','true','true','true','true','rp_blessed_spiritshot_b','recipe'),
- ('3956','Recipe: Blessed Spiritshot A','false','recipe','30','stackable','liquid','none','-1','150000','0','true','true','true','true','rp_blessed_spiritshot_a','recipe'),
- ('3957','Recipe: Blessed Spiritshot S','false','recipe','30','stackable','liquid','none','-1','450000','0','true','true','true','true','rp_blessed_spiritshot_s','recipe'),
- ('3958','L2Day - Blessed Escape Effect','false','scroll','120','stackable','paper','none','-1','0','0','true','true','true','true','l2day_scroll_of_escape','scroll'),
- ('3959','L2Day - Blessed Resurrection Efffect','false','scroll','120','stackable','paper','none','-1','0','0','true','true','true','true','l2day_scroll_of_resurrection','scroll'),
- ('3960','Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','30000','0','true','true','true','true','mticket_gludio_sword_fix','castle_guard'),
- ('3961','Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','40000','0','true','true','true','true','mticket_gludio_pole_fix','castle_guard'),
- ('3962','Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','50000','0','true','true','true','true','mticket_gludio_bow_fix','castle_guard'),
- ('3963','Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_gludio_cleric_fix','castle_guard'),
- ('3964','Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_gludio_wizard_fix','castle_guard'),
- ('3965','Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','30000','0','true','true','true','true','mticket_gludio_sword_move','castle_guard'),
- ('3966','Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','40000','0','true','true','true','true','mticket_gludio_pole_move','castle_guard'),
- ('3967','Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','50000','0','true','true','true','true','mticket_gludio_bow_move','castle_guard'),
- ('3968','Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_gludio_cleric_move','castle_guard'),
- ('3969','Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_gludio_wizard_move','castle_guard'),
- ('3970','Mercenary Posting Ticket (Teleporter1)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_gludio_teleporter1','castle_guard'),
- ('3971','Mercenary Posting Ticket (Teleporter2)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_gludio_teleporter2','castle_guard'),
- ('3972','Mercenary Posting Ticket (Teleporter3)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_gludio_teleporter3','castle_guard'),
- ('3973','Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','30000','0','true','true','true','true','mticket_dion_sword_fix','castle_guard'),
- ('3974','Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','40000','0','true','true','true','true','mticket_dion_pole_fix','castle_guard'),
- ('3975','Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','50000','0','true','true','true','true','mticket_dion_bow_fix','castle_guard'),
- ('3976','Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_dion_cleric_fix','castle_guard'),
- ('3977','Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_dion_wizard_fix','castle_guard'),
- ('3978','Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','30000','0','true','true','true','true','mticket_dion_sword_move','castle_guard'),
- ('3979','Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','40000','0','true','true','true','true','mticket_dion_pole_move','castle_guard'),
- ('3980','Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','50000','0','true','true','true','true','mticket_dion_bow_move','castle_guard'),
- ('3981','Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_dion_cleric_move','castle_guard'),
- ('3982','Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_dion_wizard_move','castle_guard'),
- ('3983','Mercenary Posting Ticket (Teleporter1)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_dion_teleporter1','castle_guard'),
- ('3984','Mercenary Posting Ticket (Teleporter2)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_dion_teleporter2','castle_guard'),
- ('3985','Mercenary Posting Ticket (Teleporter3)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_dion_teleporter3','castle_guard'),
- ('3986','Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','30000','0','true','true','true','true','mticket_giran_sword_fix','castle_guard'),
- ('3987','Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','40000','0','true','true','true','true','mticket_giran_pole_fix','castle_guard'),
- ('3988','Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','50000','0','true','true','true','true','mticket_giran_bow_fix','castle_guard'),
- ('3989','Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_giran_cleric_fix','castle_guard'),
- ('3990','Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_giran_wizard_fix','castle_guard'),
- ('3991','Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','30000','0','true','true','true','true','mticket_giran_sword_move','castle_guard'),
- ('3992','Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','40000','0','true','true','true','true','mticket_giran_pole_move','castle_guard'),
- ('3993','Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','50000','0','true','true','true','true','mticket_giran_bow_move','castle_guard'),
- ('3994','Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_giran_cleric_move','castle_guard'),
- ('3995','Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_giran_wizard_move','castle_guard'),
- ('3996','Mercenary Posting Ticket (Teleporter1)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_giran_teleporter1','castle_guard'),
- ('3997','Mercenary Posting Ticket (Teleporter2)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_giran_teleporter2','castle_guard'),
- ('3998','Mercenary Posting Ticket (Teleporter3)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_giran_teleporter3','castle_guard'),
- ('3999','Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','30000','0','true','true','true','true','mticket_oren_sword_fix','castle_guard'),
- ('4000','Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','40000','0','true','true','true','true','mticket_oren_pole_fix','castle_guard'),
- ('4001','Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','50000','0','true','true','true','true','mticket_oren_bow_fix','castle_guard'),
- ('4002','Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_oren_cleric_fix','castle_guard'),
- ('4003','Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_oren_wizard_fix','castle_guard'),
- ('4004','Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','30000','0','true','true','true','true','mticket_oren_sword_move','castle_guard'),
- ('4005','Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','40000','0','true','true','true','true','mticket_oren_pole_move','castle_guard'),
- ('4006','Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','50000','0','true','true','true','true','mticket_oren_bow_move','castle_guard'),
- ('4007','Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_oren_cleric_move','castle_guard'),
- ('4008','Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_oren_wizard_move','castle_guard'),
- ('4009','Mercenary Posting Ticket (Teleporter1)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_oren_teleporter1','castle_guard'),
- ('4010','Mercenary Posting Ticket (Teleporter2)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_oren_teleporter2','castle_guard'),
- ('4011','Mercenary Posting Ticket (Teleporter3)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_oren_teleporter3','castle_guard'),
- ('4012','Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','30000','0','true','true','true','true','mticket_aden_sword_fix','castle_guard'),
- ('4013','Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','40000','0','true','true','true','true','mticket_aden_pole_fix','castle_guard'),
- ('4014','Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','50000','0','true','true','true','true','mticket_aden_bow_fix','castle_guard'),
- ('4015','Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_aden_cleric_fix','castle_guard'),
- ('4016','Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_aden_wizard_fix','castle_guard'),
- ('4017','Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','30000','0','true','true','true','true','mticket_aden_sword_move','castle_guard'),
- ('4018','Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','40000','0','true','true','true','true','mticket_aden_pole_move','castle_guard'),
- ('4019','Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','50000','0','true','true','true','true','mticket_aden_bow_move','castle_guard'),
- ('4020','Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_aden_cleric_move','castle_guard'),
- ('4021','Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','150000','0','true','true','true','true','mticket_aden_wizard_move','castle_guard'),
- ('4022','Mercenary Posting Ticket (Teleporter1)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_aden_teleporter1','castle_guard'),
- ('4023','Mercenary Posting Ticket (Teleporter2)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_aden_teleporter2','castle_guard'),
- ('4024','Mercenary Posting Ticket (Teleporter3)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_aden_teleporter3','castle_guard'),
- ('4025','Mercenary Posting Ticket (Teleporter4)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_aden_teleporter4','castle_guard'),
- ('4026','Mercenary Posting Ticket (Teleporter5)','false','castle_guard','0','stackable','paper','none','-1','100000','0','true','true','true','true','mticket_aden_teleporter5','castle_guard'),
- ('4029','Red Paper','false','none','0','stackable','paper','none','-1','1','0','true','true','true','true','paper_red','none'),
- ('4030','Orange Paper','false','none','0','stackable','paper','none','-1','1','0','true','true','true','true','paper_orange','none'),
- ('4031','Yellow Paper','false','none','0','stackable','paper','none','-1','1','0','true','true','true','true','paper_yellow','none'),
- ('4032','Green Paper','false','none','0','stackable','paper','none','-1','1','0','true','true','true','true','paper_green','none'),
- ('4033','Blue Paper','false','none','0','stackable','paper','none','-1','1','0','true','true','true','true','paper_blue','none'),
- ('4034','Purple Paper','false','none','0','stackable','paper','none','-1','1','0','true','true','true','true','paper_purple','none'),
- ('4035','White Paper','false','none','0','stackable','paper','none','-1','1','0','true','true','true','true','paper_white','none'),
- ('4036','Black Paper','false','none','0','stackable','paper','none','-1','1','0','true','true','true','true','paper_black','none'),
- ('4037','Coin of Luck','false','none','0','stackable','paper','none','-1','1','0','false','false','true','false','coin_of_luck','none'),
- ('4038','Food For Hatchling','false','none','40','stackable','liquid','none','-1','150','0','true','true','true','true','food_for_hatchling','none'),
- ('4039','Mold Glue','false','material','2','stackable','liquid','none','-1','6000','0','true','true','true','true','mold_glue','material'),
- ('4040','Mold Lubricant','false','material','2','stackable','liquid','none','-1','10000','0','true','true','true','true','mold_lubricant','material'),
- ('4041','Mold Hardener','false','material','2','stackable','liquid','none','-1','23000','0','true','true','true','true','mold_hardener','material'),
- ('4042','Enria','false','material','2','stackable','liquid','none','-1','12000','0','true','true','true','true','enria','material'),
- ('4043','Asofe','false','material','2','stackable','liquid','none','-1','6000','0','true','true','true','true','asofe','material'),
- ('4044','Thons','false','material','2','stackable','liquid','none','-1','6000','0','true','true','true','true','thons','material'),
- ('4045','Maestro Holder','false','material','2','stackable','liquid','none','-1','411000','0','true','true','true','true','maestro_holder','material'),
- ('4046','Maestro Anvil Lock','false','material','2','stackable','liquid','none','-1','90400','0','true','true','true','true','maestro_anvil_lock','material'),
- ('4047','Craftsman Mold','false','material','2','stackable','liquid','none','-1','710000','0','true','true','true','true','craftsman_mold','material'),
- ('4048','Maestro Mold','false','material','2','stackable','liquid','none','-1','154000','0','true','true','true','true','maestro_mold','material'),
- ('4049','Adamantite Earring Gemstone','false','material','60','stackable','liquid','none','-1','3813','0','true','true','true','true','adamantite_earing_gemstone','material'),
- ('4050','Adamantite Ring Wire','false','material','60','stackable','liquid','none','-1','3228','0','true','true','true','true','adamantite_ring_wire','material'),
- ('4051','Adamantite Necklace Chain','false','material','60','stackable','liquid','none','-1','5157','0','true','true','true','true','adamantite_necklace_chain','material'),
- ('4052','Earring of Black Ore Piece','false','material','60','stackable','liquid','none','-1','5649','0','true','true','true','true','earing_of_black_ore_piece','material'),
- ('4053','Ring of Black Ore Gemstone','false','material','60','stackable','liquid','none','-1','4666','0','true','true','true','true','ring_of_black_ore_gemstone','material'),
- ('4054','Necklace of Black Ore Beads','false','material','60','stackable','liquid','none','-1','10154','0','true','true','true','true','necklace_of_black_ore_beads','material'),
- ('4055','Composite Shield Fragment','false','material','60','stackable','liquid','none','-1','3120','0','true','true','true','true','composite_shield_fragment','material'),
- ('4056','Zubei\'s Breastplate Part','false','material','60','stackable','liquid','none','-1','11050','0','true','true','true','true','shrnoen\'s_breastplate_part','material'),
- ('4057','Zubei\'s Gaiter Material','false','material','60','stackable','liquid','none','-1','7150','0','true','true','true','true','shrnoen\'s_gaiters_material','material'),
- ('4058','Implosion Boots Part','false','material','60','stackable','liquid','none','-1','4455','0','true','true','true','true','implosion_boots_part','material'),
- ('4059','Boots of Silence Fabric','false','material','60','stackable','liquid','none','-1','3843','0','true','true','true','true','silent_boots_fabric','material'),
- ('4060','Guardian\'s Boots Fabric','false','material','60','stackable','liquid','none','-1','3843','0','true','true','true','true','guardian\'s_boots_fabric','material'),
- ('4061','Paradia Boots Pattern','false','material','60','stackable','liquid','none','-1','4455','0','true','true','true','true','paradia_boots_pattern','material'),
- ('4062','Elemental Boots Lining','false','material','60','stackable','liquid','none','-1','4455','0','true','true','true','true','elemental_boots_lining','material'),
- ('4063','Boots of Grace Lining','false','material','60','stackable','liquid','none','-1','4455','0','true','true','true','true','boots_of_grace_lining','material'),
- ('4064','Avadon Breastplate Part','false','material','60','stackable','liquid','none','-1','11050','0','true','true','true','true','avadon_breastplate_part','material'),
- ('4065','Avadon Gaiters Material','false','material','60','stackable','liquid','none','-1','7150','0','true','true','true','true','avadon_gaiters_material','material'),
- ('4066','Zubei\'s Leather Shirt Fabric','false','material','60','stackable','liquid','none','-1','8483','0','true','true','true','true','shrnoen\'s_leather_shirts_fabric','material'),
- ('4067','Zubei\'s Leather Gaiter Texture','false','material','60','stackable','liquid','none','-1','5587','0','true','true','true','true','shrnoen\'s_leather_gaiters_texture','material'),
- ('4068','Avadon Leather Armor Lining','false','material','60','stackable','liquid','none','-1','11042','0','true','true','true','true','avadon_leather_mail_lining','material'),
- ('4069','Tunic of Zubei Fabric','false','material','60','stackable','liquid','none','-1','8483','0','true','true','true','true','tunic_of_shrnoen_fabric','material'),
- ('4070','Stockings of Zubei Fabric','false','material','60','stackable','liquid','none','-1','5587','0','true','true','true','true','hose_of_shrnoen_fabric','material'),
- ('4071','Avadon Robe Fabric','false','material','60','stackable','liquid','none','-1','11042','0','true','true','true','true','avadon_robe_fabric','material'),
- ('4072','Avadon Circlet Pattern','false','material','60','stackable','liquid','none','-1','4453','0','true','true','true','true','avadon_circlet_pattern','material'),
- ('4073','Avadon Gloves Part','false','material','60','stackable','liquid','none','-1','3843','0','true','true','true','true','avadon_gloves_part','material'),
- ('4074','Chain Gloves of Silence Design','false','material','60','stackable','liquid','none','-1','3843','0','true','true','true','true','silent_chain_gloves_design','material'),
- ('4075','Guardian\'s Gloves Design','false','material','60','stackable','liquid','none','-1','3843','0','true','true','true','true','guardian\'s_gloves_design','material'),
- ('4076','Gloves of Blessing Pattern','false','material','60','stackable','liquid','none','-1','3843','0','true','true','true','true','gloves_of_blessing_pattern','material'),
- ('4077','Doom Shield Fragment','false','material','60','stackable','liquid','none','-1','4446','0','true','true','true','true','doom_shield_fragment','material'),
- ('4078','Blue Wolf Breastplate Part','false','material','60','stackable','liquid','none','-1','13692','0','true','true','true','true','blue_wolve\'s_breastplate_part','material'),
- ('4079','Boots of Blessing Design','false','material','60','stackable','liquid','none','-1','3843','0','true','true','true','true','boots_of_blessing_design','material'),
- ('4080','Blue Wolf Gaiters Material','false','material','60','stackable','liquid','none','-1','9723','0','true','true','true','true','blue_wolve\'s_gaiters_material','material'),
- ('4081','Doom Plate Armor Temper','false','material','60','stackable','liquid','none','-1','20292','0','true','true','true','true','doom_plate_armor_temper','material'),
- ('4082','Blue Wolf Leather Armor Texture','false','material','60','stackable','liquid','none','-1','17700','0','true','true','true','true','blue_wolve\'s_leather_mail_texture','material'),
- ('4083','Leather Armor of Doom Design','false','material','60','stackable','liquid','none','-1','17700','0','true','true','true','true','leather_mail_of_doom_design','material'),
- ('4084','Blue Wolf Tunic Fabric','false','material','60','stackable','liquid','none','-1','11508','0','true','true','true','true','blue_wolve\'s_tunic_fabric','material'),
- ('4085','Tunic of Doom Pattern','false','material','60','stackable','liquid','none','-1','11508','0','true','true','true','true','tunic_of_doom_pattern','material'),
- ('4086','Blue Wolf Stockings Pattern','false','material','60','stackable','liquid','none','-1','8523','0','true','true','true','true','blue_wolve\'s_hose_pattern','material'),
- ('4087','Stockings of Doom Pattern','false','material','60','stackable','liquid','none','-1','8523','0','true','true','true','true','hose_of_doom_pattern','material'),
- ('4088','Blue Wolf Helmet Design','false','material','60','stackable','liquid','none','-1','5292','0','true','true','true','true','blue_wolve\'s_helmet_design','material'),
- ('4089','Doom Helmet Pattern','false','material','60','stackable','liquid','none','-1','5292','0','true','true','true','true','doom_helmet_pattern','material'),
- ('4090','Blue Wolf Boots Design','false','material','60','stackable','liquid','none','-1','4455','0','true','true','true','true','blue_wolve\'s_boots_design','material'),
- ('4091','Doom Gloves Part','false','material','60','stackable','liquid','none','-1','4455','0','true','true','true','true','doom_gloves_part','material'),
- ('4092','Elemental Gloves Lining','false','material','60','stackable','liquid','none','-1','4455','0','true','true','true','true','elemental_gloves_lining','material'),
- ('4093','Gloves of Grace Lining','false','material','60','stackable','liquid','none','-1','4455','0','true','true','true','true','gloves_of_grace_lining','material'),
- ('4094','Implosion Gauntlet Fabric','false','material','60','stackable','liquid','none','-1','4455','0','true','true','true','true','implosion_gauntlet_fabric','material'),
- ('4095','Paradia Gloves Pattern','false','material','60','stackable','liquid','none','-1','4455','0','true','true','true','true','paradia_gloves_pattern','material'),
- ('4096','Blue Wolf Gloves Fabric','false','material','60','stackable','liquid','none','-1','4455','0','true','true','true','true','blue_wolve\'s_gloves_fabric','material'),
- ('4097','Zubei\'s Boots Design','false','material','60','stackable','liquid','none','-1','3843','0','true','true','true','true','shrnoen\'s_boots_design','material'),
- ('4098','Avadon Boots Design','false','material','60','stackable','liquid','none','-1','3843','0','true','true','true','true','avadon_boots_design','material'),
- ('4099','Doom Boots Part','false','material','60','stackable','liquid','none','-1','4455','0','true','true','true','true','doom_boots_part','material'),
- ('4100','Zubei\'s Gauntlets Part','false','material','60','stackable','liquid','none','-1','3843','0','true','true','true','true','shrnoen\'s_gauntlet_part','material'),
- ('4101','Zubei\'s Shield Fragment','false','material','60','stackable','liquid','none','-1','3450','0','true','true','true','true','shrnoen\'s_shield_fragment','material'),
- ('4102','Zubei\'s Helmet Design','false','material','60','stackable','liquid','none','-1','4453','0','true','true','true','true','shrnoen\'s_helmet_design','material'),
- ('4103','Pata Blade','false','material','60','stackable','liquid','none','-1','32950','0','true','true','true','true','pata_blade','material'),
- ('4104','Great Sword Blade','false','material','60','stackable','liquid','none','-1','34950','0','true','true','true','true','great_sword_blade','material'),
- ('4105','Heavy War Axe Head','false','material','60','stackable','liquid','none','-1','34950','0','true','true','true','true','heavy_war_axe_head','material'),
- ('4106','Sprite\'s Staff Head','false','material','60','stackable','liquid','none','-1','35533','0','true','true','true','true','sprite\'s_staff_head','material'),
- ('4107','Keshanberk Blade','false','material','60','stackable','liquid','none','-1','35500','0','true','true','true','true','kshanberk_blade','material'),
- ('4108','Sword of Valhalla Blade','false','material','60','stackable','liquid','none','-1','35500','0','true','true','true','true','sword_of_valhalla_blade','material'),
- ('4109','Kris Edge','false','material','60','stackable','liquid','none','-1','35500','0','true','true','true','true','kris_edge','material'),
- ('4110','Hell Knife Edge','false','material','60','stackable','liquid','none','-1','35500','0','true','true','true','true','hell_knife_edge','material'),
- ('4111','Arthro Nail Blade','false','material','60','stackable','liquid','none','-1','34950','0','true','true','true','true','arthro_nail_blade','material'),
- ('4112','Dark Elven Longbow Shaft','false','material','60','stackable','liquid','none','-1','35325','0','true','true','true','true','dark_elven_long_bow_shaft','material'),
- ('4113','Great Axe Head','false','material','60','stackable','liquid','none','-1','38867','0','true','true','true','true','great_axe_head','material'),
- ('4114','Sword of Damascus Blade','false','material','60','stackable','liquid','none','-1','45692','0','true','true','true','true','sword_of_damascus_blade','material'),
- ('4115','Lance Blade','false','material','60','stackable','liquid','none','-1','45846','0','true','true','true','true','lancia_blade','material'),
- ('4116','Deadman\'s Glory Stone','false','material','60','stackable','liquid','none','-1','45769','0','true','true','true','true','deadman\'s_glory_stone','material'),
- ('4117','Art of Battle Axe Blade','false','material','60','stackable','liquid','none','-1','45769','0','true','true','true','true','art_of_battle_axe_blade','material'),
- ('4118','Evil Spirit Head','false','material','60','stackable','liquid','none','-1','48308','0','true','true','true','true','staff_of_evil_sprit_head','material'),
- ('4119','Demon Dagger Edge','false','material','60','stackable','liquid','none','-1','45692','0','true','true','true','true','demon\'s_sword_edge','material'),
- ('4120','Bellion Cestus Edge','false','material','60','stackable','liquid','none','-1','45769','0','true','true','true','true','bellion_cestus_edge','material'),
- ('4121','Bow of Peril Shaft','false','material','60','stackable','liquid','none','-1','45923','0','true','true','true','true','hazard_bow_shaft','material'),
- ('4122','Recipe: Maestro Holder','false','recipe','30','stackable','liquid','none','-1','4500','0','true','true','true','true','rp_maestro_holder','recipe'),
- ('4123','Recipe: Maestro Anvil Lock','false','recipe','30','stackable','liquid','none','-1','4500','0','true','true','true','true','rp_maestro_anvil_lock','recipe'),
- ('4124','Recipe: Craftsman Mold','false','recipe','30','stackable','liquid','none','-1','4500','0','true','true','true','true','rp_craftsman_mold','recipe'),
- ('4125','Recipe: Maestro Mold','false','recipe','30','stackable','liquid','none','-1','4500','0','true','true','true','true','rp_maestro_mold','recipe'),
- ('4126','Recipe: Adamantite Earrings','false','recipe','30','stackable','liquid','none','-1','12120','0','true','true','true','true','rp_adamantite_earing','recipe'),
- ('4127','Recipe: Adamantite Ring','false','recipe','30','stackable','liquid','none','-1','8080','0','true','true','true','true','rp_adamantite_ring','recipe'),
- ('4128','Recipe: Adamantite Necklace','false','recipe','30','stackable','liquid','none','-1','16160','0','true','true','true','true','rp_adamantite_necklace','recipe'),
- ('4129','Recipe: Earrings of Black Ore','false','recipe','30','stackable','liquid','none','-1','18480','0','true','true','true','true','rp_earing_of_black_ore','recipe'),
- ('4130','Recipe: Ring of Black Ore','false','recipe','30','stackable','liquid','none','-1','12320','0','true','true','true','true','rp_ring_of_black_ore','recipe'),
- ('4131','Recipe: Necklace of Black Ore','false','recipe','30','stackable','liquid','none','-1','24600','0','true','true','true','true','rp_necklace_of_black_ore','recipe'),
- ('4132','Recipe: Composite Shield','false','recipe','30','stackable','liquid','none','-1','5160','0','true','true','true','true','rp_composite_shield','recipe'),
- ('4133','Recipe: Zubei\'s Breastplate','false','recipe','30','stackable','liquid','none','-1','41600','0','true','true','true','true','rp_shrnoen\'s_breastplate','recipe'),
- ('4134','Recipe: Zubei\'s Gaiters','false','recipe','30','stackable','liquid','none','-1','26000','0','true','true','true','true','rp_shrnoen\'s_gaiters','recipe'),
- ('4135','Recipe: Implosion Boots','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_implosion_boots','recipe'),
- ('4136','Recipe: Boots of Silence','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_silent_boots','recipe'),
- ('4137','Recipe: Guardian\'s Boots','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_guardian\'s_boots','recipe'),
- ('4138','Recipe: Paradia Boots','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_paradia_boots','recipe'),
- ('4139','Recipe: Elemental Boots','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_elemental_boots','recipe'),
- ('4140','Recipe: Boots of Grace','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_boots_of_grace','recipe'),
- ('4141','Recipe: Avadon Breastplate','false','recipe','30','stackable','liquid','none','-1','41600','0','true','true','true','true','rp_avadon_breastplate','recipe'),
- ('4142','Recipe: Avadon Gaiters','false','recipe','30','stackable','liquid','none','-1','26000','0','true','true','true','true','rp_avadon_gaiters','recipe'),
- ('4143','Recipe: Zubei\'s Leather Shirt','false','recipe','30','stackable','liquid','none','-1','31200','0','true','true','true','true','rp_shrnoen\'s_leather_shirts','recipe'),
- ('4144','Recipe: Zubei\'s Leather Gaiters','false','recipe','30','stackable','liquid','none','-1','19460','0','true','true','true','true','rp_shrnoen\'s_leather_gaiters','recipe'),
- ('4145','Recipe: Avadon Leather Armor','false','recipe','30','stackable','liquid','none','-1','45600','0','true','true','true','true','rp_avadon_leather_mail','recipe'),
- ('4146','Recipe: Tunic of Zubei','false','recipe','30','stackable','liquid','none','-1','31200','0','true','true','true','true','rp_tunic_of_shrnoen','recipe'),
- ('4147','Recipe: Stockings of Zubei','false','recipe','30','stackable','liquid','none','-1','19460','0','true','true','true','true','rp_hose_of_shrnoen','recipe'),
- ('4148','Recipe: Avadon Robe','false','recipe','30','stackable','liquid','none','-1','45600','0','true','true','true','true','rp_avadon_robe','recipe'),
- ('4149','Recipe: Avadon Circlet','false','recipe','30','stackable','liquid','none','-1','15560','0','true','true','true','true','rp_avadon_circlet','recipe'),
- ('4150','Recipe: Avadon Gloves','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_avadon_gloves','recipe'),
- ('4151','Recipe: Chain Gloves of Silence','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_silent_chain_gloves','recipe'),
- ('4152','Recipe: Guardian\'s Gloves','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_guardian\'s_gloves','recipe'),
- ('4153','Recipe: Gloves of Blessing','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_gloves_of_blessing','recipe'),
- ('4154','Recipe: Doom Shield','false','recipe','30','stackable','liquid','none','-1','16900','0','true','true','true','true','rp_doom_shield','recipe'),
- ('4155','Recipe: Blue Wolf Breastplate','false','recipe','30','stackable','liquid','none','-1','64400','0','true','true','true','true','rp_blue_wolve\'s_breastplate','recipe'),
- ('4156','Recipe: Boots of Blessing','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_boots_of_blessing','recipe'),
- ('4157','Recipe: Blue Wolf Gaiters','false','recipe','30','stackable','liquid','none','-1','40200','0','true','true','true','true','rp_blue_wolve\'s_gaiters','recipe'),
- ('4158','Recipe: Doom Plate Armor','false','recipe','30','stackable','liquid','none','-1','94200','0','true','true','true','true','rp_doom_plate_armor','recipe'),
- ('4159','Recipe: Blue Wolf Leather Armor','false','recipe','30','stackable','liquid','none','-1','70600','0','true','true','true','true','rp_blue_wolve\'s_leather_mail','recipe'),
- ('4160','Recipe: Leather Armor of Doom','false','recipe','30','stackable','liquid','none','-1','70600','0','true','true','true','true','rp_leather_mail_of_doom','recipe'),
- ('4161','Recipe: Blue Wolf Tunic','false','recipe','30','stackable','liquid','none','-1','48200','0','true','true','true','true','rp_blue_wolve\'s_tunic','recipe'),
- ('4162','Recipe: Tunic of Doom','false','recipe','30','stackable','liquid','none','-1','48200','0','true','true','true','true','rp_tunic_of_doom','recipe'),
- ('4163','Recipe: Blue Wolf Stockings','false','recipe','30','stackable','liquid','none','-1','30200','0','true','true','true','true','rp_blue_wolve\'s_hose','recipe'),
- ('4164','Recipe: Stockings of Doom','false','recipe','30','stackable','liquid','none','-1','30200','0','true','true','true','true','rp_hose_of_doom','recipe'),
- ('4165','Recipe: Blue Wolf Helmet','false','recipe','30','stackable','liquid','none','-1','24200','0','true','true','true','true','rp_blue_wolve\'s_helmet','recipe'),
- ('4166','Recipe: Doom Helmet','false','recipe','30','stackable','liquid','none','-1','24200','0','true','true','true','true','rp_doom_helmet','recipe'),
- ('4167','Recipe: Blue Wolf Boots','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_blue_wolve\'s_boots','recipe'),
- ('4168','Recipe: Doom Gloves','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_doom_gloves','recipe'),
- ('4169','Recipe: Elemental Gloves','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_elemental_gloves','recipe'),
- ('4170','Recipe: Gloves of Grace','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_gloves_of_grace','recipe'),
- ('4171','Recipe: Implosion Gauntlets','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_implosion_gauntlet','recipe'),
- ('4172','Recipe: Paradia Gloves','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_paradia_gloves','recipe'),
- ('4173','Recipe: Blue Wolf Gloves','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_blue_wolve\'s_gloves','recipe'),
- ('4174','Recipe: Zubei\'s Boots','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_shrnoen\'s_boots','recipe'),
- ('4175','Recipe: Avadon Boots','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_avadon_boots','recipe'),
- ('4176','Recipe: Doom Boots','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_doom_boots','recipe'),
- ('4177','Recipe: Zubei\'s Gauntlets','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_shrnoen\'s_gauntlet','recipe'),
- ('4178','Recipe: Zubei\'s Shield (100%)','false','recipe','30','stackable','liquid','none','-1','10900','0','true','true','true','true','rp_shrnoen\'s_shield','recipe'),
- ('4179','Recipe: Zubei\'s Helmet','false','recipe','30','stackable','liquid','none','-1','15560','0','true','true','true','true','rp_shrnoen\'s_helmet','recipe'),
- ('4180','Recipe: Silver Arrow','false','recipe','30','stackable','liquid','none','-1','1800','0','true','true','true','true','rp_silver_arrow','recipe'),
- ('4181','Recipe: Pata','false','recipe','30','stackable','liquid','none','-1','156600','0','true','true','true','true','rp_pata','recipe'),
- ('4182','Recipe: Great Sword','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_great_sword','recipe'),
- ('4183','Recipe: Heavy War Axe','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_heavy_war_axe','recipe'),
- ('4184','Recipe: Sprite\'s Staff','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_sprite\'s_staff','recipe'),
- ('4185','Recipe: Keshanberk','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_kshanberk','recipe'),
- ('4186','Recipe: Sword of Valhalla','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_sword_of_valhalla','recipe'),
- ('4187','Recipe: Kris','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_kris','recipe'),
- ('4188','Recipe: Hell Knife','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_hell_knife','recipe'),
- ('4189','Recipe: Arthro Nail','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_arthro_nail','recipe'),
- ('4190','Recipe: Dark Elven Long Bow','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_dark_elven_long_bow','recipe'),
- ('4191','Recipe: Great Axe','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_great_axe','recipe'),
- ('4192','Recipe: Sword of Damascus','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_sword_of_damascus','recipe'),
- ('4193','Recipe: Lance','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_lancia','recipe'),
- ('4194','Recipe: Deadman\'s Glory','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_deadman\'s_glory','recipe'),
- ('4195','Recipe: Art of Battle Axe','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_art_of_battle_axe','recipe'),
- ('4196','Recipe: Staff of Evil Spirits','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_staff_of_evil_sprit','recipe'),
- ('4197','Recipe: Demon Dagger','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_demon\'s_sword','recipe'),
- ('4198','Recipe: Bellion Cestus','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_bellion_cestus','recipe'),
- ('4199','Recipe: Bow of Peril','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_hazard_bow','recipe'),
- ('4200','Spellbook: Restore Life','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_restore_life1','none'),
- ('4201','Spellbook: Resist Shock','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_resist_shock1','none'),
- ('4203','Spellbook: Life Leech','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_life_leech','none'),
- ('4204','Amulet: Pa\'agrio\'s Tact','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_tact_of_paagrio','none'),
- ('4205','Amulet: Pa\'agrio\'s Rage','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_rage_of_paagrio','none'),
- ('4206','Spellbook: Transfer Pain','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_transfer_pain','none'),
- ('4207','Spellbook: Mana Regeneration','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_mana_regeneration','none'),
- ('4208','Spellbook: Curse Gloom','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_curse_gloom','none'),
- ('4209','Change of Heart - Piece 1','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','heart_1','none'),
- ('4210','Change of Heart - Piece 2','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','heart_2','none'),
- ('4211','Change of Heart - Piece 3','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','heart_3','none'),
- ('4212','Change of Heart - Piece 4','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','heart_4','none'),
- ('4213','Change of Heart - Piece 5','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','heart_5','none'),
- ('4214','Change of Heart - Piece 6','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','heart_6','none'),
- ('4215','Change of Heart - Piece 7','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','heart_7','none'),
- ('4216','Change of Heart - Piece 8','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','heart_8','none'),
- ('4217','Change of Heart - Piece 9','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','heart_9','none'),
- ('4218','L2 Day - Scroll of Mana Regeneration','false','scroll','120','stackable','paper','none','-1','0','0','true','true','true','true','l2day_scroll_of_mana_regeneration','scroll'),
- ('4232','Dice','false','none','0','normal','steel','none','-1','0','0','true','true','false','true','dice','none'),
- ('4239','Blade Mold','false','quest','0','stackable','liquid','none','-1','0','0','false','false','true','false','q_blade_mold','none'),
- ('4240','Tyra\'s Bill','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_tweetys_bill','none'),
- ('4241','Ranger\'s Report - Part 1','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_rangers_report1','none'),
- ('4242','Ranger\'s Report - Part 2','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_rangers_report2','none'),
- ('4243','Ranger\'s Report - Part 3','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_rangers_report3','none'),
- ('4244','Ranger\'s Report - Part 4','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_rangers_report4','none'),
- ('4245','Weapons Trade Contract','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_weaponsdeal_contract','none'),
- ('4246','Attack Directives','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_attack_directives','none'),
- ('4247','Certificate of the Silver Scale Guild','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_silver_balance_mark','none'),
- ('4248','Rolento\'s Cargobox','false','quest','0','stackable','wood','none','-1','0','0','false','false','true','false','q_rolentos_cargobox','none'),
- ('4249','Ol Mahum Captain\'s Head','false','quest','0','stackable','leather','none','-1','0','0','false','false','true','false','q_olmahum_cptn_head','none'),
- ('4250','Jade Crystal','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_jade_crystal','none'),
- ('4251','Ancient Statue of Goddess','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q_ancient_idol','none'),
- ('4252','GalfRedo Romer\'s Bust','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q_ancient_portrait','none'),
- ('4253','Eye of the Shadow','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_eye_of_shadow','none'),
- ('4254','Certificate of Participation: Battle Royal','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_battle_royal','none'),
- ('4255','Trade Cargo','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_merchant_league_cargo','none'),
- ('4256','Agnes\'s Holy Symbol','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_agnes_holysymbol','none'),
- ('4257','Agnes\'s Rosary','false','quest','0','stackable','wood','none','-1','0','0','false','false','true','false','q_agnes_rosary','none'),
- ('4258','Sinister Totem','false','quest','0','stackable','wood','none','-1','0','0','false','false','true','false','q_sinister_totem','none'),
- ('4259','Bear Skin','false','quest','0','stackable','leather','none','-1','0','0','false','false','true','false','q_bear_skin','none'),
- ('4260','Enku Orc\'s Head','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q0342_orks_head','none'),
- ('4261','Orc Heads Bouquet -1','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0342_bloody_bouquet_1','none'),
- ('4262','Orc Heads Bouquet -2','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0342_bloody_bouquet_2','none'),
- ('4263','Orc Heads Bouquet -3','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0342_bloody_bouquet_3','none'),
- ('4264','Orc Heads Bouquet -4','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0342_bloody_bouquet_4','none'),
- ('4265','Orc Heads Bouquet -5','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0342_bloody_bouquet_5','none'),
- ('4266','Orc Heads Bouquet -6','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0342_bloody_bouquet_6','none'),
- ('4267','Orc Heads Bouquet -7','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0342_bloody_bouquet_7','none'),
- ('4268','Jennifer\'s Box','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0342_box_to_orclady','none'),
- ('4269','Articles of Dead Heroes','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0344_left_thing_of_heroes','none'),
- ('4270','Old Key','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q0344_old_key','none'),
- ('4271','Old Hilt','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q0344_old_hilt','none'),
- ('4272','Totem Necklace','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q0344_totem_necklace','none'),
- ('4273','Einhasad Crucifix','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0344_holy_symbol_of_light','none'),
- ('4274','Victim\'s Arm Bone','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q0345_bone_arm','none'),
- ('4275','Victim\'s Thigh Bone','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q0345_bone_leg','none'),
- ('4276','Victim\'s Skull','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q0345_bone_skull','none'),
- ('4277','Victim\'s Rib Bone','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q0345_bone_rib','none'),
- ('4278','Victim\'s Spine','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q0345_bone_spine','none'),
- ('4279','Jar of Bones','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q0345_jar_of_bone','none'),
- ('4280','Useless Bone Pieces','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q0345_bone_useless','none'),
- ('4281','Powder to Summon Dead Souls','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q0345_calling_spirit_powder','none'),
- ('4282','Sack of the Dead','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q0345_sack_ot_the_dead','none'),
- ('4283','Frog Prince','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_frogged_prince','none'),
- ('4284','Fly Powder','false','quest','0','stackable','liquid','none','-1','0','0','false','false','true','false','q_fly_powder','none'),
- ('4285','Calculator','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_calculator','none'),
- ('4286','Gemstone Beast\'s Crystal','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_gemstone','none'),
- ('4287','Titan\'s Powerstone','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q0348_engine_of_lgiant','none'),
- ('4288','Hanellin\'s 1st Letter','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0348_hanellins_letter1','none'),
- ('4289','Hanellin\'s 2nd Letter','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0348_hanellins_letter2','none'),
- ('4290','Hanellin\'s 3rd Letter','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0348_hanellins_letter3','none'),
- ('4291','1st Key of Ark','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q0348_key_of_ark1','none'),
- ('4292','2nd Key of Ark','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q0348_key_of_ark2','none'),
- ('4293','3rd Key of Ark','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q0348_key_of_ark3','none'),
- ('4294','White Fabric','false','quest','0','stackable','cloth','none','-1','0','0','false','false','true','false','q0348_white_fabric','none'),
- ('4295','Blooded Fabric','false','quest','0','stackable','cloth','none','-1','0','0','false','false','true','false','q0348_blooded_fabric','none'),
- ('4296','Order of Gosta','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0351_order_of_gosta','none'),
- ('4297','Lizard Fang','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q0351_lizard_fang','none'),
- ('4298','Barrel of League','false','quest','0','stackable','wood','none','-1','0','0','false','false','true','false','q0351_barrel_of_league','none'),
- ('4299','Operation Document - 1/10','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0351_ope_doc_01','none'),
- ('4300','Operation Document - 2/10','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0351_ope_doc_02','none'),
- ('4301','Operation Document - 3/10','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0351_ope_doc_03','none'),
- ('4302','Operation Document - 4/10','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0351_ope_doc_04','none'),
- ('4303','Operation Document - 5/10','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0351_ope_doc_05','none'),
- ('4304','Operation Document - 6/10','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0351_ope_doc_06','none'),
- ('4305','Operation Document - 7/10','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0351_ope_doc_07','none'),
- ('4306','Operation Document - 8/10','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0351_ope_doc_08','none'),
- ('4307','Operation Document - 9/10','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0351_ope_doc_09','none'),
- ('4308','Operation Document - 10/10','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0351_ope_doc_10','none'),
- ('4309','Completed Operation Order','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0351_ope_doc_all','none'),
- ('4310','Bill of Iason Heine','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0351_bill_of_iason','none'),
- ('4311','Gillian\'s Diary','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_gillians_diary','none'),
- ('4312','Gillian\'s Notes','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_gillians_notes','none'),
- ('4313','Unfinished Music','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_unfinished_music','none'),
- ('4314','Gillian\'s Heart','false','quest','0','stackable','leather','none','-1','0','0','false','false','true','false','q_gillians_heart','none'),
- ('4315','Gandi Tribe\'s Relic','false','quest','0','stackable','wood','none','-1','0','0','false','false','true','false','q_gandi_tribe_relic','none'),
- ('4316','Swan\'s Flute','false','quest','0','stackable','wood','none','-1','0','0','false','false','true','false','q_swans_flute','none'),
- ('4317','Swan\'s Letter','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_letter_of_swan','none'),
- ('4318','Event Clothes','false','quest','0','stackable','cloth','none','-1','0','0','false','false','true','false','q_event_cloth','none'),
- ('4319','Nanarin\'s Flute','false','quest','0','stackable','wood','none','-1','0','0','false','false','true','false','q_nanarins_flute','none'),
- ('4320','Sabrin\'s Black Beer','false','quest','0','stackable','liquid','none','-1','0','0','false','false','true','false','q_sabrin_black_beer','none'),
- ('4321','Stolen Black Beer','false','quest','0','stackable','liquid','none','-1','0','0','false','false','true','false','q_stolen_black_beer','none'),
- ('4322','Stolen Event Clothes','false','quest','0','stackable','cloth','none','-1','0','0','false','false','true','false','q_stolen_event_cloth','none'),
- ('4323','Clothes Chest Key','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_cloth_chest_key','none'),
- ('4324','Beer Chest Key','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_beer_chest_key','none'),
- ('4325','Fairy Leaf','false','quest','0','stackable','wood','none','-1','0','0','false','false','true','false','q0421_fairy_leaf','none'),
- ('4326','Ratman Scavenger\'s Skull','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q0422_rats_head','none'),
- ('4327','Turek War Hound\'s Tail','false','quest','0','stackable','bone','none','-1','0','0','false','false','true','false','q0422_dogs_tail','none'),
- ('4328','Tyrant Kingpin\'s Heart','false','quest','0','stackable','leather','none','-1','0','0','false','false','true','false','q0422_tyrants_heart','none'),
- ('4329','Trisalim Tarantula\'s Venom Sac','false','quest','0','stackable','cloth','none','-1','0','0','false','false','true','false','q0422_trisalims_poison','none'),
- ('4330','Penitent\'s Manacles','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q0422_manacles','none'),
- ('4331','Manual of Manacles','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0422_manual_of_manacles','none'),
- ('4332','Tarlk Amulet','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_tarlk_amulet','none'),
- ('4333','Contest Certificate','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_contest_certificate','none'),
- ('4334','Ant\'s Ichor','false','quest','0','stackable','liquid','none','-1','0','0','false','false','true','false','q0332_ants_ichor','none'),
- ('4335','Noble Ant\'s Nerve Tissue','false','quest','0','stackable','liquid','none','-1','0','0','false','false','true','false','q0332_ants_central_nerve','none'),
- ('4336','Casian\'s Enzyme','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0332_kasians_enzyme','none'),
- ('4337','Alligator Leather','false','quest','0','stackable','leather','none','-1','0','0','false','false','true','false','q0338_crocodile_leather','none'),
- ('4338','Blue Back Alligator Leather','false','quest','0','stackable','leather','none','-1','0','0','false','false','true','false','q0338_crocodile_leather_bb','none'),
- ('4339','Jewel Studded Alligator Leather','false','quest','0','stackable','leather','none','-1','0','0','false','false','true','false','q0338_crocodile_leather_jw','none'),
- ('4340','Certificate of Approval to Create a Belt','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0338_recipe_for_belt','none'),
- ('4341','Certificate of Approval to Create a Purse','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q0338_recipe_for_handbag','none'),
- ('4342','Crystal of Water','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q0339_crystal_of_water','none'),
- ('4343','Crystal of Fire','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q0339_crystal_of_fire','none'),
- ('4344','Crystal of Wind','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q0339_crystal_of_wind','none'),
- ('4345','Crystal of Earth','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q0339_crystal_of_earth','none'),
- ('4346','Crystal of Darkness','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q0339_crystal_of_darkness','none'),
- ('4347','Crystal of Light','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q0339_crystal_of_light','none'),
- ('4348','Jade Crystal','false','none','1','stackable','crystal','none','-1','0','0','true','true','true','true','q_jade_crystal','none'),
- ('4349','Bust of Ancient Goddess','false','none','5','stackable','wood','none','-1','0','0','true','true','true','true','q_beronas_goddess_idol','none'),
- ('4350','The Work of the ancient sculptor Berona','false','none','5','stackable','wood','none','-1','3400','0','true','true','true','true','q_beronas_sculpture_0','none'),
- ('4351','Ancient Statue of Goddess - Prototype','false','none','5','stackable','wood','none','-1','10000','0','true','true','true','true','q_beronas_sculpture_s','none'),
- ('4352','Ancient Statue of Goddess - Original','false','none','5','stackable','wood','none','-1','6800','0','true','true','true','true','q_beronas_sculpture_a','none'),
- ('4353','Ancient Statue of Goddess - Replica','false','none','5','stackable','wood','none','-1','850','0','true','true','true','true','q_beronas_sculpture_b','none'),
- ('4354','Ancient Statue of Goddess - Forgery','false','none','5','stackable','wood','none','-1','850','0','true','true','true','true','q_beronas_sculpture_c','none'),
- ('4355','Blue Eva','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','q_blue_eva','none'),
- ('4356','Gold Einhasad','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','q_gold_einhasad','none'),
- ('4357','Silver Shilen','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','q_silver_shilen','none'),
- ('4358','Bloody Pa\'agrio','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','q_blood_paagrio','none'),
- ('4359','Barrel of Liquor','false','none','2000','normal','wood','none','-1','0','0','true','true','true','true','barrel_of_liquor','none'),
- ('4360','Precious Scarab','false','none','0','normal','crystal','none','-1','0','0','true','true','true','true','precious_scarab','none'),
- ('4361','Simbelmyne','false','none','0','normal','wood','none','-1','0','0','true','true','true','true','simbelmyne','none'),
- ('4362','Odd (looking) Doll','false','none','500','normal','steel','none','-1','0','0','true','true','true','true','odd_doll','none'),
- ('4363','Scarlet Dress','false','none','20','normal','cloth','none','-1','0','0','true','true','true','true','scalet_dress','none'),
- ('4364','Nebulite Orb','false','none','2','stackable','crystal','none','-1','10','0','true','true','true','true','q_nebulite_orb','none'),
- ('4365','Ectoplasm Liqueur','false','none','10','normal','crystal','none','-1','0','0','true','true','true','true','q_ectoplasm_liqueur','none'),
- ('4366','Prince\'s Trophy','false','none','20','stackable','steel','none','-1','0','0','true','true','true','true','q_princes_trophy','none'),
- ('4367','Prince\'s Autobiography','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','q_princes_autobiography','none'),
- ('4368','Prince\'s Bust','false','none','20','stackable','steel','none','-1','0','0','true','true','true','true','q_princes_bust','none'),
- ('4369','Silk Handkerchief','false','none','5','stackable','cloth','none','-1','0','0','true','true','true','true','q_silk_handkerchief','none'),
- ('4370','Luxurious Goblet','false','none','10','stackable','steel','none','-1','0','0','true','true','true','true','q_luxurious_goblet','none'),
- ('4371','Scepter of Darkness','false','none','10','stackable','steel','none','-1','0','0','true','true','true','true','q_scepter_of_darkness','none'),
- ('4372','Succubus Perfume','false','none','5','stackable','liquid','none','-1','0','0','true','true','true','true','q_succubus_perfume','none'),
- ('4373','Succubus Mirror','false','none','10','stackable','liquid','none','-1','0','0','true','true','true','true','q_succubus_mirror','none'),
- ('4374','Heart of Darkness','false','none','30','stackable','wood','none','-1','0','0','true','true','true','true','q_heart_of_darkness','none'),
- ('4375','Royal Orc Totem','false','none','30','stackable','wood','none','-1','0','0','true','true','true','true','q_royal_orc_totem','none'),
- ('4376','Pearl Trodden/Trampled By A Wild Hog','false','none','5','stackable','crystal','none','-1','0','0','true','true','true','true','q_pearl_from_pigpen','none'),
- ('4377','Boar\'s Tusk','false','none','10','stackable','bone','none','-1','0','0','true','true','true','true','q_boar_tusk','none'),
- ('4378','Sweet Potato','false','none','5','stackable','bone','none','-1','0','0','true','true','true','true','q_sweet_potato','none'),
- ('4379','Beast\'s Claws','false','none','5','stackable','bone','none','-1','0','0','true','true','true','true','q_beasts_claws','none'),
- ('4380','Beast\'s Mane','false','none','10','stackable','leather','none','-1','0','0','true','true','true','true','q_beasts_mane','none'),
- ('4381','Ginseng Root','false','none','5','stackable','wood','none','-1','0','0','true','true','true','true','q_ginseng_root','none'),
- ('4382','Honey Jar','false','none','10','stackable','steel','none','-1','0','0','true','true','true','true','q_honey_jar','none'),
- ('4383','Bear\'s Gall','false','none','5','stackable','liquid','none','-1','0','0','true','true','true','true','q_bears_gall','none'),
- ('4384','Fresh Samon','false','none','5','stackable','bone','none','-1','0','0','true','true','true','true','q_fresh_salmon','none'),
- ('4385','Sushi Riceball','false','none','5','stackable','liquid','none','-1','0','0','true','true','true','true','q_sushi_riceball','none'),
- ('4386','Avellan Spice','false','none','5','stackable','liquid','none','-1','0','0','true','true','true','true','q_avellan_spice','none'),
- ('4387','Lucky Rabbit Weed','false','none','5','stackable','wood','none','-1','0','0','true','true','true','true','q_lucky_rabbit_weed','none'),
- ('4388','Malcom\'s Check','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','q_malcoms_check','none'),
- ('4389','Deposit Box Key','false','none','10','stackable','steel','none','-1','0','0','true','true','true','true','q_deposit_key','none'),
- ('4390','Dwarven Royal Seal','false','none','20','stackable','steel','none','-1','0','0','true','true','true','true','q_dwarven_royal_seal','none'),
- ('4391','Dwarven Royal Crown','false','none','20','stackable','steel','none','-1','0','0','true','true','true','true','q_dwarven_royal_crown','none'),
- ('4392','Dwarven Dance Manual','false','none','20','stackable','paper','none','-1','0','0','true','true','true','true','q_dwarven_dance_manual','none'),
- ('4393','Calculator','false','none','20','normal','steel','none','-1','200','0','true','true','true','true','calculator','none'),
- ('4394','Hanellin\'s White Flower','false','none','0','normal','wood','none','-1','0','0','true','false','false','true','hanellins_white_flower','none'),
- ('4395','Hanellin\'s Red Flower','false','none','0','normal','wood','none','-1','0','0','true','false','false','true','hanellins_red_flower','none'),
- ('4396','Hanellin\'s Yellow Flower','false','none','0','normal','wood','none','-1','0','0','true','false','false','true','hanellins_yellow_flower','none'),
- ('4397','Book of Saint','false','none','20','normal','paper','none','-1','0','0','true','false','false','true','book_of_saint','none'),
- ('4398','Blood of Saint','false','none','20','normal','liquid','none','-1','0','0','true','false','false','true','blood_of_saint','none'),
- ('4399','Bough of Saint','false','none','20','normal','wood','none','-1','0','0','true','false','false','true','bough_of_saint','none'),
- ('4400','White Fabric','false','none','0','stackable','cloth','none','-1','0','0','true','false','false','true','white_fabric','none'),
- ('4401','Green Dimensional Stone','false','none','10','stackable','crystal','none','-1','100000','0','true','true','true','true','green_dimension_stone','none'),
- ('4402','Blue Dimensional Stone','false','none','10','stackable','crystal','none','-1','100000','0','true','true','true','true','blue_dimension_stone','none'),
- ('4403','Red Dimensional Stone','false','none','10','stackable','crystal','none','-1','100000','0','true','true','true','true','red_dimension_stone','none'),
- ('4404','Green Dimensional Stone - Shard','false','none','10','stackable','crystal','none','-1','0','0','true','true','true','true','green_d_stone_shard','none'),
- ('4405','Blue Dimensional Stone - Shard','false','none','10','stackable','crystal','none','-1','0','0','true','true','true','true','blue_d_stone_shard','none'),
- ('4406','Red Dimensional Stone - Shard','false','none','10','stackable','crystal','none','-1','0','0','true','true','true','true','red_d_stone_shard','none'),
- ('4407','Bill of Iason Heine','false','none','0','stackable','paper','none','-1','0','0','true','true','true','true','bill_of_iason','none'),
- ('4408','Musical Score - Theme of Love','false','none','20','stackable','paper','none','-1','0','0','true','true','true','true','q_musicnote_love','none'),
- ('4409','Musical Score - Theme of Battle','false','none','20','stackable','paper','none','-1','0','0','true','true','true','true','q_musicnote_battle','none'),
- ('4410','Musical Score - Theme of Journey','false','none','20','stackable','paper','none','-1','0','0','true','true','true','true','q_musicnote_journey','none'),
- ('4411','Echo Crystal - Theme of Journey','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_journey','none'),
- ('4412','Echo Crystal - Theme of Battle','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_battle','none'),
- ('4413','Echo Crystal - Theme of Love','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_love','none'),
- ('4414','Echo Crystal - Theme of Solitude','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_solitude','none'),
- ('4415','Echo Crystal - Theme of the Feast','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_feast','none'),
- ('4416','Echo Crystal - Theme of Celebration','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_celebration','none'),
- ('4417','Echo Crystal - Theme of Comedy','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_comedy','none'),
- ('4418','Musical Score - Theme of Celebration','false','none','20','stackable','paper','none','-1','0','0','true','true','true','true','q_musicnote_celebration','none'),
- ('4419','Musical Score - Theme of Comedy','false','none','20','stackable','paper','none','-1','0','0','true','true','true','true','q_musicnote_comedy','none'),
- ('4420','Musical Score - Theme of Solitude','false','none','20','stackable','paper','none','-1','0','0','true','true','true','true','q_musicnote_solitude','none'),
- ('4421','Musical Score - Theme of the Feast','false','none','20','stackable','paper','none','-1','0','0','true','true','true','true','q_musicnote_feast','none'),
- ('4422','Dragon Bugle of Wind','false','pet_collar','20','normal','steel','none','-1','0','0','true','true','true','true','dragon_bugle_wind','pet_collar'),
- ('4423','Dragon Bugle of Star','false','pet_collar','20','normal','steel','none','-1','0','0','true','true','true','true','dragon_bugle_star','pet_collar'),
- ('4424','Dragon Bugle of Dusk','false','pet_collar','20','normal','steel','none','-1','0','0','true','true','true','true','dragon_bugle_dusk','pet_collar'),
- ('4425','Penitent\'s Manacles','false','pet_collar','800','normal','steel','none','-1','0','0','false','false','false','false','manacles_of_redemption','pet_collar'),
- ('4426','Manacles of Penitent','false','none','50','normal','steel','none','-1','22000','0','true','false','true','true','manacles_of_redeemed','none'),
- ('4427','Alligator Leather Belt','false','none','20','normal','leather','none','-1','0','0','true','true','true','true','croc_leather_belt','none'),
- ('4428','Blue Alligator Leather Belt','false','none','20','normal','leather','none','-1','0','0','true','true','true','true','croc_leather_belt_bb','none'),
- ('4429','Bejeweled Leather Belt','false','none','20','normal','leather','none','-1','0','0','true','true','true','true','croc_leather_belt_jw','none'),
- ('4430','Alligator Leather Purse','false','none','20','normal','leather','none','-1','0','0','true','true','true','true','croc_leather_bag','none'),
- ('4431','Blue Alligator Leather Purse','false','none','20','normal','leather','none','-1','0','0','true','true','true','true','croc_leather_bag_bb','none'),
- ('4432','Bejeweled Purse','false','none','20','normal','leather','none','-1','0','0','true','true','true','true','croc_leather_bag_jw','none'),
- ('4433','Elemental Stone Powder','false','none','10','stackable','crystal','none','-1','0','0','true','true','true','true','elemental_stone_powder','none'),
- ('4434','Elemental Stone Shards','false','none','100','stackable','crystal','none','-1','0','0','true','true','true','true','elemental_stone_shards','none'),
- ('4435','Elemental Stone Lump','false','none','1000','stackable','crystal','none','-1','0','0','true','true','true','true','elemental_stone_lump','none'),
- ('4436','Bentley\'s Request','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_bentleys_request','none'),
- ('4437','Carson\'s Request','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','q_carsons_request','none'),
- ('4438','Knuckle Duster Edge','false','material','60','stackable','liquid','none','-1','28044','0','true','true','true','true','knuckle_dust_edge','material'),
- ('4439','Avadon Shield Fragment','false','material','60','stackable','liquid','none','-1','2900','0','true','true','true','true','avadon_shield_fragment','material'),
- ('4440','Recipe: Knuckle Duster','false','recipe','30','stackable','liquid','none','-1','57400','0','true','true','true','true','rp_knuckle_dust','recipe'),
- ('4441','Recipe: Avadon Shield','false','recipe','30','stackable','liquid','none','-1','10900','0','true','true','true','true','rp_avadon_shield','recipe'),
- ('4442','Lottery Ticket','false','lotto','20','normal','paper','none','-1','0','0','true','true','true','true','lottery_ticket','lotto'),
- ('4443','Monster Race Ticket - Single','false','race_ticket','20','normal','paper','none','-1','0','0','false','false','true','false','monster_race_ticket_single','race_ticket'),
- ('4444','Monster Race Ticket - Double','false','race_ticket','20','normal','paper','none','-1','0','0','false','false','true','false','monster_race_ticket_double','race_ticket'),
- ('4445','Dye of STR ','false','dye','150','stackable','liquid','none','-1','5100','0','true','true','true','true','dye_s1c3_d','dye'),
- ('4446','Dye of STR ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_s1d3_d','dye'),
- ('4447','Dye of CON ','false','dye','150','stackable','liquid','none','-1','5100','0','true','true','true','true','dye_c1s3_d','dye'),
- ('4448','Dye of CON ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_c1d3_d','dye'),
- ('4449','Dye of DEX ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_d1s3_d','dye'),
- ('4450','Dye of DEX ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_d1c3_d','dye'),
- ('4451','Dye of INT ','false','dye','150','stackable','liquid','none','-1','5100','0','true','true','true','true','dye_i1m3_d','dye'),
- ('4452','Dye of INT ','false','dye','150','stackable','liquid','none','-1','5100','0','true','true','true','true','dye_i1w3_d','dye'),
- ('4453','Dye of MEN ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_m1i3_d','dye'),
- ('4454','Dye of MEN ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_m1w3_d','dye'),
- ('4455','Dye of WIT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_w1i3_d','dye'),
- ('4456','Dye of WIT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_w1m3_d','dye'),
- ('4457','Dye of STR ','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_s1c2_d','dye'),
- ('4458','Dye of STR ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_s1d2_d','dye'),
- ('4459','Dye of CON ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_c1s2_d','dye'),
- ('4460','Dye of CON ','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_c1d2_d','dye'),
- ('4461','Dye of DEX ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_d1s2_d','dye'),
- ('4462','Dye of DEX ','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_d1c2_d','dye'),
- ('4463','Dye of INT ','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_i1m2_d','dye'),
- ('4464','Dye of INT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_i1w2_d','dye'),
- ('4465','Dye of MEN ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_m1i2_d','dye'),
- ('4466','Dye of MEN ','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_m1w2_d','dye'),
- ('4467','Dye of WIT ','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_w1i2_d','dye'),
- ('4468','Dye of WIT ','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_w1m2_d','dye'),
- ('4469','Dye of STR ','false','dye','150','stackable','liquid','none','-1','42000','0','true','true','true','true','dye_s1c1_d','dye'),
- ('4470','Dye of STR ','false','dye','150','stackable','liquid','none','-1','42000','0','true','true','true','true','dye_s1d1_d','dye'),
- ('4471','Dye of CON ','false','dye','150','stackable','liquid','none','-1','42000','0','true','true','true','true','dye_c1s1_d','dye'),
- ('4472','Dye of CON ','false','dye','150','stackable','liquid','none','-1','42000','0','true','true','true','true','dye_c1d1_d','dye'),
- ('4473','Dye of DEX ','false','dye','150','stackable','liquid','none','-1','42000','0','true','true','true','true','dye_d1s1_d','dye'),
- ('4474','Dye of DEX ','false','dye','150','stackable','liquid','none','-1','42000','0','true','true','true','true','dye_d1c1_d','dye'),
- ('4475','Dye of INT ','false','dye','150','stackable','liquid','none','-1','42000','0','true','true','true','true','dye_i1m1_d','dye'),
- ('4476','Dye of INT ','false','dye','150','stackable','liquid','none','-1','42000','0','true','true','true','true','dye_i1w1_d','dye'),
- ('4477','Dye of MEN ','false','dye','150','stackable','liquid','none','-1','42000','0','true','true','true','true','dye_m1i1_d','dye'),
- ('4478','Dye of MEN ','false','dye','150','stackable','liquid','none','-1','42000','0','true','true','true','true','dye_m1w1_d','dye'),
- ('4479','Dye of WIT ','false','dye','150','stackable','liquid','none','-1','42000','0','true','true','true','true','dye_w1i1_d','dye'),
- ('4480','Dye of WIT ','false','dye','150','stackable','liquid','none','-1','42000','0','true','true','true','true','dye_w1m1_d','dye'),
- ('4481','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_s1c3_c','dye'),
- ('4482','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_s1d3_c','dye'),
- ('4483','Greater Dye of CON','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_c1s3_c','dye'),
- ('4484','Greater Dye of CON','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_c1c3_c','dye'),
- ('4485','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_d1s3_c','dye'),
- ('4486','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_d1c3_c','dye'),
- ('4487','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_i1m3_c','dye'),
- ('4488','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_i1w3_c','dye'),
- ('4489','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_m1i3_c','dye'),
- ('4490','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_m1w3_c','dye'),
- ('4491','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_w1i3_c','dye'),
- ('4492','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','12000','0','true','true','true','true','dye_w1m3_c','dye'),
- ('4493','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','21000','0','true','true','true','true','dye_s1c2_c','dye'),
- ('4494','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','21000','0','true','true','true','true','dye_s1d2_c','dye'),
- ('4495','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_c1s2_c','dye'),
- ('4496','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_c1c2_c','dye'),
- ('4497','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','21000','0','true','true','true','true','dye_d1s2_c','dye'),
- ('4498','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','21000','0','true','true','true','true','dye_d1c2_c','dye'),
- ('4499','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_i1m2_c','dye'),
- ('4500','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_i1w2_c','dye'),
- ('4501','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_m1i2_c','dye'),
- ('4502','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','21000','0','true','true','true','true','dye_m1w2_c','dye'),
- ('4503','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_w1i2_c','dye'),
- ('4504','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_w1m2_c','dye'),
- ('4505','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','24600','0','true','true','true','true','dye_s2c4_c','dye'),
- ('4506','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','24600','0','true','true','true','true','dye_s2d4_c','dye'),
- ('4507','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','24600','0','true','true','true','true','dye_c2s4_c','dye'),
- ('4508','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','24600','0','true','true','true','true','dye_c2c4_c','dye'),
- ('4509','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','24600','0','true','true','true','true','dye_d2s4_c','dye'),
- ('4510','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','24600','0','true','true','true','true','dye_d2c4_c','dye'),
- ('4511','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','24600','0','true','true','true','true','dye_i2m4_c','dye'),
- ('4512','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','24600','0','true','true','true','true','dye_i2w4_c','dye'),
- ('4513','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','24600','0','true','true','true','true','dye_m2i4_c','dye'),
- ('4514','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','24600','0','true','true','true','true','dye_m2w4_c','dye'),
- ('4515','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_w2i4_c','dye'),
- ('4516','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_w2m4_c','dye'),
- ('4517','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','27000','0','true','true','true','true','dye_s2c3_c','dye'),
- ('4518','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','27000','0','true','true','true','true','dye_s2d3_c','dye'),
- ('4519','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','27000','0','true','true','true','true','dye_c2s3_c','dye'),
- ('4520','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_c2c3_c','dye'),
- ('4521','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','27000','0','true','true','true','true','dye_d2s3_c','dye'),
- ('4522','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','27000','0','true','true','true','true','dye_d2c3_c','dye'),
- ('4523','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','27000','0','true','true','true','true','dye_i2m3_c','dye'),
- ('4524','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_i2w3_c','dye'),
- ('4525','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_m2i3_c','dye'),
- ('4526','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_m2w3_c','dye'),
- ('4527','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','27000','0','true','true','true','true','dye_w2i3_c','dye'),
- ('4528','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_w2m3_c','dye'),
- ('4529','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','30000','0','true','true','true','true','dye_s3c5_c','dye'),
- ('4530','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','30000','0','true','true','true','true','dye_s3d5_c','dye'),
- ('4531','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_c3s5_c','dye'),
- ('4532','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_c3c5_c','dye'),
- ('4533','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_d3s5_c','dye'),
- ('4534','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_d3c5_c','dye'),
- ('4535','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_i3m5_c','dye'),
- ('4536','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_i3w5_c','dye'),
- ('4537','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_m3i5_c','dye'),
- ('4538','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','30000','0','true','true','true','true','dye_m3w5_c','dye'),
- ('4539','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_w3i5_c','dye'),
- ('4540','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_w3m5_c','dye'),
- ('4541','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','30000','0','true','true','true','true','dye_s3c4_c','dye'),
- ('4542','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','30000','0','true','true','true','true','dye_s3d4_c','dye'),
- ('4543','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_c3s4_c','dye'),
- ('4544','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_c3c4_c','dye'),
- ('4545','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','30000','0','true','true','true','true','dye_d3s4_c','dye'),
- ('4546','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_d3c4_c','dye'),
- ('4547','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_i3m4_c','dye'),
- ('4548','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','30000','0','true','true','true','true','dye_i3w4_c','dye'),
- ('4549','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_m3i4_c','dye'),
- ('4550','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_m3w4_c','dye'),
- ('4551','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_w3i4_c','dye'),
- ('4552','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','30000','0','true','true','true','true','dye_w3m4_c','dye'),
- ('4553','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','60000','0','true','true','true','true','dye_s1c1_c','dye'),
- ('4554','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','60000','0','true','true','true','true','dye_s1d1_c','dye'),
- ('4555','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','60000','0','true','true','true','true','dye_c1s1_c','dye'),
- ('4556','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','60000','0','true','true','true','true','dye_c1c1_c','dye'),
- ('4557','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','60000','0','true','true','true','true','dye_d1s1_c','dye'),
- ('4558','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','60000','0','true','true','true','true','dye_d1c1_c','dye'),
- ('4559','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','60000','0','true','true','true','true','dye_i1m1_c','dye'),
- ('4560','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','60000','0','true','true','true','true','dye_i1w1_c','dye'),
- ('4561','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','60000','0','true','true','true','true','dye_m1i1_c','dye'),
- ('4562','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','60000','0','true','true','true','true','dye_m1w1_c','dye'),
- ('4563','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','60000','0','true','true','true','true','dye_w1i1_c','dye'),
- ('4564','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','60000','0','true','true','true','true','dye_w1m1_c','dye'),
- ('4565','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_s4c6_c','dye'),
- ('4566','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_s4d6_c','dye'),
- ('4567','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_c4s6_c','dye'),
- ('4568','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_c4c6_c','dye'),
- ('4569','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_d4s6_c','dye'),
- ('4570','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_d4c6_c','dye'),
- ('4571','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_i4m6_c','dye'),
- ('4572','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_i4w6_c','dye'),
- ('4573','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_m4i6_c','dye'),
- ('4574','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_m4w6_c','dye'),
- ('4575','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_w4i6_c','dye'),
- ('4576','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_w4m6_c','dye'),
- ('4577','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_s4c5_c','dye'),
- ('4578','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_s4d5_c','dye'),
- ('4579','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_c4s5_c','dye'),
- ('4580','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_c4c5_c','dye'),
- ('4581','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_d4s5_c','dye'),
- ('4582','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_d4c5_c','dye'),
- ('4583','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_i4m5_c','dye'),
- ('4584','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_i4w5_c','dye'),
- ('4585','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_m4i5_c','dye'),
- ('4586','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','0','0','true','true','true','true','dye_m4w5_c','dye'),
- ('4587','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_w4i5_c','dye'),
- ('4588','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','36000','0','true','true','true','true','dye_w4m5_c','dye'),
- ('4589','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','72000','0','true','true','true','true','dye_s2c2_c','dye'),
- ('4590','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','72000','0','true','true','true','true','dye_s2d2_c','dye'),
- ('4591','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','72000','0','true','true','true','true','dye_c2s2_c','dye'),
- ('4592','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','72000','0','true','true','true','true','dye_c2c2_c','dye'),
- ('4593','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','72000','0','true','true','true','true','dye_d2s2_c','dye'),
- ('4594','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','72000','0','true','true','true','true','dye_d2c2_c','dye'),
- ('4595','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','72000','0','true','true','true','true','dye_i2m2_c','dye'),
- ('4596','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','72000','0','true','true','true','true','dye_i2w2_c','dye'),
- ('4597','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','72000','0','true','true','true','true','dye_m2i2_c','dye'),
- ('4598','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','72000','0','true','true','true','true','dye_m2w2_c','dye'),
- ('4599','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','72000','0','true','true','true','true','dye_w2i2_c','dye'),
- ('4600','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','72000','0','true','true','true','true','dye_w2m2_c','dye'),
- ('4601','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','108000','0','true','true','true','true','dye_s3c3_c','dye'),
- ('4602','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','108000','0','true','true','true','true','dye_s3d3_c','dye'),
- ('4603','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','108000','0','true','true','true','true','dye_c3s3_c','dye'),
- ('4604','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','108000','0','true','true','true','true','dye_c3c3_c','dye'),
- ('4605','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','108000','0','true','true','true','true','dye_d3s3_c','dye'),
- ('4606','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','108000','0','true','true','true','true','dye_d3c3_c','dye'),
- ('4607','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','108000','0','true','true','true','true','dye_i3m3_c','dye'),
- ('4608','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','108000','0','true','true','true','true','dye_i3w3_c','dye'),
- ('4609','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','108000','0','true','true','true','true','dye_m3i3_c','dye'),
- ('4610','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','108000','0','true','true','true','true','dye_m3w3_c','dye'),
- ('4611','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','108000','0','true','true','true','true','dye_w3i3_c','dye'),
- ('4612','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','108000','0','true','true','true','true','dye_w3m3_c','dye'),
- ('4613','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','174000','0','true','true','true','true','dye_s4c4_c','dye'),
- ('4614','Greater Dye of STR ','false','dye','150','stackable','liquid','none','-1','174000','0','true','true','true','true','dye_s4d4_c','dye'),
- ('4615','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','174000','0','true','true','true','true','dye_c4s4_c','dye'),
- ('4616','Greater Dye of CON ','false','dye','150','stackable','liquid','none','-1','174000','0','true','true','true','true','dye_c4c4_c','dye'),
- ('4617','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','174000','0','true','true','true','true','dye_d4s4_c','dye'),
- ('4618','Greater Dye of DEX ','false','dye','150','stackable','liquid','none','-1','174000','0','true','true','true','true','dye_d4c4_c','dye'),
- ('4619','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','174000','0','true','true','true','true','dye_i4m4_c','dye'),
- ('4620','Greater Dye of INT ','false','dye','150','stackable','liquid','none','-1','174000','0','true','true','true','true','dye_i4w4_c','dye'),
- ('4621','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','174000','0','true','true','true','true','dye_m4i4_c','dye'),
- ('4622','Greater Dye of MEN ','false','dye','150','stackable','liquid','none','-1','174000','0','true','true','true','true','dye_m4w4_c','dye'),
- ('4623','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','174000','0','true','true','true','true','dye_w4i4_c','dye'),
- ('4624','Greater Dye of WIT ','false','dye','150','stackable','liquid','none','-1','174000','0','true','true','true','true','dye_w4m4_c','dye'),
- ('4625','Dice (Heart)','false','none','0','normal','steel','none','-1','500','0','true','false','true','true','dice_heart','none'),
- ('4626','Dice (Spade)','false','none','0','normal','steel','none','-1','500','0','true','false','true','true','dice_spade','none'),
- ('4627','Dice (Clover)','false','none','0','normal','steel','none','-1','500','0','true','false','true','true','dice_clover','none'),
- ('4628','Dice (Diamond)','false','none','0','normal','steel','none','-1','500','0','true','false','true','true','dice_diamond','none'),
- ('4629','Red Soul Crystal','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_0','scroll'),
- ('4630','Red Soul Crystal - Stage 1','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_1','scroll'),
- ('4631','Red Soul Crystal - Stage 2','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_2','scroll'),
- ('4632','Red Soul Crystal - Stage 3','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_3','scroll'),
- ('4633','Red Soul Crystal - Stage 4','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_4','scroll'),
- ('4634','Red Soul Crystal - Stage 5','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_5','scroll'),
- ('4635','Red Soul Crystal - Stage 6','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_6','scroll'),
- ('4636','Red Soul Crystal - Stage 7','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_7','scroll'),
- ('4637','Red Soul Crystal - Stage 8','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_8','scroll'),
- ('4638','Red Soul Crystal - Stage 9','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_9','scroll'),
- ('4639','Red Soul Crystal - Stage 10','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_10','scroll'),
- ('4640','Green Soul Crystal','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_0','scroll'),
- ('4641','Green Soul Crystal - Stage 1','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_1','scroll'),
- ('4642','Green Soul Crystal - Stage 2','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_2','scroll'),
- ('4643','Green Soul Crystal - Stage 3','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_3','scroll'),
- ('4644','Green Soul Crystal - Stage 4','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_4','scroll'),
- ('4645','Green Soul Crystal - Stage 5','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_5','scroll'),
- ('4646','Green Soul Crystal - Stage 6','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_6','scroll'),
- ('4647','Green Soul Crystal - Stage 7','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_7','scroll'),
- ('4648','Green Soul Crystal - Stage 8','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_8','scroll'),
- ('4649','Green Soul Crystal - Stage 9','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_9','scroll'),
- ('4650','Green Soul Crystal - Stage 10','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_10','scroll'),
- ('4651','Blue Soul Crystal','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_0','scroll'),
- ('4652','Blue Soul Crystal - Stage 1','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_1','scroll'),
- ('4653','Blue Soul Crystal - Stage 2','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_2','scroll'),
- ('4654','Blue Soul Crystal - Stage 3','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_3','scroll'),
- ('4655','Blue Soul Crystal - Stage 4','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_4','scroll'),
- ('4656','Blue Soul Crystal - Stage 5','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_5','scroll'),
- ('4657','Blue Soul Crystal - Stage 6','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_6','scroll'),
- ('4658','Blue Soul Crystal - Stage 7','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_7','scroll'),
- ('4659','Blue Soul Crystal - Stage 8','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_8','scroll'),
- ('4660','Blue Soul Crystal - Stage 9','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_9','scroll'),
- ('4661','Blue Soul Crystal - Stage 10','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_10','scroll'),
- ('4662','Broken Red Soul Crystal','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_x','scroll'),
- ('4663','Broken Green Soul Crystal','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_x','scroll'),
- ('4664','Broken Blue Soul Crystal','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_x','scroll'),
- ('4666','Reiria\'s Soul Orb','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_reirias_soulorb','none'),
- ('4667','Kernon\'s Infernium Scepter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_infernium_scepter_1','none'),
- ('4668','Golkonda\'s Infernium Scepter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_infernium_scepter_2','none'),
- ('4669','Hallate\'s Infernium Scepter','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_infernium_scepter_3','none'),
- ('4670','Maestro Reorin\'s Hammer','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_maestro_reorins_hammer','none'),
- ('4671','Maestro Reorin\'s Mold','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_maestro_reorins_mold','none'),
- ('4672','Infernium Varnish','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_infernium_varnish','none'),
- ('4673','Red Pipette Knife','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','q_red_pipette_knife','none'),
- ('4674','Medal of Honor','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','medal_of_honor','none'),
- ('4675','Medal of Friendship','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','medal_of_friendship','none'),
- ('4676','Medal of Victory','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','medal_of_victory','none'),
- ('4677','Potion of Critical Escape','false','potion','120','stackable','paper','none','-1','0','0','true','true','true','true','potion_of_critical_escape','potion'),
- ('4678','Decrease Haste Potion','false','potion','180','stackable','liquid','none','-1','0','0','true','true','true','true','decrease_hate_potion','potion'),
- ('4679','Bless of Eva','false','potion','180','stackable','liquid','none','-1','500','0','true','true','true','true','bless_of_eva','potion'),
- ('4680','Potion of Revenge','false','potion','180','stackable','liquid','none','-1','0','0','true','true','true','true','rsk.damage_shield_potion','potion'),
- ('4906','Spellbook: Solar Spark','false','spellbook','120','normal','paper','none','-1','900','0','true','true','true','true','sb_solar_spark1','none'),
- ('4907','Spellbook: Solar Flare','false','spellbook','120','normal','paper','none','-1','900','0','true','true','true','true','sb_solar_flare1','none'),
- ('4908','Spellbook: Shadow Spark','false','spellbook','120','normal','paper','none','-1','900','0','true','true','true','true','sb_shadow_spark1','none'),
- ('4909','Spellbook: Shadow Flare','false','spellbook','120','normal','paper','none','-1','900','0','true','true','true','true','sb_shadow_flare1','none'),
- ('4910','Spellbook: Vampiric Rage','false','spellbook','120','normal','paper','none','-1','1800','0','true','true','true','true','sb_vampiric_rage1','none'),
- ('4911','Spellbook: Curse Disease','false','spellbook','120','normal','paper','none','-1','6750','0','true','true','true','true','sb_curse_disease1','none'),
- ('4912','Spellbook: Benediction','false','spellbook','120','normal','paper','none','-1','8200','0','true','true','true','true','sb_benediction','none'),
- ('4913','Spellbook: Word of Fear','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_word_of_fear1','none'),
- ('4914','Spellbook: Serenade of Eva','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_serenade_of_eva1','none'),
- ('4915','Blueprint: Summon Wild Hog Cannon','false','spellbook','120','normal','paper','none','-1','6750','0','true','true','true','true','sb_summon_wild_hog_cannon','none'),
- ('4916','Spellbook: Energy Bolt','false','spellbook','120','normal','paper','none','-1','900','0','true','true','true','true','sb_energy_bolt1','none'),
- ('4917','Spellbook: Aura Bolt','false','spellbook','120','normal','paper','none','-1','900','0','true','true','true','true','sb_aura_bolt1','none'),
- ('4918','Spellbook: Summon Kai the Cat','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_summon_kai_the_cat1','none'),
- ('4919','Spellbook: Summon Merrow the Unicorn','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_summon_unicorn_merrow1','none'),
- ('4920','Spellbook: Summon Soulless','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_summon_soulless1','none'),
- ('4921','Blueprint: Summon Big Boom','false','spellbook','120','normal','paper','none','-1','6750','0','true','true','true','true','sb_summon_bigboom1','none'),
- ('4922','Spellbook: Summon Binding Cubic','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_summon_binding_cubic1','none'),
- ('4923','Spellbook: Summon Aqua Cubic','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_summon_aqua_cubic1','none'),
- ('4924','Spellbook: Summon Spark Cubic','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_summon_spark_cubic1','none'),
- ('4925','Amulet: Pa\'agrio\'s Haste','false','spellbook','120','normal','paper','none','-1','6750','0','true','true','true','true','sb_speed_of_paagrio1','none'),
- ('4926','Amulet: Soul Guard','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','sb_soul_guard1','none'),
- ('4927','Amulet: Chant of Revenge','false','spellbook','120','normal','paper','none','-1','7700','0','true','true','true','true','sb_chant_of_revenge1','none'),
- ('4928','Spellbook: Seed of Fire','false','spellbook','120','normal','paper','none','-1','7200','0','true','true','true','true','sb_seed_of_fire','none'),
- ('4929','Spellbook: Seed of Water','false','spellbook','120','normal','paper','none','-1','7200','0','true','true','true','true','sb_seed_of_water','none'),
- ('4930','Spellbook: Seed of Wind','false','spellbook','120','normal','paper','none','-1','7200','0','true','true','true','true','sb_seed_of_wind','none'),
- ('4931','Spellbook: Aura Symphony','false','spellbook','120','normal','paper','none','-1','7200','0','true','true','true','true','sb_aura_symphony1','none'),
- ('4932','Spellbook: Inferno','false','spellbook','120','normal','paper','none','-1','7200','0','true','true','true','true','sb_inferno1','none'),
- ('4933','Spellbook: Blizzard','false','spellbook','120','normal','paper','none','-1','7200','0','true','true','true','true','sb_blizzard1','none'),
- ('4934','Spellbook: Demon Wind','false','spellbook','120','normal','paper','none','-1','7200','0','true','true','true','true','sb_demon_wind1','none'),
- ('4935','Spellbook: Elemental Symphony','false','spellbook','120','normal','paper','none','-1','0','0','true','true','true','true','sb_elemental_symphony','none'),
- ('4936','Recipe: Avadon Shield (60%)','false','recipe','30','stackable','liquid','none','-1','10900','0','true','true','true','true','rp_avadon_shield_i','recipe'),
- ('4937','Recipe: Adamantite Earrings (70%)','false','recipe','30','stackable','liquid','none','-1','12120','0','true','true','true','true','rp_adamantite_earing_i','recipe'),
- ('4938','Recipe: Adamantite Ring (70%)','false','recipe','30','stackable','liquid','none','-1','8080','0','true','true','true','true','rp_adamantite_ring_i','recipe'),
- ('4939','Recipe: Adamantite Necklace (70%)','false','recipe','30','stackable','liquid','none','-1','16160','0','true','true','true','true','rp_adamantite_necklace_i','recipe'),
- ('4940','Recipe: Zubei\'s Breastplate (60%)','false','recipe','30','stackable','liquid','none','-1','41600','0','true','true','true','true','rp_shrnoen\'s_breastplate_i','recipe'),
- ('4941','Recipe: Zubei\'s Gaiters (60%)','false','recipe','30','stackable','liquid','none','-1','26000','0','true','true','true','true','rp_shrnoen\'s_gaiters_i','recipe'),
- ('4942','Recipe: Boots of Silence (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_silent_boots_i','recipe'),
- ('4943','Recipe: Guardian\'s Boots (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_guardian\'s_boots_i','recipe'),
- ('4944','Recipe: Avadon Breastplate (60%)','false','recipe','30','stackable','liquid','none','-1','41600','0','true','true','true','true','rp_avadon_breastplate_i','recipe'),
- ('4945','Recipe: Avadon Gaiters (60%)','false','recipe','30','stackable','liquid','none','-1','26000','0','true','true','true','true','rp_avadon_gaiters_i','recipe'),
- ('4946','Recipe: Zubei\'s Leather Shirt (60%)','false','recipe','30','stackable','liquid','none','-1','31200','0','true','true','true','true','rp_shrnoen\'s_leather_shirts_i','recipe'),
- ('4947','Recipe: Zubei\'s Leather Gaiters (60%)','false','recipe','30','stackable','liquid','none','-1','19460','0','true','true','true','true','rp_shrnoen\'s_leather_gaiters_i','recipe'),
- ('4948','Recipe: Avadon Leather Armor (60%)','false','recipe','30','stackable','liquid','none','-1','45600','0','true','true','true','true','rp_avadon_leather_mail_i','recipe'),
- ('4949','Recipe: Tunic of Zubei (60%)','false','recipe','30','stackable','liquid','none','-1','31200','0','true','true','true','true','rp_tunic_of_shrnoen_i','recipe'),
- ('4950','Recipe: Stockings of Zubei (60%)','false','recipe','30','stackable','liquid','none','-1','19460','0','true','true','true','true','rp_hose_of_shrnoen_i','recipe'),
- ('4951','Recipe: Avadon Robe (60%)','false','recipe','30','stackable','liquid','none','-1','45600','0','true','true','true','true','rp_avadon_robe_i','recipe'),
- ('4952','Recipe: Avadon Circlet (60%)','false','recipe','30','stackable','liquid','none','-1','15560','0','true','true','true','true','rp_avadon_circlet_i','recipe'),
- ('4953','Recipe: Avadon Gloves (60%)','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_avadon_gloves_i','recipe'),
- ('4954','Recipe: Chain Gloves of Silence (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_silent_chain_gloves_i','recipe'),
- ('4955','Recipe: Guardian\'s Gloves (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_guardian\'s_gloves_i','recipe'),
- ('4956','Recipe: Gloves of Blessing (60%)','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_gloves_of_blessing_i','recipe'),
- ('4957','Recipe: Boots of Blessing (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_boots_of_blessing_i','recipe'),
- ('4958','Recipe: Zubei\'s Boots (60%)','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_shrnoen\'s_boots_i','recipe'),
- ('4959','Recipe: Avadon Boots (60%)','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_avadon_boots_i','recipe'),
- ('4960','Recipe: Zubei\'s Gauntlets (60%)','false','recipe','30','stackable','liquid','none','-1','10380','0','true','true','true','true','rp_shrnoen\'s_gauntlet_i','recipe'),
- ('4961','Recipe: Zubei\'s Shield (60%)','false','recipe','30','stackable','liquid','none','-1','10900','0','true','true','true','true','rp_shrnoen\'s_shield_i','recipe'),
- ('4962','Recipe: Zubei\'s Helmet (60%)','false','recipe','30','stackable','liquid','none','-1','15560','0','true','true','true','true','rp_shrnoen\'s_helmet_i','recipe'),
- ('4963','Recipe: Great Sword (60%)','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_great_sword_i','recipe'),
- ('4964','Recipe: Heavy War Axe (60%)','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_heavy_war_axe_i','recipe'),
- ('4965','Recipe: Sprite\'s Staff (60%)','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_sprite\'s_staff_i','recipe'),
- ('4966','Recipe: Keshanberk (60%)','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_kshanberk_i','recipe'),
- ('4967','Recipe: Sword of Valhalla (60%)','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_sword_of_valhalla_i','recipe'),
- ('4968','Recipe: Kris (60%)','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_kris_i','recipe'),
- ('4969','Recipe: Hell Knife (60%)','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_hell_knife_i','recipe'),
- ('4970','Recipe: Arthro Nail (60%)','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_arthro_nail_i','recipe'),
- ('4971','Recipe: Dark Elven Long Bow (60%)','false','recipe','30','stackable','liquid','none','-1','173600','0','true','true','true','true','rp_dark_elven_long_bow_i','recipe'),
- ('4972','Recipe: Great Axe (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_great_axe_i','recipe'),
- ('4973','Recipe: Earring of Black Ore (70%)','false','recipe','30','stackable','liquid','none','-1','18480','0','true','true','true','true','rp_earing_of_black_ore_i','recipe'),
- ('4974','Recipe: Ring of Black Ore (70%)','false','recipe','30','stackable','liquid','none','-1','12320','0','true','true','true','true','rp_ring_of_black_ore_i','recipe'),
- ('4975','Recipe: Necklace of Black Ore (70%)','false','recipe','30','stackable','liquid','none','-1','24600','0','true','true','true','true','rp_necklace_of_black_ore_i','recipe'),
- ('4976','Recipe: Implosion Boots (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_implosion_boots_i','recipe'),
- ('4977','Recipe: Paradia Boots (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_paradia_boots_i','recipe'),
- ('4978','Recipe: Elemental Boots (60%)','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_elemental_boots_i','recipe'),
- ('4979','Recipe: Boots of Grace (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_boots_of_grace_i','recipe'),
- ('4980','Recipe: Doom Shield (60%)','false','recipe','30','stackable','liquid','none','-1','16900','0','true','true','true','true','rp_doom_shield_i','recipe'),
- ('4981','Recipe: Blue Wolf Breastplate (60%)','false','recipe','30','stackable','liquid','none','-1','64400','0','true','true','true','true','rp_blue_wolve\'s_breastplate_i','recipe'),
- ('4982','Recipe: Blue Wolf Gaiters (60%)','false','recipe','30','stackable','liquid','none','-1','40200','0','true','true','true','true','rp_blue_wolve\'s_gaiters_i','recipe'),
- ('4983','Recipe: Doom Plate Armor (60%)','false','recipe','30','stackable','liquid','none','-1','94200','0','true','true','true','true','rp_doom_plate_armor_i','recipe'),
- ('4984','Recipe: Blue Wolf Leather Armor (60%)','false','recipe','30','stackable','liquid','none','-1','70600','0','true','true','true','true','rp_blue_wolve\'s_leather_mail_i','recipe'),
- ('4985','Recipe: Leather Armor of Doom (60%)','false','recipe','30','stackable','liquid','none','-1','70600','0','true','true','true','true','rp_leather_mail_of_doom_i','recipe'),
- ('4986','Recipe: Blue Wolf Tunic (60%)','false','recipe','30','stackable','liquid','none','-1','48200','0','true','true','true','true','rp_blue_wolve\'s_tunic_i','recipe'),
- ('4987','Recipe: Tunic of Doom (60%)','false','recipe','30','stackable','liquid','none','-1','48200','0','true','true','true','true','rp_tunic_of_doom_i','recipe'),
- ('4988','Recipe: Blue Wolf Stockings (60%)','false','recipe','30','stackable','liquid','none','-1','30200','0','true','true','true','true','rp_blue_wolve\'s_hose_i','recipe'),
- ('4989','Recipe: Stockings of Doom (60%)','false','recipe','30','stackable','liquid','none','-1','30200','0','true','true','true','true','rp_hose_of_doom_i','recipe'),
- ('4990','Recipe: Blue Wolf Helmet (60%)','false','recipe','30','stackable','liquid','none','-1','24200','0','true','true','true','true','rp_blue_wolve\'s_helmet_i','recipe'),
- ('4991','Recipe: Doom Helmet (60%)','false','recipe','30','stackable','liquid','none','-1','24200','0','true','true','true','true','rp_doom_helmet_i','recipe'),
- ('4992','Recipe: Blue Wolf Boots (60%)','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_blue_wolve\'s_boots_i','recipe'),
- ('4993','Recipe: Doom Gloves (60%)','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_doom_gloves_i','recipe'),
- ('4994','Recipe: Elemental Gloves (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_elemental_gloves_i','recipe'),
- ('4995','Recipe: Gloves of Grace (60%)','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_gloves_of_grace_i','recipe'),
- ('4996','Recipe: Implosion Gauntlets (60%)','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_implosion_gauntlet_i','recipe'),
- ('4997','Recipe: Paradia Gloves (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_paradia_gloves_i','recipe'),
- ('4998','Recipe: Blue Wolf Gloves (60%)','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_blue_wolve\'s_gloves_i','recipe'),
- ('4999','Recipe: Doom Boots (60%)','false','recipe','30','stackable','liquid','none','-1','16080','0','true','true','true','true','rp_doom_boots_i','recipe');
-
-INSERT INTO `etcitem` (`item_id`,`name`,`crystallizable`,`item_type`,`weight`,`consume_type`,`material`,`crystal_type`,`duration`,`price`,`crystal_count`,`sellable`,`dropable`,`destroyable`,`tradeable`,`oldname`,`oldtype`) VALUES
- ('5000','Recipe: Sword of Damascus (60%)','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_sword_of_damascus_i','recipe'),
- ('5001','Recipe: Lance (60%)','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_lancia_i','recipe'),
- ('5002','Recipe: Deadman\'s Glory (60%)','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_deadman\'s_glory_i','recipe'),
- ('5003','Recipe: Art of Battle Axe (60%)','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_art_of_battle_axe_i','recipe'),
- ('5004','Recipe: Staff of Evil Spirits (60%)','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_staff_of_evil_sprit_i','recipe'),
- ('5005','Recipe: Demon Dagger (60%)','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_demon\'s_sword_i','recipe'),
- ('5006','Recipe: Bellion Cestus (60%)','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_bellion_cestus_i','recipe'),
- ('5007','Recipe: Bow of Peril (60%)','false','recipe','30','stackable','liquid','none','-1','262000','0','true','true','true','true','rp_hazard_bow_i','recipe'),
- ('5008','Recipe: Pata (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_pata_i','recipe'),
- ('5009','Trophy of Alliance','false','none','0','normal','steel','none','-1','0','0','false','false','true','false','trophy_of_alliance','none'),
- ('5010','Echo Crystal - Theme of Victory','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_victory','none'),
- ('5011','Star of Destiny','false','quest','0','stackable','steel','none','-1','0','0','false','false','false','false','q_star_of_destiny','none'),
- ('5012','Leikan\'s Letter','false','quest','0','stackable','paper','none','-1','0','0','true','true','true','true','leikans_letter','none'),
- ('5013','Spellbook: Elemental Assault','false','spellbook','120','normal','paper','none','-1','7200','0','true','true','true','true','sb_elemental_symphony_h1','none'),
- ('5014','Spellbook: Elemental Symphony','false','spellbook','120','normal','paper','none','-1','7200','0','true','true','true','true','sb_elemental_symphony_e1','none'),
- ('5015','Spellbook: Elemental Storm','false','spellbook','120','normal','paper','none','-1','7200','0','true','true','true','true','sb_elemental_symphony_d1','none'),
- ('5016','Seed: Dark Coda','false','seed',1,'stackable','paper','none',-1,5,0,'true','true','true','true','C5Item','none'),
- ('5017','Seed: Red Coda','false','seed',1,'stackable','paper','none',-1,5,0,'true','true','true','true','C5Item','none'),
- ('5018','Seed: Chilly Coda','false','seed',1,'stackable','paper','none',-1,5,0,'true','true','true','true','C5Item','none'),
- ('5019','Seed: Blue Coda','false','seed',1,'stackable','paper','none',-1,10,0,'true','true','true','true','C5Item','none'),
- ('5020','Seed: Golden Coda','false','seed',1,'stackable','paper','none',-1,20,0,'true','true','true','true','C5Item','none'),
- ('5021','Seed: Lute Coda','false','seed',1,'stackable','paper','none',-1,30,0,'true','true','true','true','C5Item','none'),
- ('5022','Seed: Desert Coda','false','seed',1,'stackable','paper','none',-1,20,0,'true','true','true','true','C5Item','none'),
- ('5023','Seed: Blue Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5024','Seed: Blue Coda','false','seed',1,'stackable','paper','none',-1,10,0,'true','true','true','true','C5Item','none'),
- ('5025','Seed: Golden Coda','false','seed',1,'stackable','paper','none',-1,20,0,'true','true','true','true','C5Item','none'),
- ('5026','Seed: Lute Coda','false','seed',1,'stackable','paper','none',-1,30,0,'true','true','true','true','C5Item','none'),
- ('5027','Seed: Desert Coda','false','seed',1,'stackable','paper','none',-1,20,0,'true','true','true','true','C5Item','none'),
- ('5028','Seed: Red Cobol','false','seed',1,'stackable','paper','none',-1,20,0,'true','true','true','true','C5Item','none'),
- ('5029','Seed: Chilly Cobol','false','seed',1,'stackable','paper','none',-1,25,0,'true','true','true','true','C5Item','none'),
- ('5030','Seed: Thorn Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5031','Seed: Golden Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5032','Seed: Great Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5033','Seed: Red Cobol','false','seed',1,'stackable','paper','none',-1,20,0,'true','true','true','true','C5Item','none'),
- ('5034','Seed: Chilly Cobol','false','seed',1,'stackable','paper','none',-1,25,0,'true','true','true','true','C5Item','none'),
- ('5035','Seed: Blue Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5036','Seed: Thorn Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5037','Seed: Golden Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5038','Seed: Great Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5039','Seed: Red Codran','false','seed',1,'stackable','paper','none',-1,40,0,'true','true','true','true','C5Item','none'),
- ('5040','Seed: Twin Codran','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5041','Seed: Desert Codran','false','seed',1,'stackable','paper','none',-1,100,0,'true','true','true','true','C5Item','none'),
- ('5042','Seed: Dark Coda','false','seed',1,'stackable','paper','none',-1,5,0,'true','true','true','true','C5Item','none'),
- ('5043','Seed: Red Coda','false','seed',1,'stackable','paper','none',-1,5,0,'true','true','true','true','C5Item','none'),
- ('5044','Seed: Blue Coda','false','seed',1,'stackable','paper','none',-1,10,0,'true','true','true','true','C5Item','none'),
- ('5045','Seed: Red Cobol','false','seed',1,'stackable','paper','none',-1,20,0,'true','true','true','true','C5Item','none'),
- ('5046','Seed: Chilly Cobol','false','seed',1,'stackable','paper','none',-1,25,0,'true','true','true','true','C5Item','none'),
- ('5047','Seed: Blue Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5048','Seed: Thorn Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5049','Seed: Sea Codran','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5050','Seed: Chilly Codran','false','seed',1,'stackable','paper','none',-1,40,0,'true','true','true','true','C5Item','none'),
- ('5051','Seed: Blue Codran','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5052','Seed: Twin Codran','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5053','Seed: Thorn Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5054','Seed: Golden Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5055','Seed: Great Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5056','Seed: Red Codran','false','seed',1,'stackable','paper','none',-1,40,0,'true','true','true','true','C5Item','none'),
- ('5057','Seed: Chilly Codran','false','seed',1,'stackable','paper','none',-1,40,0,'true','true','true','true','C5Item','none'),
- ('5058','Seed: Blue Codran','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5059','Seed: Twin Codran','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5060','Seed: Great Codran','false','seed',1,'stackable','paper','none',-1,75,0,'true','true','true','true','C5Item','none'),
- ('5061','Seed: Desert Codran','false','seed',1,'stackable','paper','none',-1,100,0,'true','true','true','true','C5Item','none'),
- ('5062','Trash','false','none','20','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','seed'),
- ('5063','Trash','false','none','20','stackable','paper','none','-1','0','0','true','true','true','true','__golden_cobol_seed_5','seed'),
- ('5064','Trash','false','none','20','stackable','paper','none','-1','0','0','true','true','true','true','__desert_codran_seed_5','seed'),
- ('5065','Chilly Coda','false','none',2,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5066','Burning Coda','false','none','2','stackable','paper','none','-1','0','0','true','true','true','true','burning_coda','seed'),
- ('5067','Blue Coda','false','none',2,'stackable','paper','none',-1,100,0,'true','true','true','true','C5Item','none'),
- ('5068','Red Coda','false','none',2,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5069','Golden Coda','false','none',2,'stackable','paper','none',-1,200,0,'true','true','true','true','C5Item','none'),
- ('5070','Desert Coda','false','none',2,'stackable','paper','none',-1,200,0,'true','true','true','true','C5Item','none'),
- ('5071','Lute Coda','false','none',2,'stackable','paper','none',-1,300,0,'true','true','true','true','C5Item','none'),
- ('5073','Dark Coda','false','none',2,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5074','Shining Coda','false','none','2','stackable','paper','none','-1','0','0','true','true','true','true','shining_coda','seed'),
- ('5075','Chilly Cobol','false','none',2,'stackable','paper','none',-1,250,0,'true','true','true','true','C5Item','none'),
- ('5076','Burning Cobol','false','none','2','stackable','paper','none','-1','0','0','true','true','true','true','burning_cobol','seed'),
- ('5077','Blue Cobol','false','none',2,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('5078','Red Cobol','false','none',2,'stackable','paper','none',-1,200,0,'true','true','true','true','C5Item','none'),
- ('5079','Golden Cobol','false','none',2,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('5080','Desert Cobol','false','none','2','stackable','paper','none','-1','0','0','true','true','true','true','desert_cobol','seed'),
- ('5081','Sea Cobol','false','none','2','stackable','paper','none','-1','0','0','true','true','true','true','sea_cobol','seed'),
- ('5082','Thorn Cobol','false','none',2,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('5083','Dapple Cobol','false','none','2','stackable','paper','none','-1','0','0','true','true','true','true','dapple_cobol','seed'),
- ('5084','Great Cobol','false','none',2,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('5085','Chilly Codran','false','none',2,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('5086','Burning Codran','false','none','2','stackable','paper','none','-1','0','0','true','true','true','true','burning_codran','seed'),
- ('5087','Blue Codran','false','none',2,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('5088','Red Codran','false','none',2,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('5089','Dapple Codran','false','none','2','stackable','paper','none','-1','0','0','true','true','true','true','dapple_codran','seed'),
- ('5090','Desert Codran','false','none',2,'stackable','paper','none',-1,1000,0,'true','true','true','true','C5Item','none'),
- ('5091','Sea Codran','false','none',2,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('5092','Twin Codran','false','none',2,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('5093','Thorn Codran','false','none','2','stackable','paper','none','-1','0','0','true','true','true','true','bur_codran','seed'),
- ('5094','Great Codran','false','none',2,'stackable','paper','none',-1,750,0,'true','true','true','true','C5Item','none'),
- ('5095','Mature Chilly Coda','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5096','Mature Burning Coda','false','none','1','stackable','paper','none','-1','0','0','true','true','true','true','mature_burning_coda','seed'),
- ('5097','Mature Blue Coda','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5098','Mature Red Coda','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5099','Mature Golden Coda','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5100','Mature Desert Coda','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5101','Mature Lute Coda','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5102','Mature Twin Coda','false','none','1','stackable','paper','none','-1','0','0','true','true','true','true','mature_twin_coda','seed'),
- ('5103','Mature Dark Coda','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5104','Mature Shining Coda','false','none','1','stackable','paper','none','-1','0','0','true','true','true','true','mature_shining_coda','seed'),
- ('5105','Mature Chilly Cobol','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5106','Mature Burning Cobol','false','none','1','stackable','paper','none','-1','0','0','true','true','true','true','mature_burning_cobol','seed'),
- ('5107','Mature Blue Cobol','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5108','Mature Red Cobol','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5109','Mature Golden Cobol','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5110','Mature Desert Cobol','false','none','1','stackable','paper','none','-1','0','0','true','true','true','true','mature_desert_cobol','seed'),
- ('5111','Mature Sea Cobol','false','none','1','stackable','paper','none','-1','0','0','true','true','true','true','mature_sea_cobol','seed'),
- ('5112','Mature Thorn Cobol','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5113','Mature Dapple Cobol','false','none','1','stackable','paper','none','-1','0','0','true','true','true','true','mature_dapple_cobol','seed'),
- ('5114','Mature Great Cobol','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5115','Mature Chilly Codran','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5116','Mature Burning Codran','false','none','1','stackable','paper','none','-1','0','0','true','true','true','true','mature_burning_codran','seed'),
- ('5117','Mature Blue Codran','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5118','Mature Red Codran','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5119','Mature Dapple Codran','false','none','1','stackable','paper','none','-1','0','0','true','true','true','true','mature_dapple_codran','seed'),
- ('5120','Mature Desert Codran','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5121','Mature Sea Codran','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5122','Mature Twin Codran','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5123','Mature Thorn Codran','false','none','1','stackable','paper','none','-1','0','0','true','true','true','true','mature_bur_codran','seed'),
- ('5124','Mature Great Codran','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5125','Harvester','false','harvest','20','normal','steel','none','-1','500','0','true','true','true','true','reaping_machine','harvest'),
- ('5126','Dualsword Craft Stamp','false','none','20','stackable','paper','none','-1','10000','0','true','true','true','true','dualsword_craft_stamp','none'),
- ('5134','Compressed Package of Soulshots: No Grade','false','shot','600','normal','steel','none','-1','2300','0','true','true','true','true','comp_soulshot_none','none'),
- ('5135','Compressed Package of Soulshots: D-grade','false','shot','450','normal','steel','none','-1','3300','0','true','true','true','true','comp_soulshot_d','none'),
- ('5136','Compressed Package of Soulshots: C-grade','false','shot','450','normal','steel','none','-1','4950','0','true','true','true','true','comp_soulshot_c','none'),
- ('5137','Compressed Package of Soulshots: B-grade','false','shot','300','normal','steel','none','-1','16500','0','true','true','true','true','comp_soulshot_b','none'),
- ('5138','Compressed Package of Soulshots: A-grade','false','shot','300','normal','steel','none','-1','26400','0','true','true','true','true','comp_soulshot_a','none'),
- ('5139','Compressed Package of Soulshots: S-grade','false','shot','300','normal','steel','none','-1','33000','0','true','true','true','true','comp_soulshot_s','none'),
- ('5140','Compressed Package of Spiritshots: No Grade','false','shot','750','normal','steel','none','-1','4950','0','true','true','true','true','comp_spiritshot_none','none'),
- ('5141','Compressed Package of Spiritshots: D-grade','false','shot','750','normal','steel','none','-1','5940','0','true','true','true','true','comp_spiritshot_d','none'),
- ('5142','Compressed Package of Spiritshots: C-grade','false','shot','450','normal','steel','none','-1','11550','0','true','true','true','true','comp_spiritshot_c','none'),
- ('5143','Compressed Package of Spiritshots: B-grade','false','shot','450','normal','steel','none','-1','33000','0','true','true','true','true','comp_spiritshot_b','none'),
- ('5144','Compressed Package of Spiritshots: A-grade','false','shot','300','normal','steel','none','-1','39600','0','true','true','true','true','comp_spiritshot_a','none'),
- ('5145','Compressed Package of Spiritshots: S-grade','false','shot','300','normal','steel','none','-1','49500','0','true','true','true','true','comp_spiritshot_s','none'),
- ('5146','Compressed Package of Blessed Spiritshots: No Grade','false','shot','750','normal','steel','none','-1','11550','0','true','true','true','true','comp_bspiritshot_none','none'),
- ('5147','Compressed Package of Blessed Spiritshots: D-grade','false','shot','750','normal','steel','none','-1','14850','0','true','true','true','true','comp_bspiritshot_d','none'),
- ('5148','Compressed Package of Blessed Spiritshots: C-grade','false','shot','450','normal','steel','none','-1','29700','0','true','true','true','true','comp_bspiritshot_c','none'),
- ('5149','Compressed Package of Blessed Spiritshots: B-grade','false','shot','450','normal','steel','none','-1','80850','0','true','true','true','true','comp_bspiritshot_b','none'),
- ('5150','Compressed Package of Blessed Spiritshots: A-grade','false','shot','300','normal','steel','none','-1','95700','0','true','true','true','true','comp_bspiritshot_a','none'),
- ('5151','Compressed Package of Blessed Spiritshots: S-grade','false','shot','300','normal','steel','none','-1','115500','0','true','true','true','true','comp_bspiritshot_s','none'),
- ('5152','Magic Compressor','false','none','10','normal','steel','none','-1','0','0','true','true','true','true','magic_compressor','none'),
- ('5153','Recipe: Soulshot (D) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','5000','0','true','true','true','true','rp_comp_soulshot_d','recipe'),
- ('5154','Recipe: Soulshot (C) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','25000','0','true','true','true','true','rp_comp_soulshot_c','recipe'),
- ('5155','Recipe: Soulshot (B) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','100000','0','true','true','true','true','rp_comp_soulshot_b','recipe'),
- ('5156','Recipe: Soulshot (A) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','150000','0','true','true','true','true','rp_comp_soulshot_a','recipe'),
- ('5157','Recipe: Soulshot (S) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','250000','0','true','true','true','true','rp_comp_soulshot_s','recipe'),
- ('5158','Recipe: Spiritshot (D) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','5000','0','true','true','true','true','rp_comp_spiritshot_d','recipe'),
- ('5159','Recipe: Spiritshot (C) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','25000','0','true','true','true','true','rp_comp_spiritshot_c','recipe'),
- ('5160','Recipe: Spiritshot (B) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','100000','0','true','true','true','true','rp_comp_spiritshot_b','recipe'),
- ('5161','Recipe: Spiritshot (A) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','150000','0','true','true','true','true','rp_comp_spiritshot_a','recipe'),
- ('5162','Recipe: Spiritshot (S) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','250000','0','true','true','true','true','rp_comp_spiritshot_s','recipe'),
- ('5163','Recipe: Blessed Spiritshot (D) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','30000','0','true','true','true','true','rp_comp_bspiritshot_d','recipe'),
- ('5164','Recipe: Blessed Spiritshot (C) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','60000','0','true','true','true','true','rp_comp_bspiritshot_c','recipe'),
- ('5165','Recipe: Blessed Spiritshot (B) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','100000','0','true','true','true','true','rp_comp_bspiritshot_b','recipe'),
- ('5166','Recipe: Blessed Spiritshot (A) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','180000','0','true','true','true','true','rp_comp_bspiritshot_a','recipe'),
- ('5167','Recipe: Blessed Spiritshot (S) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','290000','0','true','true','true','true','rp_comp_bspiritshot_s','recipe'),
- ('5168','Food for Strider','false','none','40','stackable','liquid','none','-1','200','0','true','true','true','true','food_for_strider','none'),
- ('5169','Deluxe Food for Strider','false','none','30','stackable','liquid','none','-1','300','0','true','true','true','true','deluxe_food_for_strider','none'),
- ('5192','Rope of Magic: D-Grade','false','none','2','stackable','paper','none','-1','100','0','true','true','true','true','rope_of_magic_d','none'),
- ('5193','Rope of Magic: C-Grade','false','none','2','stackable','paper','none','-1','150','0','true','true','true','true','rope_of_magic_c','none'),
- ('5194','Rope of Magic: B-Grade','false','none','2','stackable','paper','none','-1','250','0','true','true','true','true','rope_of_magic_b','none'),
- ('5195','Rope of Magic: A-Grade','false','none','2','stackable','paper','none','-1','400','0','true','true','true','true','rope_of_magic_a','none'),
- ('5196','Rope of Magic: S Grade','false','none','2','stackable','paper','none','-1','1500','0','true','true','true','true','rope_of_magic_s','none'),
- ('5197','Chest Key - Grade 8','false','none','10','stackable','liquid','none','-1','1200','0','true','true','true','true','key_of_box0','none'),
- ('5198','Chest Key - Grade 7','false','none','10','stackable','liquid','none','-1','1200','0','true','true','true','true','key_of_box1','none'),
- ('5199','Chest Key - Grade 6','false','none','10','stackable','liquid','none','-1','1200','0','true','true','true','true','key_of_box2','none'),
- ('5200','Chest Key - Grade 5','false','none','10','stackable','liquid','none','-1','1200','0','true','true','true','true','key_of_box3','none'),
- ('5201','Chest Key - Grade 4','false','none','10','stackable','liquid','none','-1','1200','0','true','true','true','true','key_of_box4','none'),
- ('5202','Chest Key - Grade 3','false','none','10','stackable','liquid','none','-1','1200','0','true','true','true','true','key_of_box5','none'),
- ('5203','Chest Key - Grade 2','false','none','10','stackable','liquid','none','-1','1200','0','true','true','true','true','key_of_box6','none'),
- ('5204','Chest Key - Grade 1','false','none','10','stackable','liquid','none','-1','1200','0','true','true','true','true','key_of_box7','none'),
- ('5205','Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','mticket_innadrile_sword_fix','castle_guard'),
- ('5206','Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','mticket_innadrile_pole_fix','castle_guard'),
- ('5207','Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','mticket_innadrile_bow_fix','castle_guard'),
- ('5208','Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','mticket_innadrile_cleric_fix','castle_guard'),
- ('5209','Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','mticket_innadrile_wizard_fix','castle_guard'),
- ('5210','Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','mticket_innadrile_sword_move','castle_guard'),
- ('5211','Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','mticket_innadrile_pole_move','castle_guard'),
- ('5212','Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','mticket_innadrile_bow_move','castle_guard'),
- ('5213','Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','mticket_innadrile_cleric_move','castle_guard'),
- ('5214','Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','mticket_innadrile_wizard_move','castle_guard'),
- ('5215','Mercenary Posting Ticket (Teleporter1)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','mticket_innadrile_teleporter1','castle_guard'),
- ('5218','Mercenary Posting Ticket (Teleporter2)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','mticket_innadrile_teleporter2','castle_guard'),
- ('5219','Mercenary Posting Ticket (Teleporter3)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','mticket_innadrile_teleporter3','castle_guard'),
- ('5220','Metal Hardener','false','material','2','stackable','liquid','none','-1','5000','0','true','true','true','true','metal_hardener','material'),
- ('5221','Seed: Chilly Cobol','false','seed',1,'stackable','paper','none',-1,25,0,'true','true','true','true','C5Item','none'),
- ('5222','Seed: Blue Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5223','Seed: Thorn Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5224','Seed: Golden Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5225','Seed: Great Cobol','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5226','Seed: Red Codran','false','seed',1,'stackable','paper','none',-1,40,0,'true','true','true','true','C5Item','none'),
- ('5227','Seed: Sea Codran','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5228','Trash','false','none','20','stackable','paper','none','-1','0','0','true','true','true','true','__sea_codran_seed_6','seed'),
- ('5229','Trash','false','none','20','stackable','paper','none','-1','0','0','true','true','true','true','__desert_codran_seed_6','seed'),
- ('5230','Recipe: Mithril Arrow (100%)','false','recipe','30','stackable','paper','none','-1','80000','0','true','true','true','true','rp_mithril_arrow','recipe'),
- ('5231','Recipe: Metal Hardener (100%)','false','recipe','30','stackable','paper','none','-1','2800','0','true','true','true','true','rp_metal_hardener','recipe'),
- ('5232','White Fabric','false','quest','0','stackable','cloth','none','-1','0','0','false','false','true','false','q0348_white_fabric_a','none'),
- ('5234','Mystery Potion','false','potion','50','stackable','liquid','none','-1','12000','0','true','true','true','true','Mystery Potion','potion'),
- ('5235','Facelifting Potion - A','false','potion','50','stackable','liquid','none','-1','24000','0','true','true','true','true','Facelifting Potion - A','potion'),
- ('5236','Facelifting Potion - B','false','potion','50','stackable','liquid','none','-1','24000','0','true','true','true','true','Facelifting Potion - B','potion'),
- ('5237','Facelifting Potion - C','false','potion','50','stackable','liquid','none','-1','24000','0','true','true','true','true','Facelifting Potion - C','potion'),
- ('5238','Dye Potion - A','false','potion','50','stackable','liquid','none','-1','24000','0','true','true','true','true','Dye Potion - A','potion'),
- ('5239','Dye Potion - B','false','potion','50','stackable','liquid','none','-1','24000','0','true','true','true','true','Dye Potion - B','potion'),
- ('5240','Dye Potion - C','false','potion','50','stackable','liquid','none','-1','24000','0','true','true','true','true','Dye Potion - C','potion'),
- ('5241','Dye Potion - D','false','potion','50','stackable','liquid','none','-1','24000','0','true','true','true','true','Dye Potion - D','potion'),
- ('5242','Hair Style Change Potion - A','false','potion','50','stackable','liquid','none','-1','24000','0','true','true','true','true','Hair Style Change Potion - A','potion'),
- ('5243','Hair Style Change Potion - B','false','potion','50','stackable','liquid','none','-1','24000','0','true','true','true','true','Hair Style Change Potion - B','potion'),
- ('5244','Hair Style Change Potion - C','false','potion','50','stackable','liquid','none','-1','24000','0','true','true','true','true','Hair Style Change Potion - C','potion'),
- ('5245','Hair Style Change Potion - D','false','potion','50','stackable','liquid','none','-1','24000','0','true','true','true','true','Hair Style Change Potion - D','potion'),
- ('5246','Hair Style Change Potion - E','false','potion','50','stackable','liquid','none','-1','24000','0','true','true','true','true','Hair Style Change Potion - E','potion'),
- ('5247','Hair Style Change Potion - F','false','potion','50','stackable','liquid','none','-1','24000','0','true','true','true','true','Hair Style Change Potion - F','potion'),
- ('5248','Hair Style Change Potion - G','false','potion','50','stackable','liquid','none','-1','24000','0','true','true','true','true','Hair Style Change Potion - G','potion'),
- ('5249','Commemorative Item: First Anniversary of Lineage II Service','false','none','0','normal','cloth','none','-1','0','0','false','false','false','false','event_the_first_anniversary','none'),
- ('5250','Greater Compressed Package of Soulshots: No-grade','false','shot','600','normal','steel','none','-1','7700','0','true','true','true','true','adv_comp_soulshot_none','none'),
- ('5251','Greater Compressed Package of Soulshots: D-grade','false','shot','450','normal','steel','none','-1','11000','0','true','true','true','true','adv_comp_soulshot_d','none'),
- ('5252','Greater Compressed Package of Soulshots: C-grade','false','shot','450','normal','steel','none','-1','16500','0','true','true','true','true','adv_comp_soulshot_c','none'),
- ('5253','Greater Compressed Package of Soulshots: B-grade','false','shot','300','normal','steel','none','-1','55000','0','true','true','true','true','adv_comp_soulshot_b','none'),
- ('5254','Greater Compressed Package of Soulshots: A-grade','false','shot','300','normal','steel','none','-1','88000','0','true','true','true','true','adv_comp_soulshot_a','none'),
- ('5255','Greater Compressed Package of Soulshots: S-grade','false','shot','300','normal','steel','none','-1','120000','0','true','true','true','true','adv_comp_soulshot_s','none'),
- ('5256','Greater Compressed Package of Spiritshots: No-grade','false','shot','750','normal','steel','none','-1','16500','0','true','true','true','true','adv_comp_spiritshot_none','none'),
- ('5257','Greater Compressed Package of Spiritshots: D-grade','false','shot','750','normal','steel','none','-1','19800','0','true','true','true','true','adv_comp_spiritshot_d','none'),
- ('5258','Greater Compressed Package of Spiritshots: C-grade','false','shot','450','normal','steel','none','-1','38500','0','true','true','true','true','adv_comp_spiritshot_c','none'),
- ('5259','Greater Compressed Package of Spiritshots: B-grade','false','shot','450','normal','steel','none','-1','110000','0','true','true','true','true','adv_comp_spiritshot_b','none'),
- ('5260','Greater Compressed Package of Spiritshots: A-grade','false','shot','300','normal','steel','none','-1','132000','0','true','true','true','true','adv_comp_spiritshot_a','none'),
- ('5261','Greater Compressed Package of Spiritshots: S-grade','false','shot','300','normal','steel','none','-1','180000','0','true','true','true','true','adv_comp_spiritshot_s','none'),
- ('5262','Greater Compressed Package of Blessed Spiritshots: No-grade','false','shot','750','normal','steel','none','-1','38500','0','true','true','true','true','adv_comp_bspiritshot_none','none'),
- ('5263','Greater Compressed Package of Blessed Spiritshots: D-grade','false','shot','750','normal','steel','none','-1','49500','0','true','true','true','true','adv_comp_bspiritshot_d','none'),
- ('5264','Greater Compressed Package of Blessed Spiritshots: C-grade','false','shot','450','normal','steel','none','-1','99000','0','true','true','true','true','adv_comp_bspiritshot_c','none'),
- ('5265','Greater Compressed Package of Blessed Spiritshots: B-grade','false','shot','450','normal','steel','none','-1','269500','0','true','true','true','true','adv_comp_bspiritshot_b','none'),
- ('5266','Greater Compressed Package of Blessed Spiritshots: A-grade','false','shot','300','normal','steel','none','-1','319000','0','true','true','true','true','adv_comp_bspiritshot_a','none'),
- ('5267','Greater Compressed Package of Blessed Spiritshots: S-grade','false','shot','300','normal','steel','none','-1','419000','0','true','true','true','true','adv_comp_bspiritshot_s','none'),
- ('5268','Recipe: Greater Soulshot (D) Compressed Package (100%)','false','recipe','30','stackable','liquid','none','-1','5000','0','true','true','true','true','rp_adv_comp_soulshot_d','recipe'),
- ('5269','Recipe: Greater Soulshot (C) Compressed Package(100%)','false','recipe','30','stackable','liquid','none','-1','60000','0','true','true','true','true','rp_adv_comp_soulshot_c','recipe'),
- ('5270','Recipe: Greater Soulshot (B) Compressed Package(100%)','false','recipe','30','stackable','liquid','none','-1','100000','0','true','true','true','true','rp_adv_comp_soulshot_b','recipe'),
- ('5271','Recipe: Greater Soulshot (A) Compressed Package(100%)','false','recipe','30','stackable','liquid','none','-1','150000','0','true','true','true','true','rp_adv_comp_soulshot_a','recipe'),
- ('5272','Recipe: Greater Soulshot (S) Compressed Package(100%)','false','recipe','30','stackable','liquid','none','-1','250000','0','true','true','true','true','rp_adv_comp_soulshot_s','recipe'),
- ('5273','Recipe: Greater Spiritshot (D) Compressed Package(100%)','false','recipe','30','stackable','liquid','none','-1','5000','0','true','true','true','true','rp_adv_comp_spiritshot_d','recipe'),
- ('5274','Recipe: Greater Spiritshot (C) Compressed Package(100%)','false','recipe','30','stackable','liquid','none','-1','60000','0','true','true','true','true','rp_adv_comp_spiritshot_c','recipe'),
- ('5275','Recipe: Greater Spiritshot (B) Compressed Package(100%)','false','recipe','30','stackable','liquid','none','-1','100000','0','true','true','true','true','rp_adv_comp_spiritshot_b','recipe'),
- ('5276','Recipe: Greater Spiritshot (A) Compressed Package(100%)','false','recipe','30','stackable','liquid','none','-1','150000','0','true','true','true','true','rp_adv_comp_spiritshot_a','recipe'),
- ('5277','Recipe: Greater Spiritshot (S) Compressed Package(100%)','false','recipe','30','stackable','liquid','none','-1','250000','0','true','true','true','true','rp_adv_comp_spiritshot_s','recipe'),
- ('5278','Recipe: Greater Blessed Spiritshot (D) Compressed Package(100%)','false','recipe','30','stackable','liquid','none','-1','8000','0','true','true','true','true','rp_adv_comp_bspiritshot_d','recipe'),
- ('5279','Recipe: Greater Blessed Spiritshot (C) Compressed Package(100%)','false','recipe','30','stackable','liquid','none','-1','80000','0','true','true','true','true','rp_adv_comp_bspiritshot_c','recipe'),
- ('5280','Recipe: Greater Blessed Spiritshot (B) Compressed Package(100%)','false','recipe','30','stackable','liquid','none','-1','130000','0','true','true','true','true','rp_adv_comp_bspiritshot_b','recipe'),
- ('5281','Recipe: Greater Blessed Spiritshot (A) Compressed Package(100%)','false','recipe','30','stackable','liquid','none','-1','170000','0','true','true','true','true','rp_adv_comp_bspiritshot_a','recipe'),
- ('5282','Recipe: Greater Blessed Spiritshot (S) Compressed Package(100%)','false','recipe','30','stackable','liquid','none','-1','285000','0','true','true','true','true','rp_adv_comp_bspiritshot_s','recipe'),
- ('5283','Rice Cake','false','potion','0','stackable','liquid','none','-1','0','0','true','true','true','true','cake_mochi','potion'),
- ('5332','Recipe: Sealed Dark Crystal Leather Armor(60%)','false','recipe','30','stackable','liquid','none','-1','69400','0','true','true','true','true','rp_sealed_dark_crystal_leather_mail_i','recipe'),
- ('5333','Recipe: Sealed Dark Crystal Leather Armor(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dark_crystal_leather_mail','recipe'),
- ('5334','Recipe: Sealed Tallum Leather Armor(60%)','false','recipe','30','stackable','liquid','none','-1','101600','0','true','true','true','true','rp_sealed_tallum_leather_mail_i','recipe'),
- ('5335','Recipe: Sealed Tallum Leather Armor(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_tallum_leather_mail','recipe'),
- ('5336','Recipe: Sealed Leather Armor of Nightmare(60%)','false','recipe','30','stackable','liquid','none','-1','154600','0','true','true','true','true','rp_sealed_leather_mail_of_nightmare_i','recipe'),
- ('5337','Recipe: Sealed Leather Armor of Nightmare(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_leather_mail_of_nightmare','recipe'),
- ('5338','Recipe: Sealed Majestic Leather Armor(60%)','false','recipe','30','stackable','liquid','none','-1','154600','0','true','true','true','true','rp_sealed_majestic_leather_mail_i','recipe'),
- ('5339','Recipe: Sealed Majestic Leather Armor(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_majestic_leather_mail','recipe'),
- ('5340','Recipe: Sealed Dark Crystal Leggings(60%)','false','recipe','30','stackable','liquid','none','-1','43400','0','true','true','true','true','rp_sealed_legging_of_dark_crystal_i','recipe'),
- ('5341','Recipe: Sealed Dark Crystal Leggings(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_legging_of_dark_crystal','recipe'),
- ('5342','Recipe: Phoenix Earring(70%)','false','recipe','20','stackable','paper','none','-1','0','0','true','true','true','true','rp_phoenix\'s_earing_i','recipe'),
- ('5343','Recipe: Phoenix Earring(100%)','false','recipe','20','stackable','paper','none','-1','0','0','true','true','true','true','rp_phoenix\'s_earing','recipe'),
- ('5344','Recipe: Inferno Earring(70%)','false','recipe','20','stackable','paper','none','-1','0','0','true','true','true','true','rp_majestic_earing_i','recipe'),
- ('5345','Recipe: Inferno Earring(70%)','false','recipe','20','stackable','paper','none','-1','0','0','true','true','true','true','rp_majestic_earing','recipe'),
- ('5346','Recipe: Sealed Tallum Tunic(60%)','false','recipe','30','stackable','liquid','none','-1','69400','0','true','true','true','true','rp_sealed_tallum_tunic_i','recipe'),
- ('5347','Recipe: Sealed Tallum Tunic(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_tallum_tunic','recipe'),
- ('5348','Recipe: Sealed Dark Crystal Robe(60%)','false','recipe','30','stackable','liquid','none','-1','101600','0','true','true','true','true','rp_sealed_dark_crystal_robe_i','recipe'),
- ('5349','Recipe: Sealed Dark Crystal Robe(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dark_crystal_robe','recipe'),
- ('5350','Recipe: Sealed Nightmare Robe(60%)','false','recipe','30','stackable','liquid','none','-1','154600','0','true','true','true','true','rp_sealed_robe_of_nightmare_i','recipe'),
- ('5351','Recipe: Sealed Nightmare Robe(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_robe_of_nightmare','recipe'),
- ('5352','Recipe: Sealed Majestic Robe(60%)','false','recipe','30','stackable','liquid','none','-1','154600','0','true','true','true','true','rp_sealed_majestic_robe_i','recipe'),
- ('5353','Recipe: Sealed Majestic Robe(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_majestic_robe','recipe'),
- ('5354','Recipe: Sealed Tallum Stockings(60%)','false','recipe','30','stackable','liquid','none','-1','43400','0','true','true','true','true','rp_sealed_tallum_hose_i','recipe'),
- ('5355','Recipe: Sealed Tallum Stockings(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_tallum_hose','recipe'),
- ('5356','Recipe: Phoenix Necklace(70%)','false','recipe','20','stackable','paper','none','-1','0','0','true','true','true','true','rp_phoenix\'s_necklace_i','recipe'),
- ('5357','Recipe: Phoenix Necklace(100%)','false','recipe','20','stackable','paper','none','-1','0','0','true','true','true','true','rp_phoenix\'s_necklace','recipe'),
- ('5358','Recipe: Inferno Necklace(70%)','false','recipe','20','stackable','paper','none','-1','0','0','true','true','true','true','rp_majestic_necklace_i','recipe'),
- ('5359','Recipe: Inferno Necklace(100%)','false','recipe','20','stackable','paper','none','-1','0','0','true','true','true','true','rp_majestic_necklace','recipe'),
- ('5360','Recipe: Phoenix Ring(70%)','false','recipe','20','stackable','paper','none','-1','0','0','true','true','true','true','rp_phoenix\'s_ring_i','recipe'),
- ('5361','Recipe: Phoenix Ring(100%)','false','recipe','20','stackable','paper','none','-1','0','0','true','true','true','true','rp_phoenix\'s_ring','recipe'),
- ('5362','Recipe: Inferno Ring(70%)','false','recipe','20','stackable','paper','none','-1','0','0','true','true','true','true','rp_majestic_ring_i','recipe'),
- ('5363','Recipe: Inferno Ring(100%)','false','recipe','20','stackable','paper','none','-1','0','0','true','true','true','true','rp_majestic_ring','recipe'),
- ('5364','Recipe: Sealed Dark Crystal Shield(60%)','false','recipe','30','stackable','liquid','none','-1','24400','0','true','true','true','true','rp_sealed_dark_crystal_shield_i','recipe'),
- ('5365','Recipe: Sealed Dark Crystal Shield(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dark_crystal_shield','recipe'),
- ('5366','Recipe: Sealed Shield of Nightmare(60%)','false','recipe','30','stackable','liquid','none','-1','37000','0','true','true','true','true','rp_sealed_shield_of_nightmare_i','recipe'),
- ('5367','Recipe: Sealed Shield of Nightmare(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_shield_of_nightmare','recipe'),
- ('5368','Recipe: Sealed Dark Crystal Boots(60%)','false','recipe','30','stackable','liquid','none','-1','23200','0','true','true','true','true','rp_sealed_dark_crystal_boots_i','recipe'),
- ('5369','Recipe: Sealed Dark Crystal Boots(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dark_crystal_boots','recipe'),
- ('5370','Recipe: Sealed Tallum Boots(60%)','false','recipe','30','stackable','liquid','none','-1','23200','0','true','true','true','true','rp_sealed_tallum_boots_i','recipe'),
- ('5371','Recipe: Sealed Tallum Boots(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_tallum_boots','recipe'),
- ('5372','Recipe: Sealed Boots of The Underworld(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_boots_of_underworld_i','recipe'),
- ('5373','Recipe: Sealed Boots of The Underworld(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_boots_of_underworld','recipe'),
- ('5374','Recipe: Sealed Gust Boots(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_gust_boots_i','recipe'),
- ('5375','Recipe: Sealed Gust Boots(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_gust_boots','recipe'),
- ('5376','Recipe: Sealed Red Flame Boots(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_red_flame_boots_i','recipe'),
- ('5377','Recipe: Sealed Red Flame Boots(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_red_flame_boots','recipe'),
- ('5378','Recipe: Sealed Phoenix Boots(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_phoenix\'s_boots_i','recipe'),
- ('5379','Recipe: Sealed Phoenix Boots(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_phoenix\'s_boots','recipe'),
- ('5380','Recipe: Sealed Boots of Nightmare(60%)','false','recipe','30','stackable','liquid','none','-1','35200','0','true','true','true','true','rp_sealed_boots_of_nightmare_i','recipe'),
- ('5381','Recipe: Sealed Boots of Nightmare(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_boots_of_nightmare','recipe'),
- ('5382','Recipe: Sealed Majestic Boots(60%)','false','recipe','30','stackable','liquid','none','-1','35200','0','true','true','true','true','rp_sealed_magestic_boots_i','recipe'),
- ('5383','Recipe: Sealed Majestic Boots(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_magestic_boots','recipe'),
- ('5384','Recipe: Sealed Dark Legion Boots(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dark_legion_boots_i','recipe'),
- ('5385','Recipe: Sealed Dark Legion Boots(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dark_legion_boots','recipe'),
- ('5386','Recipe: Sealed Boots of Phantom(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_boots_of_phantom_i','recipe'),
- ('5387','Recipe: Sealed Boots of Phantom(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_boots_of_phantom','recipe'),
- ('5388','Recipe: Sealed Cerberus Boots(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_cerberus\'s_boots_i','recipe'),
- ('5389','Recipe: Sealed Cerberus Boots(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_cerberus\'s_boots','recipe'),
- ('5390','Recipe: Sealed Dasparion\'s Boots Boots(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dasparion\'s_boots_i','recipe'),
- ('5391','Recipe: Sealed Dasparion\'s Boots Boots(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dasparion\'s_boots','recipe'),
- ('5392','Recipe: Sealed Dark Crystal Gloves(60%)','false','recipe','30','stackable','liquid','none','-1','23200','0','true','true','true','true','rp_sealed_dark_crystal_gloves_i','recipe'),
- ('5393','Recipe: Sealed Dark Crystal Gloves(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dark_crystal_gloves','recipe'),
- ('5394','Recipe: Sealed Tallum Gloves(60%)','false','recipe','30','stackable','liquid','none','-1','23200','0','true','true','true','true','rp_sealed_tallum_gloves_i','recipe'),
- ('5395','Recipe: Sealed Tallum Gloves(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_tallum_gloves','recipe'),
- ('5396','Recipe: Sealed Gloves of The Underworld(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_gloves_of_underworld_i','recipe'),
- ('5397','Recipe: Sealed Gloves of The Underworld(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_gloves_of_underworld','recipe'),
- ('5398','Recipe: Sealed Gust Bracer(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_gust_bracer_i','recipe'),
- ('5399','Recipe: Sealed Gust Bracer(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_gust_bracer','recipe'),
- ('5400','Recipe: Sealed Gloves of Black Ore(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_gloves_of_black_ore_i','recipe'),
- ('5401','Recipe: Sealed Gloves of Black Ore(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_gloves_of_black_ore','recipe'),
- ('5402','Recipe: Sealed Phoenix Gloves(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_phoenix\'s_gloves_i','recipe'),
- ('5403','Recipe: Sealed Phoenix Gloves(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_phoenix\'s_gloves','recipe'),
- ('5404','Recipe: Sealed Gauntlets of Nightmare(60%)','false','recipe','30','stackable','liquid','none','-1','35200','0','true','true','true','true','rp_sealed_gloves_of_nightmare_i','recipe'),
- ('5405','Recipe: Sealed Gauntlets of Nightmare(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_gloves_of_nightmare','recipe'),
- ('5406','Recipe: Sealed Majestic Gauntlets(60%)','false','recipe','30','stackable','liquid','none','-1','35200','0','true','true','true','true','rp_sealed_magestic_gloves_i','recipe'),
- ('5407','Recipe: Sealed Majestic Gauntlets(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_magestic_gloves','recipe'),
- ('5408','Recipe: Sealed Dark Legion Gloves(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dark_legion_gloves_i','recipe'),
- ('5409','Recipe: Sealed Dark Legion Gloves(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dark_legion_gloves','recipe'),
- ('5410','Recipe: Sealed Gloves of Phantom(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_gloves_of_phantom_i','recipe'),
- ('5411','Recipe: Sealed Gloves of Phantom(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_gloves_of_phantom','recipe'),
- ('5412','Recipe: Sealed Cerberus Gloves(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_cerberus\'s_gloves_i','recipe'),
- ('5413','Recipe: Sealed Cerberus Gloves(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_cerberus\'s_gloves','recipe'),
- ('5414','Recipe: Sealed Dasparion\'s Gloves(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dasparion\'s_gloves_i','recipe'),
- ('5415','Recipe: Sealed Dasparion\'s Gloves(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dasparion\'s_gloves','recipe'),
- ('5416','Recipe: Sealed Dark Crystal Breastplate(60%)','false','recipe','30','stackable','liquid','none','-1','92600','0','true','true','true','true','rp_sealed_dark_crystal_breastplate_i','recipe'),
- ('5417','Recipe: Sealed Dark Crystal Breastplate(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dark_crystal_breastplate','recipe'),
- ('5418','Recipe: Sealed Tallum Plate Armor(60%)','false','recipe','30','stackable','liquid','none','-1','135400','0','true','true','true','true','rp_sealed_tallum_plate_armor_i','recipe'),
- ('5419','Recipe: Sealed Tallum Plate Armor(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_tallum_plate_armor','recipe'),
- ('5420','Recipe: Sealed Armor of Nightmare(60%)','false','recipe','30','stackable','liquid','none','-1','206000','0','true','true','true','true','rp_sealed_armor_of_nightmare_i','recipe'),
- ('5421','Recipe: Sealed Armor of Nightmare(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_armor_of_nightmare','recipe'),
- ('5422','Recipe: Sealed Majestic Plate Armor(60%)','false','recipe','30','stackable','liquid','none','-1','206000','0','true','true','true','true','rp_sealed_majestic_platte_armor_i','recipe'),
- ('5423','Recipe: Sealed Majestic Plate Armor(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_majestic_platte_armor','recipe'),
- ('5424','Recipe: Sealed Dark Crystal Gaiters(60%)','false','recipe','30','stackable','liquid','none','-1','57800','0','true','true','true','true','rp_sealed_dark_crystal_gaiters_i','recipe'),
- ('5425','Recipe: Sealed Dark Crystal Gaiters(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dark_crystal_gaiters','recipe'),
- ('5426','Recipe: Sealed Dark Crystal Helmet(60%)','false','recipe','30','stackable','liquid','none','-1','34800','0','true','true','true','true','rp_sealed_dark_crystal_helmet_i','recipe'),
- ('5427','Recipe: Sealed Dark Crystal Helmet(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_dark_crystal_helmet','recipe'),
- ('5428','Recipe: Sealed Tallum Helmet(60%)','false','recipe','30','stackable','liquid','none','-1','34800','0','true','true','true','true','rp_sealed_tallum_bonnet_i','recipe'),
- ('5429','Recipe: Sealed Tallum Helmet(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_tallum_bonnet','recipe'),
- ('5430','Recipe: Sealed Helm of Nightmare(60%)','false','recipe','30','stackable','liquid','none','-1','52800','0','true','true','true','true','rp_sealed_helm_of_nightmare_i','recipe'),
- ('5431','Recipe: Sealed Helm of Nightmare(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_helm_of_nightmare','recipe'),
- ('5432','Recipe: Sealed Majestic Circlet(60%)','false','recipe','30','stackable','liquid','none','-1','52800','0','true','true','true','true','rp_sealed_magestic_circlet_i','recipe'),
- ('5433','Recipe: Sealed Majestic Circlet(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_magestic_circlet','recipe'),
- ('5434','Recipe: Dragon Slayer(60%)','false','recipe','30','stackable','liquid','none','-1','540000','0','true','true','true','true','rp_dragon_slayer_i','recipe'),
- ('5435','Recipe: Dragon Slayer(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_dragon_slayer','recipe'),
- ('5436','Recipe: Berserker Blade(100%)','false','recipe','30','stackable','liquid','none','-1','122600','0','true','true','true','true','rp_berserker_blade','recipe'),
- ('5437','Recipe: Heavy Sword(100%)','false','recipe','30','stackable','liquid','none','-1','8180','0','true','true','true','true','rp_heavy_sword','recipe'),
- ('5438','Recipe: Meteor Shower(60%)','false','recipe','30','stackable','liquid','none','-1','366000','0','true','true','true','true','rp_meteor_shower_i','recipe'),
- ('5439','Recipe: Meteor Shower(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_meteor_shower','recipe'),
- ('5440','Recipe: Elysian(60%)','false','recipe','30','stackable','liquid','none','-1','540000','0','true','true','true','true','rp_elysian_i','recipe'),
- ('5441','Recipe: Elysian(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_elysian','recipe'),
- ('5442','Recipe: Soul Bow(60%)','false','recipe','30','stackable','liquid','none','-1','540000','0','true','true','true','true','rp_soul_bow_i','recipe'),
- ('5443','Recipe: Soul Bow(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_soul_bow','recipe'),
- ('5444','Recipe: Carnage Bow(60%)','false','recipe','30','stackable','liquid','none','-1','366000','0','true','true','true','true','rp_carnium_bow_i','recipe'),
- ('5445','Recipe: Carnage Bow(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_carnium_bow','recipe'),
- ('5446','Recipe: Bloody Orchid(60%)','false','recipe','30','stackable','liquid','none','-1','366000','0','true','true','true','true','rp_bloody_orchid_i','recipe'),
- ('5447','Recipe: Bloody Orchid(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_bloody_orchid','recipe'),
- ('5448','Recipe: Soul Separator(60%)','false','recipe','30','stackable','liquid','none','-1','540000','0','true','true','true','true','rp_soul_separator_i','recipe'),
- ('5449','Recipe: Soul Separator(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_soul_separator','recipe'),
- ('5450','Recipe: Dragon Grinder(60%)','false','recipe','30','stackable','liquid','none','-1','540000','0','true','true','true','true','rp_dragon_grinder_i','recipe'),
- ('5451','Recipe: Dragon Grinder(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_dragon_grinder','recipe'),
- ('5452','Recipe: Blood Tornado(60%)','false','recipe','30','stackable','liquid','none','-1','366000','0','true','true','true','true','rp_blood_tornado_i','recipe'),
- ('5453','Recipe: Blood Tornado(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_blood_tornado','recipe'),
- ('5454','Recipe: Orcish Halberd(60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_orcish_halbard_i','recipe'),
- ('5455','Recipe: Orcish Halberd(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_orcish_halbard','recipe'),
- ('5456','Recipe: Tallum Glaive(60%)','false','recipe','30','stackable','liquid','none','-1','540000','0','true','true','true','true','rp_tallum_glaive_i','recipe'),
- ('5457','Recipe: Tallum Glaive(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_tallum_glaive','recipe'),
- ('5458','Recipe: Halberd(60%)','false','recipe','30','stackable','liquid','none','-1','366000','0','true','true','true','true','rp_halbard_i','recipe'),
- ('5459','Recipe: Halberd(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_halbard','recipe'),
- ('5460','Recipe: Dasparion\'s Staff(60%)','false','recipe','30','stackable','liquid','none','-1','366000','0','true','true','true','true','rp_dasparion\'s_staff_i','recipe'),
- ('5461','Recipe: Dasparion\'s Staff(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_dasparion\'s_staff','recipe'),
- ('5462','Recipe: Branch of The Mother Tree(60%)','false','recipe','30','stackable','liquid','none','-1','540000','0','true','true','true','true','rp_worldtree\'s_branch_i','recipe'),
- ('5463','Recipe: Branch of The Mother Tree(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_worldtree\'s_branch','recipe'),
- ('5464','Recipe: Dark Legion\'s Edge(60%)','false','recipe','30','stackable','liquid','none','-1','540000','0','true','true','true','true','rp_dark_legion\'s_edge_i','recipe'),
- ('5465','Recipe: Dark Legion\'s Edge(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_dark_legion\'s_edge','recipe'),
- ('5466','Recipe: Sword of Miracles(60%)','false','recipe','30','stackable','liquid','none','-1','540000','0','true','true','true','true','rp_sword_of_miracle_i','recipe'),
- ('5467','Recipe: Sword of Miracles(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sword_of_miracle','recipe'),
- ('5468','Recipe: Elemental Sword(60%)','false','recipe','30','stackable','liquid','none','-1','366000','0','true','true','true','true','rp_elemental_sword_i','recipe'),
- ('5469','Recipe: Elemental Sword(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_elemental_sword','recipe'),
- ('5470','Recipe: Tallum Blade(60%)','false','recipe','30','stackable','liquid','none','-1','366000','0','true','true','true','true','rp_tallum_blade_i','recipe'),
- ('5471','Recipe: Tallum Blade(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_tallum_blade','recipe'),
- ('5472','Recipe: Metallic Thread(100%)','false','recipe','30','stackable','liquid','none','-1','2800','0','true','true','true','true','rp_iron_thread','recipe'),
- ('5473','Recipe: Durable Metal Plate(100%)','false','recipe','30','stackable','liquid','none','-1','2800','0','true','true','true','true','rp_reinforcing_plate','recipe'),
- ('5474','Recipe: Reorin\'s Mold(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_reorins_mold','recipe'),
- ('5475','Recipe: Warsmith\'s Mold(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_warsmith_mold','recipe'),
- ('5476','Recipe: Arcsmith\'s Anvil(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_arcsmith_anvil','recipe'),
- ('5477','Recipe: Warsmith\'s Holder(100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_warsmith_holder','recipe'),
- ('5478','Sealed Dark Crystal Leather Armor Pattern','false','material','60','stackable','liquid','none','-1','23784','0','true','true','true','true','sealed_dark_crystal_leather_mail_patte','material'),
- ('5479','Sealed Tallum Leather Armor Pattern','false','material','60','stackable','liquid','none','-1','33800','0','true','true','true','true','sealed_tallum_leather_mail_pattern','material'),
- ('5480','Sealed Leather Armor of Nightmare Fabric','false','material','60','stackable','liquid','none','-1','44571','0','true','true','true','true','sealed_leather_mail_of_nightmare_fabri','material'),
- ('5481','Sealed Majestic Leather Armor Fabric','false','material','60','stackable','liquid','none','-1','44571','0','true','true','true','true','sealed_majestic_leather_mail_fabric','material'),
- ('5482','Sealed Dark Crystal Leggings Design','false','material','60','stackable','liquid','none','-1','15153','0','true','true','true','true','sealed_legging_of_dark_crystal_design','material'),
- ('5483','Phoenix Earring Gemstone','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','phoenix\'s_earing_gemstone','material'),
- ('5484','Inferno Earring Gemstone','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','majestic_earing_gemstone','material'),
- ('5485','Sealed Tallum Tunic Texture','false','material','60','stackable','liquid','none','-1','23784','0','true','true','true','true','sealed_tallum_tunic_texture','material'),
- ('5486','Sealed Dark Crystal Robe Fabric','false','material','60','stackable','liquid','none','-1','33800','0','true','true','true','true','sealed_dark_crystal_robe_fabric','material'),
- ('5487','Sealed Nightmare Robe Fabric','false','material','60','stackable','liquid','none','-1','44414','0','true','true','true','true','sealed_robe_of_nightmare_fabric','material'),
- ('5488','Sealed Majestic Robe Fabric','false','material','60','stackable','liquid','none','-1','44414','0','true','true','true','true','sealed_majestic_robe_fabric','material'),
- ('5489','Sealed Tallum Stockings Fabric','false','material','60','stackable','liquid','none','-1','15153','0','true','true','true','true','sealed_tallum_hose_fabric','material'),
- ('5490','Phoenix Necklace Beads','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','phoenix\'s_necklace_beads','material'),
- ('5491','Inferno Necklace Beads','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','majestic_necklace_beads','material'),
- ('5492','Phoenix Ring Gemstone','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','phoenix\'s_ring_gemstone','material'),
- ('5493','Inferno Ring Gemstone','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','majestic_ring_gemstone','material'),
- ('5494','Sealed Dark Crystal Shield Fragment','false','material','60','stackable','liquid','none','-1','9523','0','true','true','true','true','sealed_dark_crystal_shield_fragment','material'),
- ('5495','Sealed Shield of Nightmare Fragment','false','material','60','stackable','liquid','none','-1','13171','0','true','true','true','true','sealed_shield_of_nightmare_fragment','material'),
- ('5496','Sealed Dark Crystal Boots Lining','false','material','60','stackable','liquid','none','-1','8530','0','true','true','true','true','sealed_dark_crystal_boots_lining','material'),
- ('5497','Sealed Tallum Boots Lining','false','material','60','stackable','liquid','none','-1','8530','0','true','true','true','true','sealed_tallum_boots_lining','material'),
- ('5498','Sealed Boots of the Underworld Lining','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_boots_of_underworld_lining','material'),
- ('5499','Sealed Gust Boots Lining','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_gust_boots_lining','material'),
- ('5500','Sealed Red Flame Boots Lining','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_red_flame_boots_lining','material'),
- ('5501','Sealed Phoenix Boots Lining','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_phoenix\'s_boots_lining','material'),
- ('5502','Sealed Boots of Nightmare Lining','false','material','60','stackable','liquid','none','-1','11842','0','true','true','true','true','sealed_boots_of_nightmare_lining','material'),
- ('5503','Sealed Majestic Boots Lining','false','material','60','stackable','liquid','none','-1','11842','0','true','true','true','true','sealed_magestic_boots_lining','material'),
- ('5504','Sealed Dark Legion Boots Lining','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_dark_legion_boots_lining','material'),
- ('5505','Sealed Boots of Phantom Lining','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_boots_of_phantom_lining','material'),
- ('5506','Sealed Cerberus Boots Lining','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_cerberus\'s_boots_lining','material'),
- ('5507','Sealed Dasparion\'s Boots Lining','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_dasparion\'s_boots_lining','material'),
- ('5508','Sealed Dark Crystal Gloves Design','false','material','60','stackable','liquid','none','-1','8530','0','true','true','true','true','sealed_dark_crystal_gloves_design','material'),
- ('5509','Sealed Tallum Gloves Design','false','material','60','stackable','liquid','none','-1','8530','0','true','true','true','true','sealed_tallum_gloves_design','material'),
- ('5510','Sealed Gloves of the Underworld Design','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_gloves_of_underworld_design','material'),
- ('5511','Sealed Gust Bracer design','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_gust_bracer_design','material'),
- ('5512','Sealed Gloves of Black Ore Design','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_gloves_of_black_ore_design','material'),
- ('5513','Sealed Phoenix Gloves Design','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_phoenix\'s_gloves_design','material'),
- ('5514','Sealed Gauntlets of Nightmare Design','false','material','60','stackable','liquid','none','-1','11842','0','true','true','true','true','sealed_gloves_of_nightmare_design','material'),
- ('5515','Sealed Majestic Gauntlets Design','false','material','60','stackable','liquid','none','-1','11842','0','true','true','true','true','sealed_magestic_gloves_design','material'),
- ('5516','Sealed Dark Legion Gloves Design','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_dark_legion_gloves_design','material'),
- ('5517','Sealed Gloves of Phantom Design','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_gloves_of_phantom_design','material'),
- ('5518','Sealed Cerberus Gloves Design','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_cerberus\'s_gloves_design','material'),
- ('5519','Sealed Dasparion\'s Gloves Design','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_dasparion\'s_gloves_design','material'),
- ('5520','Sealed Dark Crystal Breastplate Pattern','false','material','60','stackable','liquid','none','-1','31015','0','true','true','true','true','sealed_dark_crystal_breastplate_patter','material'),
- ('5521','Sealed Tallum Plate Armor Pattern','false','material','60','stackable','liquid','none','-1','43953','0','true','true','true','true','sealed_tallum_plate_armor_pattern','material'),
- ('5522','Sealed Armor of Nightmare Pattern','false','material','60','stackable','liquid','none','-1','58728','0','true','true','true','true','sealed_armor_of_nightmare_pattern','material'),
- ('5523','Sealed Majestic Plate Armor Pattern','false','material','60','stackable','liquid','none','-1','58728','0','true','true','true','true','sealed_majestic_platte_armor_pattern','material'),
- ('5524','Sealed Dark Crystal Gaiters Pattern','false','material','60','stackable','liquid','none','-1','20292','0','true','true','true','true','sealed_dark_crystal_gaiters_pattern','material'),
- ('5525','Sealed Dark Crystal Helmet Design','false','material','60','stackable','liquid','none','-1','12938','0','true','true','true','true','sealed_dark_crystal_helmet_design','material'),
- ('5526','Sealed Tallum Helm Design','false','material','60','stackable','liquid','none','-1','12938','0','true','true','true','true','sealed_tallum_bonnet_design','material'),
- ('5527','Sealed Helm of Nightmare Design','false','material','60','stackable','liquid','none','-1','16728','0','true','true','true','true','sealed_helm_of_nightmare_design','material'),
- ('5528','Sealed Majestic Circlet Design','false','material','60','stackable','liquid','none','-1','16728','0','true','true','true','true','sealed_magestic_circlet_design','material'),
- ('5529','Dragon Slayer Edge','false','material','60','stackable','liquid','none','-1','72900','0','true','true','true','true','dragon_slayer_edge','material'),
- ('5530','Berserker Blade Edge','false','material','60','stackable','liquid','none','-1','43600','0','true','true','true','true','berserker_blade_edge','material'),
- ('5531','Heavy Sword Edge','false','material','60','stackable','liquid','none','-1','11912','0','true','true','true','true','heavy_sword_edge','material'),
- ('5532','Meteor Shower Head','false','material','60','stackable','liquid','none','-1','59308','0','true','true','true','true','meteor_shower_head','material'),
- ('5533','Elysian Head','false','material','60','stackable','liquid','none','-1','72914','0','true','true','true','true','elysian_head','material'),
- ('5534','Soul Bow Stave','false','material','60','stackable','liquid','none','-1','72850','0','true','true','true','true','soul_bow_shaft','material'),
- ('5535','Carnage Bow Stave','false','material','60','stackable','liquid','none','-1','58615','0','true','true','true','true','carnium_bow_shaft','material'),
- ('5536','Bloody Orchid Head','false','material','60','stackable','liquid','none','-1','58785','0','true','true','true','true','bloody_orchid_head','material'),
- ('5537','Soul Separator Head','false','material','60','stackable','liquid','none','-1','72900','0','true','true','true','true','soul_separator_head','material'),
- ('5538','Dragon Grinder Edge','false','material','60','stackable','liquid','none','-1','72914','0','true','true','true','true','dragon_grinder_edge','material'),
- ('5539','Blood Tornado Edge','false','material','60','stackable','liquid','none','-1','59308','0','true','true','true','true','blood_tornado_edge','material'),
- ('5540','Orcish Halberd Edge','false','material','60','stackable','liquid','none','-1','62500','0','true','true','true','true','orcish_halbard_edge','material'),
- ('5541','Tallum Glaive Edge','false','material','60','stackable','liquid','none','-1','72929','0','true','true','true','true','tallum_glaive_edge','material'),
- ('5542','Halberd Edge','false','material','60','stackable','liquid','none','-1','59308','0','true','true','true','true','halbard_edge','material'),
- ('5543','Dasparion\'s Staff Edge','false','material','60','stackable','liquid','none','-1','58754','0','true','true','true','true','dasparion\'s_staff_head','material'),
- ('5544','Branch of The Mother Tree Head','false','material','60','stackable','liquid','none','-1','72986','0','true','true','true','true','worldtree\'s_branch_head','material'),
- ('5545','Dark Legion\'s Edge Blade','false','material','60','stackable','liquid','none','-1','72900','0','true','true','true','true','dark_legion\'s_edge_edge','material'),
- ('5546','Sword of Miracles Edge','false','material','60','stackable','liquid','none','-1','66369','0','true','true','true','true','sword_of_miracle_edge','material'),
- ('5547','Elemental Sword Edge','false','material','60','stackable','liquid','none','-1','58785','0','true','true','true','true','elemental_sword_edge','material'),
- ('5548','Tallum Blade Edge','false','material','60','stackable','liquid','none','-1','58785','0','true','true','true','true','tallum_blade_edge','material'),
- ('5549','Metallic Thread','false','material','2','stackable','liquid','none','-1','2000','0','true','true','true','true','iron_thread','material'),
- ('5550','Durable Metal Plate','false','material','2','stackable','liquid','none','-1','15000','0','true','true','true','true','reinforcing_plate','material'),
- ('5551','Leolin\'s Mold','false','material','2','stackable','liquid','none','-1','238000','0','true','true','true','true','reorins_mold','material'),
- ('5552','Warsmith\'s Mold','false','material','2','stackable','liquid','none','-1','385000','0','true','true','true','true','warsmith_mold','material'),
- ('5553','Arcsmith\'s Anvil','false','material','2','stackable','liquid','none','-1','531200','0','true','true','true','true','arcsmith_anvil','material'),
- ('5554','Warsmith\'s Holder','false','material','2','stackable','liquid','none','-1','884000','0','true','true','true','true','warsmith_holder','material'),
- ('5555','Token of Love','false','none','0','stackable','paper','none','-1','0','0','true','true','true','true','x_mas_2004','none'),
- ('5556','Star Ornament','false','material','0','stackable','liquid','none','-1','1','0','true','true','true','true','deco_star','material'),
- ('5557','Bead Ornament','false','material','0','stackable','liquid','none','-1','1','0','true','true','true','true','deco_bead','material'),
- ('5558','Fir Tree Branch','false','material','0','stackable','liquid','none','-1','1','0','true','true','true','true','fir_spring','material'),
- ('5559','Flower Pot','false','material','0','stackable','liquid','none','-1','1','0','true','true','true','true','flowerpot','material'),
- ('5560','Christmas Tree','false','potion','0','stackable','paper','none','-1','1','0','true','true','true','true','x_mas_tree1','potion'),
- ('5561','Special Christmas Tree','false','potion','0','stackable','paper','none','-1','1','0','true','true','true','true','x_mas_tree2','potion'),
- ('5562','Echo Crystal - 1st Carol','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_carol1','none'),
- ('5563','Echo Crystal - 2nd Carol','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_carol2','none'),
- ('5564','Echo Crystal - 3rd Carol','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_carol3','none'),
- ('5565','Echo Crystal - 4th Carol','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_carol4','none'),
- ('5566','Echo Crystal - 5th Carol','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_carol5','none'),
- ('5567','Letter of Greetings','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','greetings1','none'),
- ('5568','Letter of Greetings','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','greetings2','none'),
- ('5569','Water Rune','false','none','0','stackable','gold','none','-1','0','0','true','true','true','true','rune_of_water','none'),
- ('5570','Water Mantra','false','none','0','stackable','gold','none','-1','0','0','true','true','true','true','mantra_of_water','none'),
- ('5571','Wind Rune','false','none','0','stackable','gold','none','-1','0','0','true','true','true','true','rune_of_wind','none'),
- ('5572','Wind Mantra','false','none','0','stackable','gold','none','-1','0','0','true','true','true','true','mantra_of_wind','none'),
- ('5573','Fire Rune','false','none','0','stackable','gold','none','-1','0','0','true','true','true','true','rune_of_fire','none'),
- ('5574','Fire Mantra','false','none','0','stackable','gold','none','-1','0','0','true','true','true','true','mantra_of_fire','none'),
- ('5575','Ancient Adena','false','none','0','asset','gold','none','-1','0','0','true','true','true','true','adena_of_ancient','none'),
- ('5577','Red Soul Crystal - Stage 11','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_11','scroll'),
- ('5578','Green Soul Crystal - Stage 11','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_11','scroll'),
- ('5579','Blue Soul Crystal - Stage 11','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_11','scroll'),
- ('5580','Red Soul Crystal - Stage 12','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_12','scroll'),
- ('5581','Green Soul Crystal - Stage 12','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_12','scroll'),
- ('5582','Blue Soul Crystal - Stage 12','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_12','scroll'),
- ('5583','Echo Crystal - 6th Carol','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_carol6','none'),
- ('5584','Echo Crystal - 7th Carol','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_carol7','none'),
- ('5585','Echo Crystal - 8th Carol','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_carol8','none'),
- ('5586','Echo Crystal - 9th Carol','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_carol9','none'),
- ('5587','Echo Crystal - 10th Carol','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','echo_crystal_carol10','none'),
- ('5588','Tutorial Guide','false','none','10','normal','liquid','none','-1','1','0','true','false','true','true','tutorial_guide','none'),
- ('5589','Energy Stone','false','potion','10','stackable','liquid','none','-1','100','0','true','true','true','true','energy_stone','potion'),
- ('5591','CP Potion','false','potion','25','stackable','liquid','none','-1','240','0','true','true','true','true','CP Potion','potion'),
- ('5592','Greater CP Potion','false','potion','100','stackable','liquid','none','-1','600','0','true','true','true','true','Advanced CP Potion','potion'),
- ('5593','SP Scroll: Low Grade','false','scroll','30','stackable','paper','none','-1','2400','0','true','true','true','true','sp_scroll1','scroll'),
- ('5594','SP Scroll: Medium Grade','false','scroll','30','stackable','paper','none','-1','24000','0','true','true','true','true','sp_scroll2','scroll'),
- ('5595','SP Scroll: High Grade','false','scroll','30','stackable','paper','none','-1','480000','0','true','true','true','true','sp_scroll3','scroll'),
- ('5650','Alternative Dark Coda Seed','false','seed',1,'stackable','paper','none',-1,5,0,'true','true','true','true','C5Item','none'),
- ('5651','Alternative Red Coda Seed','false','seed',1,'stackable','paper','none',-1,5,0,'true','true','true','true','C5Item','none'),
- ('5652','Alternative Chilly Coda Seed','false','seed',1,'stackable','paper','none',-1,5,0,'true','true','true','true','C5Item','none'),
- ('5653','Alternative Blue Coda Seed','false','seed',1,'stackable','paper','none',-1,10,0,'true','true','true','true','C5Item','none'),
- ('5654','Alternative Golden Coda Seed','false','seed',1,'stackable','paper','none',-1,20,0,'true','true','true','true','C5Item','none'),
- ('5655','Alternative Lute Coda Seed','false','seed',1,'stackable','paper','none',-1,30,0,'true','true','true','true','C5Item','none'),
- ('5656','Alternative Desert Coda Seed','false','seed',1,'stackable','paper','none',-1,20,0,'true','true','true','true','C5Item','none'),
- ('5657','Alternative Blue Cobol Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5658','Alternative Blue Coda Seed','false','seed',1,'stackable','paper','none',-1,10,0,'true','true','true','true','C5Item','none'),
- ('5659','Alternative Golden Coda Seed','false','seed',1,'stackable','paper','none',-1,20,0,'true','true','true','true','C5Item','none'),
- ('5660','Alternative Lute Coda Seed','false','seed',1,'stackable','paper','none',-1,30,0,'true','true','true','true','C5Item','none'),
- ('5661','Alternative Desert Coda Seed','false','seed',1,'stackable','paper','none',-1,20,0,'true','true','true','true','C5Item','none'),
- ('5662','Alternative Red Cobol Seed','false','seed',1,'stackable','paper','none',-1,20,0,'true','true','true','true','C5Item','none'),
- ('5663','Alternative Chilly Cobol Seed','false','seed',1,'stackable','paper','none',-1,25,0,'true','true','true','true','C5Item','none'),
- ('5664','Alternative Thorn Cobol Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5665','Alternative Golden Cobol Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5666','Alternative Great Cobol Seed','false','seed',1,'stackable','paper','none',-1,40,0,'true','true','true','true','C5Item','none'),
- ('5667','Alternative Red Cobol Seed','false','seed',1,'stackable','paper','none',-1,20,0,'true','true','true','true','C5Item','none'),
- ('5668','Alternative Chilly Cobol Seed','false','seed',1,'stackable','paper','none',-1,25,0,'true','true','true','true','C5Item','none'),
- ('5669','Alternative Blue Cobol Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5670','Alternative Thorn Cobol Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5671','Alternative Golden Cobol Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5672','Alternative Great Cobol Seed','false','seed',1,'stackable','paper','none',-1,40,0,'true','true','true','true','C5Item','none'),
- ('5673','Alternative Red Codran Seed','false','seed',1,'stackable','paper','none',-1,40,0,'true','true','true','true','C5Item','none'),
- ('5674','Alternative Twin Codran Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5675','Alternative Desert Codran Seed','false','seed',1,'stackable','paper','none',-1,100,0,'true','true','true','true','C5Item','none'),
- ('5676','Alternative Dark Coda Seed','false','seed',1,'stackable','paper','none',-1,5,0,'true','true','true','true','C5Item','none'),
- ('5677','Alternative Red Coda Seed','false','seed',1,'stackable','paper','none',-1,5,0,'true','true','true','true','C5Item','none'),
- ('5678','Alternative Blue Coda Seed','false','seed',1,'stackable','paper','none',-1,10,0,'true','true','true','true','C5Item','none'),
- ('5679','Alternative Red Cobol Seed','false','seed',1,'stackable','paper','none',-1,20,0,'true','true','true','true','C5Item','none'),
- ('5680','Alternative Chilly Cobol Seed','false','seed',1,'stackable','paper','none',-1,25,0,'true','true','true','true','C5Item','none'),
- ('5681','Alternative Blue Cobol Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5682','Alternative Thorn Cobol Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5683','Alternative Sea Codran Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5684','Alternative Chilly Codran Seed','false','seed',1,'stackable','paper','none',-1,40,0,'true','true','true','true','C5Item','none'),
- ('5685','Alternative Blue Codran Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5686','Alternative Twin Codran Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5687','Alternative Thorn Cobol Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5688','Alternative Golden Cobol Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5689','Alternative Great Cobol Seed','false','seed',1,'stackable','paper','none',-1,40,0,'true','true','true','true','C5Item','none'),
- ('5690','Alternative Red Codran Seed','false','seed',1,'stackable','paper','none',-1,40,0,'true','true','true','true','C5Item','none'),
- ('5691','Alternative Chilly Codran Seed','false','seed',1,'stackable','paper','none',-1,40,0,'true','true','true','true','C5Item','none'),
- ('5692','Alternative Blue Codran Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5693','Alternative Twin Codran Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5694','Alternative Great Codran Seed','false','seed',1,'stackable','paper','none',-1,75,0,'true','true','true','true','C5Item','none'),
- ('5695','Alternative Desert Codran Seed','false','seed',1,'stackable','paper','none',-1,100,0,'true','true','true','true','C5Item','none'),
- ('5696','Alternative Chilly Cobol Seed','false','seed',1,'stackable','paper','none',-1,25,0,'true','true','true','true','C5Item','none'),
- ('5697','Alternative Blue Cobol Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5698','Alternative Thorn Cobol Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5699','Alternative Golden Cobol Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5700','Alternative Great Cobol Seed','false','seed',1,'stackable','paper','none',-1,40,0,'true','true','true','true','C5Item','none'),
- ('5701','Alternative Red Codran Seed','false','seed',1,'stackable','paper','none',-1,40,0,'true','true','true','true','C5Item','none'),
- ('5702','Alternative Sea Codran Seed','false','seed',1,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5703','Lucky Charm','false','scroll','10','stackable','paper','none','-1','100','0','true','true','true','true','charm_of_luck_none','scroll'),
- ('5707','Record of Seven Signs','false','none','0','normal','liquid','none','-1','600','0','true','true','true','true','record_of_seven_sign','none'),
- ('5708','Lord of the Manor\'s Certificate of Approval','false','ticket_of_lord','0','normal','liquid','none','-1','0','0','true','true','true','true','the_lord_of_manor\'s_agreement','ch3type2'),
- ('5741','Recipe: Sealed Zubei\'s Gauntlets (100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_shrnoen\'s_gauntlet','recipe'),
- ('5742','Recipe: Zubei\'s Gauntlets (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_shrnoen\'s_gauntlet_i','recipe'),
- ('5743','Recipe: Sealed Avadon Gloves (100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_avadon_gloves','recipe'),
- ('5744','Recipe: Sealed Avadon Gloves (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_avadon_gloves_i','recipe'),
- ('5745','Recipe: Sealed Blue Wolf Gloves (100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_blue_wolve\'s_gloves','recipe'),
- ('5746','Recipe: Sealed Blue Wolf Gloves (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_blue_wolve\'s_gloves_i','recipe'),
- ('5747','Recipe: Sealed Doom Gloves (100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_doom_gloves','recipe'),
- ('5748','Recipe: Sealed Doom Gloves (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_doom_gloves_i','recipe'),
- ('5749','Recipe: Sealed Zubei\'s Boots (100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_shrnoen\'s_boots','recipe'),
- ('5750','Recipe: Sealed Zubei\'s Boots (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_shrnoen\'s_boots_i','recipe'),
- ('5751','Recipe: Sealed Avadon Boots (100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_avadon_boots','recipe'),
- ('5752','Recipe: Sealed Avadon Boots (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_avadon_boots_i','recipe'),
- ('5753','Recipe: Sealed Blue Wolf Boots (100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_blue_wolve\'s_boots','recipe'),
- ('5754','Recipe: Sealed Blue Wolf Boots (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_blue_wolve\'s_boots_i','recipe'),
- ('5755','Recipe: Sealed Boots of Doom (100%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_doom_boots','recipe'),
- ('5756','Recipe: Sealed Boots of Doom (60%)','false','recipe','30','stackable','liquid','none','-1','0','0','true','true','true','true','rp_sealed_doom_boots_i','recipe'),
- ('5757','Sealed Zubei\'s Gauntlet Part','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_shrnoen\'s_gauntlet_part','material'),
- ('5758','Sealed Avadon Gloves Part','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_avadon_gloves_part','material'),
- ('5759','Sealed Blue Wolf Gloves Fabric','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_blue_wolve\'s_gloves_fabric','material'),
- ('5760','Sealed Doom Gloves Part','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_doom_gloves_part','material'),
- ('5761','Sealed Zubei\'s Boots Design','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_shrnoen\'s_boots_design','material'),
- ('5762','Sealed Avadon Boots Design','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_avadon_boots_design','material'),
- ('5763','Sealed Blue Wolf Boots Design','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_blue_wolve\'s_boots_design','material'),
- ('5764','Sealed Doom Boots Part','false','material','60','stackable','liquid','none','-1','0','0','true','true','true','true','sealed_doom_boots_part','material'),
- ('5789','Soulshot: No Grade for Beginners','false','none','1','stackable','paper','none','-1','0','0','false','false','true','false','soulshot_for_novices','none'),
- ('5790','Spiritshot: No Grade for Beginners','false','none','1','stackable','paper','none','-1','0','0','false','false','true','false','spiritshot_for_novices','none'),
- ('5803','Lucky Charm: D-Grade','false','scroll','10','stackable','paper','none','-1','300','0','true','true','true','true','charm_of_luck_d','scroll'),
- ('5804','Lucky Charm: C-Grade','false','scroll','10','stackable','paper','none','-1','660','0','true','true','true','true','charm_of_luck_c','scroll'),
- ('5805','Lucky Charm: B-Grade','false','scroll','10','stackable','paper','none','-1','1300','0','true','true','true','true','charm_of_luck_b','scroll'),
- ('5806','Lucky Charm: A-Grade','false','scroll','10','stackable','paper','none','-1','2700','0','true','true','true','true','charm_of_luck_a','scroll'),
- ('5807','Lucky Charm: S Grade','false','scroll','10','stackable','paper','none','-1','5000','0','true','true','true','true','charm_of_luck_s','scroll'),
- ('5809','Spellbook: Aqua Splash','false','spellbook','120','normal','paper','none','-1','6750','0','true','true','true','true','sb_aqua_splash1','none'),
- ('5810','Spellbook: Rain of Fire','false','spellbook','120','normal','paper','none','-1','6750','0','true','true','true','true','sb_rain_of_fire1','none'),
- ('5811','Spellbook: Mass Slow','false','spellbook','120','normal','paper','none','-1','7700','0','true','true','true','true','sb_mass_slow1','none'),
- ('5812','Spellbook: Servitor Empowerment','false','spellbook','120','normal','paper','none','-1','5400','0','true','true','true','true','sb_servitor_empower1','none'),
- ('5813','Spellbook: Servitor Cure','false','spellbook','120','normal','paper','none','-1','3200','0','true','true','true','true','sb_servitor_cure1','none'),
- ('5814','Spellbook: Servitor Blessing','false','spellbook','120','normal','paper','none','-1','7700','0','true','true','true','true','sb_servitor_blessing','none'),
- ('5815','Spellbook: Wild Magic','false','spellbook','120','normal','paper','none','-1','7700','0','true','true','true','true','sb_wild_magic1','none'),
- ('5816','Spellbook: Advanced Block','false','spellbook','120','normal','paper','none','-1','6750','0','true','true','true','true','sb_advanced_block1','none'),
- ('5818','Alternative Dark Coda','false','none',2,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5819','Alternative Red Coda','false','none',2,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5820','Alternative Chilly Coda','false','none',2,'stackable','paper','none',-1,50,0,'true','true','true','true','C5Item','none'),
- ('5821','Alternative Blue Coda','false','none',2,'stackable','paper','none',-1,100,0,'true','true','true','true','C5Item','none'),
- ('5822','Alternative Golden Coda','false','none',2,'stackable','paper','none',-1,200,0,'true','true','true','true','C5Item','none'),
- ('5823','Alternative Lute Coda','false','none',2,'stackable','paper','none',-1,300,0,'true','true','true','true','C5Item','none'),
- ('5824','Alternative Desert Coda','false','none',2,'stackable','paper','none',-1,200,0,'true','true','true','true','C5Item','none'),
- ('5825','Alternative Red Cobol','false','none',2,'stackable','paper','none',-1,200,0,'true','true','true','true','C5Item','none'),
- ('5826','Alternative Chilly Cobol','false','none',2,'stackable','paper','none',-1,250,0,'true','true','true','true','C5Item','none'),
- ('5827','Alternative Blue Cobol','false','none',2,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('5828','Alternative Thorn Cobol','false','none',2,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('5829','Alternative Golden Cobol','false','none',2,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('5830','Alternative Great Cobol','false','none',2,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('5831','Alternative Red Codran','false','none',2,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('5832','Alternative Sea Codran','false','none',2,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('5833','Alternative Chilly Codran','false','none',2,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('5834','Alternative Blue Codran','false','none',2,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('5835','Alternative Twin Codran','false','none',2,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('5836','Alternative Great Codran','false','none',2,'stackable','paper','none',-1,750,0,'true','true','true','true','C5Item','none'),
- ('5837','Alternative Desert Codran','false','none',2,'stackable','paper','none',-1,1000,0,'true','true','true','true','C5Item','none'),
- ('5838','Mature Alternative Dark Coda','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5839','Mature Alternative Red Coda','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5840','Mature Alternative Chilly Coda','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5841','Mature Alternative Blue Coda','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5842','Mature Alternative Golden Coda','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5843','Mature Alternative Lute Coda','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5844','Mature Alternative Desert Coda','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5845','Mature Alternative Red Cobol','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5846','Mature Alternative Chilly Cobol','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5847','Mature Alternative Blue Cobol','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5848','Mature Alternative Thorn Cobol','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5849','Mature Alternative Golden Cobol','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5850','Mature Alternative Great Cobol','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5851','Mature Alternative Red Codran','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5852','Mature Alternative Sea Codran','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5853','Mature Alternative Chilly Codran','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5854','Mature Alternative Blue Codran','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5855','Mature Alternative Twin Codran','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5856','Mature Alternative Great Codran','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5857','Mature Alternative Desert Codran','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('5858','Blessed Scroll of Escape: Clan Hall','false','scroll','120','stackable','paper','none','-1','100000','0','true','true','true','true','blessed_scroll_of_escape_to_agit','scroll'),
- ('5859','Blessed Scroll of Escape: Castle','false','scroll','120','stackable','paper','none','-1','0','0','true','true','true','true','blessed_scroll_of_escape_to_castle','scroll'),
- ('5860','Lienrik Egg','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','lienlik_egg1','none'),
- ('5861','Lienrik Egg','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','lienlik_egg2','none'),
- ('5862','Stone of Contract','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','stone_of_contract','none'),
- ('5863','Alligator Tooth','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','croc_tooth','none'),
- ('5864','Mysterious Map Piece','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','mysterious_map_piece','none'),
- ('5865','Carnivore Spore','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','carnivore_spore','none'),
- ('5866','Herbivorous Spore','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','herbivorous_spore','none'),
- ('5867','Jade Crystal','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','jade_crystal','none'),
- ('5868','Snake Scale','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','snake_scale','none'),
- ('5869','Remains of Aden Residents','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','ash_of_doom_peoples','none'),
- ('5870','Receipt of Supply','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','receipt_of_supply','none'),
- ('5871','Suspicious Document Piece','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','piece_of_receipt','none'),
- ('5872','Supply Items','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','supply','none'),
- ('5873','Pirate\'s Treasure Chest','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_pirates_trbox','none'),
- ('5874','Sairon\'s Silver Hair','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_saitnns_silver_hair','none'),
- ('5875','Titan Lamp','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_giants_lamp1','none'),
- ('5876','Titan Lamp','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_giants_lamp2','none'),
- ('5877','Titan Lamp','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_giants_lamp3','none'),
- ('5878','Titan Lamp','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_giants_lamp4','none'),
- ('5879','Titan Lamp','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_giants_lamp5','none'),
- ('5880','Broken Titan Lamp','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_giants_broken_lamp','none'),
- ('5881','Blade Stakato Fang','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_blade_stakatos_fang','none'),
- ('5882','Flare Shard','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','flair_shard','none'),
- ('5883','Freezing Shard','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','freezing_shard','none'),
- ('5884','Cave Beast Tooth','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_cave_beast_tooth','none'),
- ('5885','Death Wave Light','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_death_wave_light','none'),
- ('5886','Sealed Mysterious Stone','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_sealed_mysterius_stone','none'),
- ('5887','Mysterious Stone','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_mysterius_stone','none'),
- ('5888','Karik Horn','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_karik_horn','none'),
- ('5889','Cave Howler Skull','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_cave_howler_skull','none'),
- ('5890','Mysterious Book','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_mysterius_book','none'),
- ('5891','Ancient Language Dictionary: Basic Level','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_ancient_lang_dic1','none'),
- ('5892','Ancient Language Dictionary: Intermediate Level','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_ancient_lang_dic2','none'),
- ('5893','Leaf of Eucalyptus','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','leaf_of_eucalyptus','none'),
- ('5894','Stone of Chill','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','stone_of_chill','none'),
- ('5895','Ritron\'s Fruit','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','ritron','none'),
- ('5896','Moon Face Flower','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','moon_face_flower','none'),
- ('5897','Leech Fluids','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','body_fluid_of_leech','none'),
- ('5898','Royal Membership','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_royal_membership','none'),
- ('5899','Kail\'s Coin','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_kails_coin','none'),
- ('5900','Coin Collecting Album','false','none','0','stackable','liquid','none','-1','0','0','false','false','true','false','q_book_of_coin_collect','none'),
- ('5901','Blood Offering','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_blood_of_offering','none'),
- ('5902','Scroll of Ancient Magic','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','q_scroll_of_ancient_magic','none'),
- ('5903','Ancient Ash Urn','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','ancient_funeral_urn','none'),
- ('5904','Wesley\'s Mixing Stone','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','wesleys_mixing_stone','none'),
- ('5905','Magister\'s Mixing Stone','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','magisters_mixing_stone','none'),
- ('5906','(Not used) Red Soul Crystal: Grade 11','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','_red_soul_crystal_11','scroll'),
- ('5907','(Not used) Red Soul Crystal: Grade 12','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','_red_soul_crystal_12','scroll'),
- ('5908','Red Soul Crystal: Grade 13','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','red_soul_crystal_13','scroll'),
- ('5909','(Not used) Green Soul Crystal: Grade 11','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','_green_soul_crystal_11','scroll'),
- ('5910','(Not used) Green Soul Crystal: Grade 12','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','_green_soul_crystal_12','scroll'),
- ('5911','Green Soul Crystal: Grade 13','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','green_soul_crystal_13','scroll'),
- ('5912','(Not used) Blue Soul Crystal: Grade 11','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','_blue_soul_crystal_11','scroll'),
- ('5913','(Not used) Blue Soul Crystal: Grade 12','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','_blue_soul_crystal_12','scroll'),
- ('5914','Blue Soul Crystal: Grade 13','false','scroll','20','normal','crystal','none','-1','0','0','true','true','true','true','blue_soul_crystal_13','scroll'),
- ('5915','Pirate\'s Treasure Map','false','none','0','stackable','liquid','none','-1','200','0','true','true','true','true','pirates_treasure_map','none'),
- ('5916','Spellbook Page','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','page_of_spellbook','none'),
- ('5917','Kranvel\'s Spellbook: Chapter of Fire','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','kranvels_spellbook_chpt_fire','none'),
- ('5918','Kranvel\'s Spellbook: Chapter of Water','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','kranvels_spellbook_chpt_water','none'),
- ('5919','Kranvel\'s Spellbook: Chapter of Wind','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','kranvels_spellbook_chpt_wind','none'),
- ('5920','Kranvel\'s Spellbook: Chapter of Earth','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','kranvels_spellbook_chpt_earth','none'),
- ('5921','Worthless Piece of Paper','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','useless_piece_of_paper','none'),
- ('5922','Blueprint: Giants Golem 1','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_plan_of_golem1','none'),
- ('5923','Blueprint: Giants Golem 2','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_plan_of_golem2','none'),
- ('5924','Blueprint: Giants Golem 3','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_plan_of_golem3','none'),
- ('5925','Blueprint: Giants Golem 4','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_plan_of_golem4','none'),
- ('5926','Blueprint: Giants Golem 5','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_plan_of_golem5','none'),
- ('5927','Book: Basics of Giants Magic, Chapter 1','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_basis_of_magic1','none'),
- ('5928','Book: Basics of Giants Magic, Chapter 2','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_basis_of_magic2','none'),
- ('5929','Book: Basics of Giants Magic, Chapter 3','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_basis_of_magic3','none'),
- ('5930','Book: Basics of Giants Magic, Chapter 4','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_basis_of_magic4','none'),
- ('5931','Book: Basics of Giants Magic, Chapter 5','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_basis_of_magic5','none'),
- ('5932','Handbook: Giants Architecture, Chapter 1','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_construction_tech1','none'),
- ('5933','Handbook: Giants Architecture, Chapter 2','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_construction_tech2','none'),
- ('5934','Handbook: Giants Architecture, Chapter 3','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_construction_tech3','none'),
- ('5935','Handbook: Giants Architecture, Chapter 4','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_construction_tech4','none'),
- ('5936','Handbook: Giants Architecture, Chapter 5','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_construction_tech5','none'),
- ('5937','Book: Giants Medical Science, Chapter 1','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_medical_theory1','none'),
- ('5938','Book: Giants Medical Science, Chapter 2','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_medical_theory2','none'),
- ('5939','Book: Giants Medical Science, Chapter 3','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_medical_theory3','none'),
- ('5940','Book: Giants Medical Science, Chapter 4','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_medical_theory4','none'),
- ('5941','Book: Giants Medical Science, Chapter 5','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_medical_theory5','none'),
- ('5942','Giant\'s Love Letter','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_love_letter','none'),
- ('5943','Giants\' Doodle','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_scribble','none'),
- ('5944','Ancient Parchment','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_scroll','none'),
- ('5945','Book: Giants Science & Technology, Chapter 1','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_science_basis1','none'),
- ('5946','Book: Giants Science & Technology, Chapter 2','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_science_basis2','none'),
- ('5947','Book: Giants Science & Technology, Chapter 3','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_science_basis3','none'),
- ('5948','Book: Giants Science & Technology, Chapter 4','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_science_basis4','none'),
- ('5949','Book: Giants Science & Technology, Chapter 5','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_science_basis5','none'),
- ('5950','Almanac: Titan Culture, Chapter 1','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_culture1','none'),
- ('5951','Almanac: Titan Culture, Chapter 2','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_culture2','none'),
- ('5952','Almanac: Titan Culture, Chapter 3','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_culture3','none'),
- ('5953','Almanac: Titan Culture, Chapter 4','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_culture4','none'),
- ('5954','Almanac: Titan Culture, Chapter 5','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_culture5','none'),
- ('5955','Ancient Titan Book','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_giants_book','none'),
- ('5956','15 Year Old Wine','false','none','20','stackable','liquid','none','-1','5000','0','true','true','true','true','sound_wine1','none'),
- ('5957','30 Year Old Wine','false','none','20','stackable','liquid','none','-1','5000','0','true','true','true','true','sound_wine2','none'),
- ('5958','60 Year Old Wine','false','none','20','stackable','liquid','none','-1','5000','0','true','true','true','true','sound_wine3','none'),
- ('5959','Ritron\'s Dessert Recipe','false','none','10','normal','liquid','none','-1','40000','0','true','true','true','true','recipe_of_ritron','none'),
- ('5960','Ritron Jelly','false','none','10','normal','liquid','none','-1','1920','0','true','true','true','true','dessert_of_ritron','none'),
- ('5961','Kail\'s Silver Basilisk','false','none','0','stackable','liquid','none','-1','1000','0','true','true','true','true','q_kails_silver_basilisk','none'),
- ('5962','Kail\'s Gold Golem','false','none','0','stackable','liquid','none','-1','1000','0','true','true','true','true','q_kails_gold_golem','none'),
- ('5963','Kail\'s Blood Dragon','false','none','0','stackable','liquid','none','-1','1000','0','true','true','true','true','q_kails_blood_dragon','none'),
- ('5964','Warehouse Keeper\'s Medal','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','q_irongate_medal','none'),
- ('5965','Blank Scroll','false','none','0','stackable','liquid','none','-1','500','0','true','true','true','true','q_blank_scrl','none'),
- ('5966','Ancient Red Papyrus','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','ancient_papyrus1','none'),
- ('5967','Ancient Blue Papyrus','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','ancient_papyrus2','none'),
- ('5968','Ancient Black Papyrus','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','ancient_papyrus3','none'),
- ('5969','Ancient White Papyrus','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','ancient_papyrus4','none'),
- ('5970','Ancient Chain Letter','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','ancient_chain_letter','none'),
- ('5971','Ancient Joke Book','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','ancient_joke_book','none'),
- ('5972','Revelation of the Seals: Chapter of Avarice','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','revelation_avarice','none'),
- ('5973','Revelation of the Seals: Chapter of Gnosis','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','revelation_gnosis','none'),
- ('5974','Revelation of the Seals: Chapter of Strife','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','revelation_strife','none'),
- ('5975','Revelation of the Seals: Chapter of Vengeance','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','revelation_vengeance','none'),
- ('5976','Revelation of the Seals: Chapter of Awakening','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','revelation_awakening','none'),
- ('5977','Revelation of the Seals: Chapter of Calamity','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','revelation_calamity','none'),
- ('5978','Revelation of the Seals: Chapter of Descent','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','revelation_descent','none'),
- ('5979','Ancient Epic, Chapter 1','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','ancient_epic_part1','none'),
- ('5980','Ancient Epic, Chapter 2','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','ancient_epic_part2','none'),
- ('5981','Ancient Epic, Chapter 3','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','ancient_epic_part3','none'),
- ('5982','Ancient Epic, Chapter 4','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','ancient_epic_part4','none'),
- ('5983','Ancient Epic, Chapter 5','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','ancient_epic_part5','none'),
- ('5984','Imperial Genealogy 1','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','imperial_genealogy1','none'),
- ('5985','Imperial Genealogy 2','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','imperial_genealogy2','none'),
- ('5986','Imperial Genealogy 3','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','imperial_genealogy3','none'),
- ('5987','Imperial Genealogy 4','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','imperial_genealogy4','none'),
- ('5988','Imperial Genealogy 5','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','imperial_genealogy5','none'),
- ('5989','Blueprint: Tower of Insolence, 1st Floor','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','tower_blueprint1','none'),
- ('5990','Blueprint: Tower of Insolence, 2nd Floor','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','tower_blueprint2','none'),
- ('5991','Blueprint: Tower of Insolence, 3rd Floor','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','tower_blueprint3','none'),
- ('5992','Blueprint: Tower of Insolence, 4th Floor','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','tower_blueprint4','none'),
- ('5993','Blueprint: Tower of Insolence, 5th Floor','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','tower_blueprint5','none'),
- ('5994','Blueprint: Tower of Insolence, 6th Floor','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','tower_blueprint6','none'),
- ('5995','Blueprint: Tower of Insolence, 7th Floor','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','tower_blueprint7','none'),
- ('5996','Blueprint: Tower of Insolence, 8th Floor','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','tower_blueprint8','none'),
- ('5997','Blueprint: Tower of Insolence, 9th Floor','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','tower_blueprint9','none'),
- ('5998','Blueprint: Tower of Insolence, 10th Floor','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','tower_blueprint10','none'),
- ('5999','Blueprint: Tower of Insolence, 11th Floor','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','tower_blueprint11','none'),
- ('6000','Blueprint: Tower of Insolence, 12th Floor','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','tower_blueprint12','none'),
- ('6001','Blueprint: Tower of Insolence, 13th Floor','false','none','0','stackable','liquid','none','-1','400','0','true','true','true','true','tower_blueprint13','none'),
- ('6002','Ancient Porcelain','false','none','10','stackable','liquid','none','-1','8000','0','true','true','true','true','ancient_porcelain','none'),
- ('6003','Ancient Porcelain: Excellent','false','none','10','stackable','liquid','none','-1','12000','0','true','true','true','true','ancient_porcelain_s','none'),
- ('6004','Ancient Porcelain: High Quality','false','none','10','stackable','liquid','none','-1','8000','0','true','true','true','true','ancient_porcelain_a','none'),
- ('6005','Ancient Porcelain: Low Quality','false','none','10','stackable','liquid','none','-1','5000','0','true','true','true','true','ancient_porcelain_b','none'),
- ('6006','Ancient Porcelain: Lowest Quality','false','none','10','stackable','liquid','none','-1','2000','0','true','true','true','true','ancient_porcelain_c','none'),
- ('6007','Reagent Pouch','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','ingredient_pouch1','none'),
- ('6008','Reagent Pouch','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','ingredient_pouch2','none'),
- ('6009','Reagent Pouch','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','ingredient_pouch3','none'),
- ('6010','Reagent Box','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','ingredient_box','none'),
- ('6011','Wyrm\'s Blood','false','none','0','stackable','liquid','none','-1','200','0','true','true','true','true','wyrms_blood','none'),
- ('6012','Lava Stone','false','none','0','stackable','liquid','none','-1','200','0','true','true','true','true','lava_stone','none'),
- ('6013','Moonstone Shard','false','none','0','stackable','liquid','none','-1','200','0','true','true','true','true','moonstone_shard','none'),
- ('6014','Rotten Bone Piece','false','none','0','stackable','liquid','none','-1','200','0','true','true','true','true','decaying_bone','none'),
- ('6015','Demon\'s Blood','false','none','0','stackable','liquid','none','-1','200','0','true','true','true','true','demons_blood','none'),
- ('6016','Infernium Ore','false','none','0','stackable','liquid','none','-1','200','0','true','true','true','true','infernium_ore','none'),
- ('6017','Blood Root','false','none','0','stackable','liquid','none','-1','200','0','true','true','true','true','blood_root','none'),
- ('6018','Volcanic Ash','false','none','0','stackable','liquid','none','-1','100','0','true','true','true','true','volcanic_ash','none'),
- ('6019','Quicksilver','false','none','0','stackable','liquid','none','-1','200','0','true','true','true','true','quicksilver','none'),
- ('6020','Sulfur','false','none','0','stackable','liquid','none','-1','200','0','true','true','true','true','sulfur','none'),
- ('6021','Dracoplasm','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','dracoplasm','none'),
- ('6022','Magma Dust','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','magma_dust','none'),
- ('6023','Moon Dust','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','moon_dust','none'),
- ('6024','Necroplasm','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','necroplasm','none'),
- ('6025','Demonplasm','false','none','0','stackable','liquid','none','-1','2500','0','true','true','true','true','demonplasm','none'),
- ('6026','Inferno Dust','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','inferno_dust','none'),
- ('6027','Draconic Essence','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','draconic_essence','none'),
- ('6028','Fire Essence','false','none','0','stackable','liquid','none','-1','2500','0','true','true','true','true','fire_essence','none'),
- ('6029','Lunargent','false','none','0','stackable','liquid','none','-1','2500','0','true','true','true','true','lunargent','none'),
- ('6030','Midnight Oil','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','midnight_oil','none'),
- ('6031','Demonic Essence','false','none','0','stackable','liquid','none','-1','2500','0','true','true','true','true','demonic_essence','none'),
- ('6032','Abyss Oil','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','abyss_oil','none'),
- ('6033','Hellfire Oil','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','hellfire_oil','none'),
- ('6034','Nightmare Oil','false','none','0','stackable','liquid','none','-1','5000','0','true','true','true','true','nightmare_oil','none'),
- ('6035','Magic Haste Potion','false','potion','20','stackable','liquid','none','-1','2400','0','true','true','true','true','potion_of_acumen2','potion'),
- ('6036','Greater Magic Haste Potion','false','potion','20','stackable','liquid','none','-1','7200','0','true','true','true','true','potion_of_acumen3','potion'),
- ('6037','Waking Scroll','false','scroll','5','stackable','paper','none','-1','120','0','true','true','true','true','scroll_of_awake','scroll'),
- ('6038','Greater Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_gludio_sword_fix','castle_guard'),
- ('6039','Greater Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_gludio_pole_fix','castle_guard'),
- ('6040','Greater Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_gludio_bow_fix','castle_guard'),
- ('6041','Greater Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_gludio_cleric_fix','castle_guard'),
- ('6042','Greater Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_gludio_wizard_fix','castle_guard'),
- ('6043','Greater Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_gludio_sword_move','castle_guard'),
- ('6044','Greater Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_gludio_pole_move','castle_guard'),
- ('6045','Greater Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_gludio_bow_move','castle_guard'),
- ('6046','Greater Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_gludio_cleric_move','castle_guard'),
- ('6047','Greater Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_gludio_wizard_move','castle_guard'),
- ('6048','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6049','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6050','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6051','Greater Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_dion_sword_fix','castle_guard'),
- ('6052','Greater Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_dion_pole_fix','castle_guard'),
- ('6053','Greater Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_dion_bow_fix','castle_guard'),
- ('6054','Greater Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_dion_cleric_fix','castle_guard'),
- ('6055','Greater Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_dion_wizard_fix','castle_guard'),
- ('6056','Greater Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_dion_sword_move','castle_guard'),
- ('6057','Greater Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_dion_pole_move','castle_guard'),
- ('6058','Greater Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_dion_bow_move','castle_guard'),
- ('6059','Greater Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_dion_cleric_move','castle_guard'),
- ('6060','Greater Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_dion_wizard_move','castle_guard'),
- ('6061','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6062','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6063','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6064','Greater Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_giran_sword_fix','castle_guard'),
- ('6065','Greater Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_giran_pole_fix','castle_guard'),
- ('6066','Greater Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_giran_bow_fix','castle_guard'),
- ('6067','Greater Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_giran_cleric_fix','castle_guard'),
- ('6068','Greater Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_giran_wizard_fix','castle_guard'),
- ('6069','Greater Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_giran_sword_move','castle_guard'),
- ('6070','Greater Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_giran_pole_move','castle_guard'),
- ('6071','Greater Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_giran_bow_move','castle_guard'),
- ('6072','Greater Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_giran_cleric_move','castle_guard'),
- ('6073','Greater Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_giran_wizard_move','castle_guard'),
- ('6074','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6075','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6076','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6077','Greater Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_oren_sword_fix','castle_guard'),
- ('6078','Greater Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_oren_pole_fix','castle_guard'),
- ('6079','Greater Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_oren_bow_fix','castle_guard'),
- ('6080','Greater Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_oren_cleric_fix','castle_guard'),
- ('6081','Greater Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_oren_wizard_fix','castle_guard'),
- ('6082','Greater Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_oren_sword_move','castle_guard'),
- ('6083','Greater Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_oren_pole_move','castle_guard'),
- ('6084','Greater Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_oren_bow_move','castle_guard'),
- ('6085','Greater Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_oren_cleric_move','castle_guard'),
- ('6086','Greater Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_oren_wizard_move','castle_guard'),
- ('6087','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6088','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6089','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6090','Greater Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_aden_sword_fix','castle_guard'),
- ('6091','Greater Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_aden_pole_fix','castle_guard'),
- ('6092','Greater Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_aden_bow_fix','castle_guard'),
- ('6093','Greater Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_aden_cleric_fix','castle_guard'),
- ('6094','Greater Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_aden_wizard_fix','castle_guard'),
- ('6095','Greater Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_aden_sword_move','castle_guard'),
- ('6096','Greater Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_aden_pole_move','castle_guard'),
- ('6097','Greater Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_aden_bow_move','castle_guard'),
- ('6098','Greater Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_aden_cleric_move','castle_guard'),
- ('6099','Greater Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_aden_wizard_move','castle_guard'),
- ('6100','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6101','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6102','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6103','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6104','Trash - Trash','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','__golden_coda_seed_5','castle_guard'),
- ('6105','Greater Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_innadrile_sword_fix','castle_guard'),
- ('6106','Greater Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_innadrile_pole_fix','castle_guard'),
- ('6107','Greater Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_innadrile_bow_fix','castle_guard'),
- ('6108','Greater Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_innadrile_cleric_fix','castle_guard'),
- ('6109','Greater Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_innadrile_wizard_fix','castle_guard'),
- ('6110','Greater Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_innadrile_sword_move','castle_guard'),
- ('6111','Greater Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_innadrile_pole_move','castle_guard'),
- ('6112','Greater Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_innadrile_bow_move','castle_guard'),
- ('6113','Greater Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_innadrile_cleric_move','castle_guard'),
- ('6114','Greater Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','adv_mticket_innadrile_wizard_move','castle_guard'),
- ('6115','Dawn Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_gludio_sword_fix','castle_guard'),
- ('6116','Dawn Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_gludio_pole_fix','castle_guard'),
- ('6117','Dawn Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_gludio_bow_fix','castle_guard'),
- ('6118','Dawn Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_gludio_cleric_fix','castle_guard'),
- ('6119','Dawn Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_gludio_wizard_fix','castle_guard'),
- ('6120','Dawn Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_gludio_sword_move','castle_guard'),
- ('6121','Dawn Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_gludio_pole_move','castle_guard'),
- ('6122','Dawn Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_gludio_bow_move','castle_guard'),
- ('6123','Dawn Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_gludio_cleric_move','castle_guard'),
- ('6124','Dawn Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_gludio_wizard_move','castle_guard'),
- ('6125','Dawn Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_dion_sword_fix','castle_guard'),
- ('6126','Dawn Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_dion_pole_fix','castle_guard'),
- ('6127','Dawn Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_dion_bow_fix','castle_guard'),
- ('6128','Dawn Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_dion_cleric_fix','castle_guard'),
- ('6129','Dawn Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_dion_wizard_fix','castle_guard'),
- ('6130','Dawn Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_dion_sword_move','castle_guard'),
- ('6131','Dawn Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_dion_pole_move','castle_guard'),
- ('6132','Dawn Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_dion_bow_move','castle_guard'),
- ('6133','Dawn Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_dion_cleric_move','castle_guard'),
- ('6134','Dawn Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_dion_wizard_move','castle_guard'),
- ('6135','Dawn Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_giran_sword_fix','castle_guard'),
- ('6136','Dawn Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_giran_pole_fix','castle_guard'),
- ('6137','Dawn Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_giran_bow_fix','castle_guard'),
- ('6138','Dawn Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_giran_cleric_fix','castle_guard'),
- ('6139','Dawn Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_giran_wizard_fix','castle_guard'),
- ('6140','Dawn Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_giran_sword_move','castle_guard'),
- ('6141','Dawn Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_giran_pole_move','castle_guard'),
- ('6142','Dawn Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_giran_bow_move','castle_guard'),
- ('6143','Dawn Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_giran_cleric_move','castle_guard'),
- ('6144','Dawn Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_giran_wizard_move','castle_guard'),
- ('6145','Dawn Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_oren_sword_fix','castle_guard'),
- ('6146','Dawn Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_oren_pole_fix','castle_guard'),
- ('6147','Dawn Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_oren_bow_fix','castle_guard'),
- ('6148','Dawn Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_oren_cleric_fix','castle_guard'),
- ('6149','Dawn Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_oren_wizard_fix','castle_guard'),
- ('6150','Dawn Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_oren_sword_move','castle_guard'),
- ('6151','Dawn Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_oren_pole_move','castle_guard'),
- ('6152','Dawn Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_oren_bow_move','castle_guard'),
- ('6153','Dawn Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_oren_cleric_move','castle_guard'),
- ('6154','Dawn Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_oren_wizard_move','castle_guard'),
- ('6155','Dawn Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_aden_sword_fix','castle_guard'),
- ('6156','Dawn Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_aden_pole_fix','castle_guard'),
- ('6157','Dawn Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_aden_bow_fix','castle_guard'),
- ('6158','Dawn Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_aden_cleric_fix','castle_guard'),
- ('6159','Dawn Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_aden_wizard_fix','castle_guard'),
- ('6160','Dawn Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_aden_sword_move','castle_guard'),
- ('6161','Dawn Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_aden_pole_move','castle_guard'),
- ('6162','Dawn Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_aden_bow_move','castle_guard'),
- ('6163','Dawn Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_aden_cleric_move','castle_guard'),
- ('6164','Dawn Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_aden_wizard_move','castle_guard'),
- ('6165','Dawn Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_innadrile_sword_fix','castle_guard'),
- ('6166','Dawn Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_innadrile_pole_fix','castle_guard'),
- ('6167','Dawn Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_innadrile_bow_fix','castle_guard'),
- ('6168','Dawn Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_innadrile_cleric_fix','castle_guard'),
- ('6169','Dawn Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_innadrile_wizard_fix','castle_guard'),
- ('6170','Dawn Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_innadrile_sword_move','castle_guard'),
- ('6171','Dawn Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_innadrile_pole_move','castle_guard'),
- ('6172','Dawn Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_innadrile_bow_move','castle_guard'),
- ('6173','Dawn Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_innadrile_cleric_move','castle_guard'),
- ('6174','Dawn Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','dawn_mticket_innadrile_wizard_move','castle_guard'),
- ('6175','Greater Recruit Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_gludio_sword_fix','castle_guard'),
- ('6176','Greater Recruit Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_gludio_pole_fix','castle_guard'),
- ('6177','Greater Recruit Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_gludio_bow_fix','castle_guard'),
- ('6178','Greater Recruit Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_gludio_cleric_fix','castle_guard'),
- ('6179','Greater Recruit Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_gludio_wizard_fix','castle_guard'),
- ('6180','Greater Recruit Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_gludio_sword_move','castle_guard'),
- ('6181','Greater Recruit Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_gludio_pole_move','castle_guard'),
- ('6182','Greater Recruit Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_gludio_bow_move','castle_guard'),
- ('6183','Greater Recruit Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_gludio_cleric_move','castle_guard'),
- ('6184','Greater Recruit Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_gludio_wizard_move','castle_guard'),
- ('6185','Greater Recruit Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_dion_sword_fix','castle_guard'),
- ('6186','Greater Recruit Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_dion_pole_fix','castle_guard'),
- ('6187','Greater Recruit Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_dion_bow_fix','castle_guard'),
- ('6188','Greater Recruit Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_dion_cleric_fix','castle_guard'),
- ('6189','Greater Recruit Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_dion_wizard_fix','castle_guard'),
- ('6190','Greater Recruit Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_dion_sword_move','castle_guard'),
- ('6191','Greater Recruit Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_dion_pole_move','castle_guard'),
- ('6192','Greater Recruit Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_dion_bow_move','castle_guard'),
- ('6193','Greater Recruit Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_dion_cleric_move','castle_guard'),
- ('6194','Greater Recruit Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_dion_wizard_move','castle_guard'),
- ('6195','Greater Recruit Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_giran_sword_fix','castle_guard'),
- ('6196','Greater Recruit Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_giran_pole_fix','castle_guard'),
- ('6197','Greater Recruit Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_giran_bow_fix','castle_guard'),
- ('6198','Greater Recruit Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_giran_cleric_fix','castle_guard'),
- ('6199','Greater Recruit Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_giran_wizard_fix','castle_guard'),
- ('6200','Greater Recruit Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_giran_sword_move','castle_guard'),
- ('6201','Greater Recruit Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_giran_pole_move','castle_guard'),
- ('6202','Greater Recruit Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_giran_bow_move','castle_guard'),
- ('6203','Greater Recruit Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_giran_cleric_move','castle_guard'),
- ('6204','Greater Recruit Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_giran_wizard_move','castle_guard'),
- ('6205','Greater Recruit Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_oren_sword_fix','castle_guard'),
- ('6206','Greater Recruit Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_oren_pole_fix','castle_guard'),
- ('6207','Greater Recruit Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_oren_bow_fix','castle_guard'),
- ('6208','Greater Recruit Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_oren_cleric_fix','castle_guard'),
- ('6209','Greater Recruit Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_oren_wizard_fix','castle_guard'),
- ('6210','Greater Recruit Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_oren_sword_move','castle_guard'),
- ('6211','Greater Recruit Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_oren_pole_move','castle_guard'),
- ('6212','Greater Recruit Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_oren_bow_move','castle_guard'),
- ('6213','Greater Recruit Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_oren_cleric_move','castle_guard'),
- ('6214','Greater Recruit Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_oren_wizard_move','castle_guard'),
- ('6215','Greater Recruit Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_aden_sword_fix','castle_guard'),
- ('6216','Greater Recruit Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_aden_pole_fix','castle_guard'),
- ('6217','Greater Recruit Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_aden_bow_fix','castle_guard'),
- ('6218','Greater Recruit Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_aden_cleric_fix','castle_guard'),
- ('6219','Greater Recruit Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_aden_wizard_fix','castle_guard'),
- ('6220','Greater Recruit Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_aden_sword_move','castle_guard'),
- ('6221','Greater Recruit Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_aden_pole_move','castle_guard'),
- ('6222','Greater Recruit Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_aden_bow_move','castle_guard'),
- ('6223','Greater Recruit Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_aden_cleric_move','castle_guard'),
- ('6224','Greater Recruit Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_aden_wizard_move','castle_guard'),
- ('6225','Greater Recruit Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_innadrile_sword_fix','castle_guard'),
- ('6226','Greater Recruit Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_innadrile_pole_fix','castle_guard'),
- ('6227','Greater Recruit Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_innadrile_bow_fix','castle_guard'),
- ('6228','Greater Recruit Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_innadrile_cleric_fix','castle_guard'),
- ('6229','Greater Recruit Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_innadrile_wizard_fix','castle_guard'),
- ('6230','Greater Recruit Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_innadrile_sword_move','castle_guard'),
- ('6231','Greater Recruit Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_innadrile_pole_move','castle_guard'),
- ('6232','Greater Recruit Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_innadrile_bow_move','castle_guard'),
- ('6233','Greater Recruit Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_innadrile_cleric_move','castle_guard'),
- ('6234','Greater Recruit Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','twilight_mticket_innadrile_wizard_move','castle_guard'),
- ('6235','Recruit Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_gludio_sword_fix','castle_guard'),
- ('6236','Recruit Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_gludio_pole_fix','castle_guard'),
- ('6237','Recruit Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_gludio_bow_fix','castle_guard'),
- ('6238','Recruit Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_gludio_cleric_fix','castle_guard'),
- ('6239','Recruit Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_gludio_wizard_fix','castle_guard'),
- ('6240','Recruit Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_gludio_sword_move','castle_guard'),
- ('6241','Recruit Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_gludio_pole_move','castle_guard'),
- ('6242','Recruit Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_gludio_bow_move','castle_guard'),
- ('6243','Recruit Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_gludio_cleric_move','castle_guard'),
- ('6244','Recruit Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_gludio_wizard_move','castle_guard'),
- ('6245','Recruit Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_dion_sword_fix','castle_guard'),
- ('6246','Recruit Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_dion_pole_fix','castle_guard'),
- ('6247','Recruit Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_dion_bow_fix','castle_guard'),
- ('6248','Recruit Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_dion_cleric_fix','castle_guard'),
- ('6249','Recruit Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_dion_wizard_fix','castle_guard'),
- ('6250','Recruit Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_dion_sword_move','castle_guard'),
- ('6251','Recruit Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_dion_pole_move','castle_guard'),
- ('6252','Recruit Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_dion_bow_move','castle_guard'),
- ('6253','Recruit Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_dion_cleric_move','castle_guard'),
- ('6254','Recruit Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_dion_wizard_move','castle_guard'),
- ('6255','Recruit Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_giran_sword_fix','castle_guard'),
- ('6256','Recruit Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_giran_pole_fix','castle_guard'),
- ('6257','Recruit Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_giran_bow_fix','castle_guard'),
- ('6258','Recruit Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_giran_cleric_fix','castle_guard'),
- ('6259','Recruit Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_giran_wizard_fix','castle_guard'),
- ('6260','Recruit Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_giran_sword_move','castle_guard'),
- ('6261','Recruit Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_giran_pole_move','castle_guard'),
- ('6262','Recruit Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_giran_bow_move','castle_guard'),
- ('6263','Recruit Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_giran_cleric_move','castle_guard'),
- ('6264','Recruit Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_giran_wizard_move','castle_guard'),
- ('6265','Recruit Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_oren_sword_fix','castle_guard'),
- ('6266','Recruit Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_oren_pole_fix','castle_guard'),
- ('6267','Recruit Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_oren_bow_fix','castle_guard'),
- ('6268','Recruit Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_oren_cleric_fix','castle_guard'),
- ('6269','Recruit Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_oren_wizard_fix','castle_guard'),
- ('6270','Recruit Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_oren_sword_move','castle_guard'),
- ('6271','Recruit Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_oren_pole_move','castle_guard'),
- ('6272','Recruit Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_oren_bow_move','castle_guard'),
- ('6273','Recruit Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_oren_cleric_move','castle_guard'),
- ('6274','Recruit Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_oren_wizard_move','castle_guard'),
- ('6275','Recruit Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_aden_sword_fix','castle_guard'),
- ('6276','Recruit Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_aden_pole_fix','castle_guard'),
- ('6277','Recruit Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_aden_bow_fix','castle_guard'),
- ('6278','Recruit Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_aden_cleric_fix','castle_guard'),
- ('6279','Recruit Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_aden_wizard_fix','castle_guard'),
- ('6280','Recruit Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_aden_sword_move','castle_guard'),
- ('6281','Recruit Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_aden_pole_move','castle_guard'),
- ('6282','Recruit Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_aden_bow_move','castle_guard'),
- ('6283','Recruit Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_aden_cleric_move','castle_guard'),
- ('6284','Recruit Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_aden_wizard_move','castle_guard'),
- ('6285','Recruit Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_innadrile_sword_fix','castle_guard'),
- ('6286','Recruit Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_innadrile_pole_fix','castle_guard'),
- ('6287','Recruit Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_innadrile_bow_fix','castle_guard'),
- ('6288','Recruit Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_innadrile_cleric_fix','castle_guard'),
- ('6289','Recruit Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_innadrile_wizard_fix','castle_guard'),
- ('6290','Recruit Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_innadrile_sword_move','castle_guard'),
- ('6291','Recruit Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_innadrile_pole_move','castle_guard'),
- ('6292','Recruit Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_innadrile_bow_move','castle_guard'),
- ('6293','Recruit Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_innadrile_cleric_move','castle_guard'),
- ('6294','Recruit Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','gloom_mticket_innadrile_wizard_move','castle_guard'),
- ('6295','Nephilim Warrior Posting Ticket','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','nephilim_mticket_gludio_sword_move','castle_guard'),
- ('6296','Nephilim Shaman Posting Ticket','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','nephilim_mticket_gludio_wizard_move','castle_guard'),
- ('6297','Nephilim Warrior Posting Ticket','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','nephilim_mticket_dion_sword_move','castle_guard'),
- ('6298','Nephilim Shaman Posting Ticket','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','nephilim_mticket_dion_wizard_move','castle_guard'),
- ('6299','Nephilim Warrior Posting Ticket','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','nephilim_mticket_giran_sword_move','castle_guard'),
- ('6300','Nephilim Shaman Posting Ticket','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','nephilim_mticket_giran_wizard_move','castle_guard'),
- ('6301','Nephilim Warrior Posting Ticket','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','nephilim_mticket_oren_sword_move','castle_guard'),
- ('6302','Nephilim Shaman Posting Ticket','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','nephilim_mticket_oren_wizard_move','castle_guard'),
- ('6303','Nephilim Warrior Posting Ticket','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','nephilim_mticket_aden_sword_move','castle_guard'),
- ('6304','Nephilim Shaman Posting Ticket','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','nephilim_mticket_aden_wizard_move','castle_guard'),
- ('6305','Nephilim Warrior Posting Ticket','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','nephilim_mticket_innadrile_sword_move','castle_guard'),
- ('6306','Nephilim Shaman Posting Ticket','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','nephilim_mticket_innadrile_wizard_move','castle_guard'),
- ('6316','Food for Wyvern','false','none','30','stackable','liquid','none','-1','300','0','true','true','true','true','advdeluxe_food_for_strider','none'),
- ('6317','Mixing Manual','false','none','20','normal','liquid','none','-1','0','0','true','false','true','true','mixing_manual','none'),
- ('6318','Blood Fire','false','quest','50','stackable','liquid','none','-1','0','0','true','true','true','true','bloodfire','none'),
- ('6319','Mimir\'s Elixir','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','mimirs_elixir','none'),
- ('6320','Pure Silver','false','quest','0','stackable','liquid','none','-1','0','0','true','true','true','true','pure_silver','none'),
- ('6321','True Gold','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','false_gold','none'),
- ('6322','Sage\'s Stone','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','philosophers_stone','none'),
- ('6329','Recipe: Sealed Phoenix Necklace(70%)','false','recipe','30','stackable','liquid','none','-1','34800','0','true','true','true','true','rp_sealed_phoenix\'s_necklace_i','recipe'),
- ('6330','Recipe: Sealed Phoenix Necklace(100%)','false','recipe','30','stackable','liquid','none','-1','69600','0','true','true','true','true','rp_sealed_phoenix\'s_necklace','recipe'),
- ('6331','Recipe: Sealed Phoenix Earring(70%)','false','recipe','30','stackable','liquid','none','-1','26200','0','true','true','true','true','rp_sealed_phoenix\'s_earing_i','recipe'),
- ('6332','Recipe: Sealed Phoenix Earring(100%)','false','recipe','30','stackable','liquid','none','-1','52400','0','true','true','true','true','rp_sealed_phoenix\'s_earing','recipe'),
- ('6333','Recipe: Sealed Phoenix Ring(70%)','false','recipe','30','stackable','liquid','none','-1','17420','0','true','true','true','true','rp_sealed_phoenix\'s_ring_i','recipe'),
- ('6334','Recipe: Sealed Phoenix Ring(100%)','false','recipe','30','stackable','liquid','none','-1','34840','0','true','true','true','true','rp_sealed_phoenix\'s_ring','recipe'),
- ('6335','Recipe: Sealed Majestic Necklace(70%)','false','recipe','30','stackable','liquid','none','-1','52000','0','true','true','true','true','rp_sealed_majestic_necklace_i','recipe'),
- ('6336','Recipe: Sealed Majestic Necklace(100%)','false','recipe','30','stackable','liquid','none','-1','104000','0','true','true','true','true','rp_sealed_majestic_necklace','recipe'),
- ('6337','Recipe: Sealed Majestic Earring(70%)','false','recipe','30','stackable','liquid','none','-1','39000','0','true','true','true','true','rp_sealed_majestic_earing_i','recipe'),
- ('6338','Recipe: Sealed Majestic Earring(100%)','false','recipe','30','stackable','liquid','none','-1','78000','0','true','true','true','true','rp_sealed_majestic_earing','recipe'),
- ('6339','Recipe: Sealed Majestic Ring(70%)','false','recipe','30','stackable','liquid','none','-1','26000','0','true','true','true','true','rp_sealed_majestic_ring_i','recipe'),
- ('6340','Recipe: Sealed Majestic Ring(100%)','false','recipe','30','stackable','liquid','none','-1','52000','0','true','true','true','true','rp_sealed_majestic_ring','recipe'),
- ('6341','Sealed Phoenix Earring Gemstone','false','material','60','stackable','liquid','none','-1','7231','0','true','true','true','true','sealed_phoenix\'s_earing_gemstone','material'),
- ('6342','Sealed Majestic Earring Gemstone','false','material','60','stackable','liquid','none','-1','8829','0','true','true','true','true','sealed_majestic_earing_gemstone','material'),
- ('6343','Sealed Phoenix Necklace Beads','false','material','60','stackable','liquid','none','-1','9354','0','true','true','true','true','sealed_phoenix\'s_necklace_beads','material'),
- ('6344','Sealed Majestic Necklace Beads','false','material','60','stackable','liquid','none','-1','13643','0','true','true','true','true','sealed_majestic_necklace_beads','material'),
- ('6345','Sealed Phoenix Ring Gemstone','false','material','60','stackable','liquid','none','-1','5228','0','true','true','true','true','sealed_phoenix\'s_ring_gemstone','material'),
- ('6346','Sealed Majestic Ring Gemstone','false','material','60','stackable','liquid','none','-1','6143','0','true','true','true','true','sealed_majestic_ring_gemstrone','material'),
- ('6350','Amulet: Pa\'agrio\'s Honor','false','spellbook','120','normal','paper','none','-1','8700','0','true','true','true','true','sb_honor_of_paagrio1','none'),
- ('6351','Amulet: Ritual of Life','false','spellbook','120','normal','paper','none','-1','8200','0','true','true','true','true','sb_ritual_of_life1','none'),
- ('6352','Spellbook: Prayer','false','spellbook','120','normal','paper','none','-1','8700','0','true','true','true','true','sb_prayer1','none'),
- ('6353','Blue Gemstone','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','blue_gem','none'),
- ('6360','Blue Seal Stone','false','none','0','asset','gold','none','-1','3','0','true','true','true','true','blue_seal_stone','none'),
- ('6361','Green Seal Stone','false','none','0','asset','gold','none','-1','5','0','true','true','true','true','green_seal_stone','none'),
- ('6362','Red Seal Stone','false','none','0','asset','gold','none','-1','10','0','true','true','true','true','red_seal_stone','none'),
- ('6363','Stolen Infernium Ore','false','none','0','stackable','steel','none','-1','100','0','true','true','true','true','stolen_infernium_ore','none'),
- ('6387','Blessed Scroll of Resurrection for Pets','false','scroll','120','stackable','paper','none','-1','6000','0','true','true','true','true','blessed_scroll_of_resurrection_for_pet','scroll'),
- ('6388','Lord of the Manor\'s Certificate of Approval','false','none','0','stackable','liquid','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6389','Squash Seed','false','none','0','stackable','paper','none','-1','0','0','true','false','true','true','C4Item','none'),
- ('6390','Large Squash Seed','false','none','0','stackable','paper','none','-1','0','0','true','false','true','true','C4Item','none'),
- ('6391','Pollen','false','none','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6392','Event - Medal','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6393','Event - Glittering Medal','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6395','Amulet: Chant of Predator','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','predator_amulet','none'),
- ('6396','Amulet: Chant of Eagle','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','eagle_amulet','none'),
- ('6397','Amulet: Chant of Vampire','false','spellbook','120','normal','paper','none','-1','3850','0','true','true','true','true','vampire_amulet','none'),
- ('6398','Spellbook: Body of Avatar','false','spellbook','120','normal','paper','none','-1','4600','0','true','true','true','true','avatar_of_spellbook','none'),
- ('6399','Badge of Rabbit','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','C4Item','none'),
- ('6400','Badge of Hyena','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','C4Item','none'),
- ('6401','Badge of Fox','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','C4Item','none'),
- ('6402','Badge of Wolf','false','quest','0','stackable','crystal','none','-1','0','0','false','false','true','false','C4Item','none'),
- ('6403','Star Shard','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','elven_firecracker','none'),
- ('6404','Gunpowder','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','gunpowder','none'),
- ('6405','Magnesium','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','magnesium','none'),
- ('6406','Firework','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','firework','none'),
- ('6407','Large Firework','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','large_firework','none'),
- ('6409','2006 Battle Tournament - CP Potion','false','potion','500','stackable','liquid','none','-1','0','0','true','true','true','true','C4Item','potion'),
- ('6410','2006 Battle Tournament - Quick Healing Potion','false','potion','180','stackable','liquid','none','-1','0','0','true','true','true','true','C4Item','potion'),
- ('6411','Small Nimble Green Fish','false','none','100','stackable','paper','none','-1','138','0','true','true','true','true','C4Item','castle_guard'),
- ('6412','Small Ugly Green Fish','false','none','100','stackable','paper','none','-1','141','0','true','true','true','true','C4Item','castle_guard'),
- ('6413','Small Pudgy Green Fish','false','none','100','stackable','paper','none','-1','153','0','true','true','true','true','C4Item','castle_guard'),
- ('6414','Nimble Green Fish','false','none','100','stackable','paper','none','-1','167','0','true','true','true','true','C4Item','castle_guard'),
- ('6415','Ugly Green Fish','false','none','100','stackable','paper','none','-1','187','0','true','true','true','true','C4Item','castle_guard'),
- ('6416','Pudgy Green Fish','false','none','100','stackable','paper','none','-1','208','0','true','true','true','true','C4Item','castle_guard'),
- ('6417','Large Nimble Green Fish','false','none','100','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6418','Large Ugly Green Fish','false','none','100','stackable','paper','none','-1','248','0','true','true','true','true','C4Item','castle_guard'),
- ('6419','Large Pudgy Green Fish','false','none','100','stackable','paper','none','-1','265','0','true','true','true','true','C4Item','castle_guard'),
- ('6420','Small Jade Nimble Fish','false','none','100','stackable','paper','none','-1','285','0','true','true','true','true','C4Item','castle_guard'),
- ('6421','Small Jade Ugly Fish','false','none','100','stackable','paper','none','-1','295','0','true','true','true','true','C4Item','castle_guard'),
- ('6422','Small Jade Fat Fish','false','none','100','stackable','paper','none','-1','310','0','true','true','true','true','C4Item','castle_guard'),
- ('6423','Jade Nimble Fish','false','none','100','stackable','paper','none','-1','325','0','true','true','true','true','C4Item','castle_guard'),
- ('6424','Jade Ugly Fish','false','none','100','stackable','paper','none','-1','340','0','true','true','true','true','C4Item','castle_guard'),
- ('6425','Jade Fat Fish','false','none','100','stackable','paper','none','-1','355','0','true','true','true','true','C4Item','castle_guard'),
- ('6426','Big Jade Nimble Fish','false','none','100','stackable','paper','none','-1','365','0','true','true','true','true','C4Item','castle_guard'),
- ('6427','Big Jade Ugly Fish','false','none','100','stackable','paper','none','-1','375','0','true','true','true','true','C4Item','castle_guard'),
- ('6428','Big Jade Fat Fish','false','none','100','stackable','paper','none','-1','385','0','true','true','true','true','C4Item','castle_guard'),
- ('6429','Small Blue Nimble Fish','false','none','100','stackable','paper','none','-1','395','0','true','true','true','true','C4Item','castle_guard'),
- ('6430','Small Blue Ugly Fish','false','none','100','stackable','paper','none','-1','400','0','true','true','true','true','C4Item','castle_guard'),
- ('6431','Small Blue Fat Fish','false','none','100','stackable','paper','none','-1','410','0','true','true','true','true','C4Item','castle_guard'),
- ('6432','Blue Nimble Fish','false','none','100','stackable','paper','none','-1','415','0','true','true','true','true','C4Item','castle_guard'),
- ('6433','Blue Ugly Fish','false','none','100','stackable','paper','none','-1','418','0','true','true','true','true','C4Item','castle_guard'),
- ('6434','Blue Fat Fish','false','none','100','stackable','paper','none','-1','420','0','true','true','true','true','C4Item','castle_guard'),
- ('6435','Big Blue Nimble Fish','false','none','100','stackable','paper','none','-1','425','0','true','true','true','true','C4Item','castle_guard'),
- ('6436','Big Blue Ugly Fish','false','none','100','stackable','paper','none','-1','431','0','true','true','true','true','C4Item','castle_guard'),
- ('6437','Big Blue Fat Fish','false','none','100','stackable','paper','none','-1','435','0','true','true','true','true','C4Item','castle_guard'),
- ('6438','Small Yellow Nimble Fish','false','none','100','stackable','paper','none','-1','442','0','true','true','true','true','C4Item','castle_guard'),
- ('6439','Small Yellow Ugly Fish','false','none','100','stackable','paper','none','-1','447','0','true','true','true','true','C4Item','castle_guard'),
- ('6440','Small Yellow Fat Fish','false','none','100','stackable','paper','none','-1','452','0','true','true','true','true','C4Item','castle_guard'),
- ('6441','Yellow Nimble Fish','false','none','100','stackable','paper','none','-1','540','0','true','true','true','true','C4Item','castle_guard'),
- ('6442','Yellow Ugly Fish','false','none','100','stackable','paper','none','-1','553','0','true','true','true','true','C4Item','castle_guard'),
- ('6443','Yellow Fat Fish','false','none','100','stackable','paper','none','-1','568','0','true','true','true','true','C4Item','castle_guard'),
- ('6444','Big Yellow Nimble Fish','false','none','100','stackable','paper','none','-1','580','0','true','true','true','true','C4Item','castle_guard'),
- ('6445','Big Yellow Ugly Fish','false','none','100','stackable','paper','none','-1','594','0','true','true','true','true','C4Item','castle_guard'),
- ('6446','Big Yellow Fat Fish','false','none','100','stackable','paper','none','-1','608','0','true','true','true','true','C4Item','castle_guard'),
- ('6447','Small Orange Nimble Fish','false','none','100','stackable','paper','none','-1','622','0','true','true','true','true','C4Item','castle_guard'),
- ('6448','Small Orange Ugly Fish','false','none','100','stackable','paper','none','-1','635','0','true','true','true','true','C4Item','castle_guard'),
- ('6449','Small Orange Fat Fish','false','none','100','stackable','paper','none','-1','649','0','true','true','true','true','C4Item','castle_guard'),
- ('6450','Orange Nimble Fish','false','none','100','stackable','paper','none','-1','663','0','true','true','true','true','C4Item','castle_guard'),
- ('6451','Orange Ugly Fish','false','none','100','stackable','paper','none','-1','776','0','true','true','true','true','C4Item','castle_guard'),
- ('6452','Orange Fat Fish','false','none','100','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6453','Big Orange Nimble Fish','false','none','100','stackable','paper','none','-1','816','0','true','true','true','true','C4Item','castle_guard'),
- ('6454','Big Orange Ugly Fish','false','none','100','stackable','paper','none','-1','840','0','true','true','true','true','C4Item','castle_guard'),
- ('6455','Big Orange Fat Fish','false','none','100','stackable','paper','none','-1','858','0','true','true','true','true','C4Item','castle_guard'),
- ('6456','Small Purple Nimble Fish','false','none','100','stackable','paper','none','-1','875','0','true','true','true','true','C4Item','castle_guard'),
- ('6457','Small Purple Ugly Fish','false','none','100','stackable','paper','none','-1','893','0','true','true','true','true','C4Item','castle_guard'),
- ('6458','Small Purple Fat Fish','false','none','100','stackable','paper','none','-1','910','0','true','true','true','true','C4Item','castle_guard'),
- ('6459','Purple Nimble Fish','false','none','100','stackable','paper','none','-1','930','0','true','true','true','true','C4Item','castle_guard'),
- ('6460','Purple Ugly Fish','false','none','100','stackable','paper','none','-1','948','0','true','true','true','true','C4Item','castle_guard'),
- ('6461','Purple Fat Fish','false','none','100','stackable','paper','none','-1','1090','0','true','true','true','true','C4Item','castle_guard'),
- ('6462','Big Purple Nimble Fish','false','none','100','stackable','paper','none','-1','1111','0','true','true','true','true','C4Item','castle_guard'),
- ('6463','Big Purple Ugly Fish','false','none','100','stackable','paper','none','-1','1133','0','true','true','true','true','C4Item','castle_guard'),
- ('6464','Big Purple Fat Fish','false','none','100','stackable','paper','none','-1','1157','0','true','true','true','true','C4Item','castle_guard'),
- ('6465','Small Red Nimble Fish','false','none','100','stackable','paper','none','-1','1277','0','true','true','true','true','C4Item','castle_guard'),
- ('6466','Small Red Ugly Fish','false','none','100','stackable','paper','none','-1','1301','0','true','true','true','true','C4Item','castle_guard'),
- ('6467','Small Red Fat Fish','false','none','100','stackable','paper','none','-1','1326','0','true','true','true','true','C4Item','castle_guard'),
- ('6468','Red Nimble Fish','false','none','100','stackable','paper','none','-1','1351','0','true','true','true','true','C4Item','castle_guard'),
- ('6469','Red Ugly Fish','false','none','100','stackable','paper','none','-1','1376','0','true','true','true','true','C4Item','castle_guard'),
- ('6470','Red Fat Fish','false','none','100','stackable','paper','none','-1','1402','0','true','true','true','true','C4Item','castle_guard'),
- ('6471','Big Red Nimble Fish','false','none','100','stackable','paper','none','-1','1577','0','true','true','true','true','C4Item','castle_guard'),
- ('6472','Big Red Ugly Fish','false','none','100','stackable','paper','none','-1','1608','0','true','true','true','true','C4Item','castle_guard'),
- ('6473','Big Red Fat Fish','false','none','100','stackable','paper','none','-1','1715','0','true','true','true','true','C4Item','castle_guard'),
- ('6474','Small White Nimble Fish','false','none','100','stackable','paper','none','-1','1747','0','true','true','true','true','C4Item','castle_guard'),
- ('6475','Small White Ugly Fish','false','none','100','stackable','paper','none','-1','1781','0','true','true','true','true','C4Item','castle_guard'),
- ('6476','Small White Fat Fish','false','none','100','stackable','paper','none','-1','1814','0','true','true','true','true','C4Item','castle_guard'),
- ('6477','White Nimble Fish','false','none','100','stackable','paper','none','-1','1849','0','true','true','true','true','C4Item','castle_guard'),
- ('6478','White Ugly Fish','false','none','100','stackable','paper','none','-1','1887','0','true','true','true','true','C4Item','castle_guard'),
- ('6479','White Fat Fish','false','none','100','stackable','paper','none','-1','1923','0','true','true','true','true','C4Item','castle_guard'),
- ('6480','Big White Nimble Fish','false','none','100','stackable','paper','none','-1','1961','0','true','true','true','true','C4Item','castle_guard'),
- ('6481','Big White Ugly Fish','false','none','100','stackable','paper','none','-1','2000','0','true','true','true','true','C4Item','castle_guard'),
- ('6482','Big White Fat Fish','false','none','100','stackable','paper','none','-1','2039','0','true','true','true','true','C4Item','castle_guard'),
- ('6483','Small Black Nimble Fish','false','none','100','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6484','Small Black Ugly Fish','false','none','100','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6485','Small Black Fat Fish','false','none','100','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6486','Black Nimble Fish','false','none','100','stackable','paper','none','-1','2309','0','true','true','true','true','C4Item','castle_guard'),
- ('6487','Black Ugly Fish','false','none','100','stackable','paper','none','-1','2357','0','true','true','true','true','C4Item','castle_guard'),
- ('6488','Black Fat Fish','false','none','100','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6489','Big Black Nimble Fish','false','none','100','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6490','Big Black Ugly Fish','false','none','100','stackable','paper','none','-1','2502','0','true','true','true','true','C4Item','castle_guard'),
- ('6491','Big Black Fat Fish','false','none','100','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6492','Small Green Treasure Chest','false','none','100','stackable','paper','none','-1','153','0','true','true','true','true','C4Item','castle_guard'),
- ('6493','Green Treasure Chest','false','none','100','stackable','paper','none','-1','208','0','true','true','true','true','C4Item','castle_guard'),
- ('6494','Big Green Treasure Chest','false','none','100','stackable','paper','none','-1','265','0','true','true','true','true','C4Item','castle_guard'),
- ('6495','Small Jade Treasure Chest','false','none','100','stackable','paper','none','-1','285','0','true','true','true','true','C4Item','castle_guard'),
- ('6496','Jade Treasure Chest','false','none','100','stackable','paper','none','-1','315','0','true','true','true','true','C4Item','castle_guard'),
- ('6497','Big Jade Treasure Chest','false','none','100','stackable','paper','none','-1','345','0','true','true','true','true','C4Item','castle_guard'),
- ('6498','Small Blue Treasure Chest','false','none','100','stackable','paper','none','-1','395','0','true','true','true','true','C4Item','castle_guard'),
- ('6499','Blue Treasure Chest','false','none','100','stackable','paper','none','-1','419','0','true','true','true','true','C4Item','castle_guard'),
- ('6500','Big Blue Treasure Chest','false','none','100','stackable','paper','none','-1','435','0','true','true','true','true','C4Item','castle_guard'),
- ('6501','Small Yellow Treasure Chest','false','none','100','stackable','paper','none','-1','452','0','true','true','true','true','C4Item','castle_guard'),
- ('6502','Yellow Treasure Chest','false','none','100','stackable','paper','none','-1','568','0','true','true','true','true','C4Item','castle_guard'),
- ('6503','Big Yellow Treasure Chest','false','none','100','stackable','paper','none','-1','608','0','true','true','true','true','C4Item','castle_guard'),
- ('6504','Small Orange Treasure Chest','false','none','100','stackable','paper','none','-1','649','0','true','true','true','true','C4Item','castle_guard'),
- ('6505','Orange Treasure Chest','false','none','100','stackable','paper','none','-1','792','0','true','true','true','true','C4Item','castle_guard'),
- ('6506','Big Orange Treasure Chest','false','none','100','stackable','paper','none','-1','858','0','true','true','true','true','C4Item','castle_guard'),
- ('6507','Small Purple Treasure Chest','false','none','100','stackable','paper','none','-1','910','0','true','true','true','true','C4Item','castle_guard'),
- ('6508','Purple Treasure Chest','false','none','100','stackable','paper','none','-1','1090','0','true','true','true','true','C4Item','castle_guard'),
- ('6509','Big Purple Treasure Chest','false','none','100','stackable','paper','none','-1','1157','0','true','true','true','true','C4Item','castle_guard'),
- ('6510','Small Red Treasure Chest','false','none','100','stackable','paper','none','-1','1326','0','true','true','true','true','C4Item','castle_guard'),
- ('6511','Red Treasure Chest','false','none','100','stackable','paper','none','-1','1402','0','true','true','true','true','C4Item','castle_guard'),
- ('6512','Big Red Treasure Chest','false','none','100','stackable','paper','none','-1','1715','0','true','true','true','true','C4Item','castle_guard'),
- ('6513','Small White Treasure Chest','false','none','100','stackable','paper','none','-1','1814','0','true','true','true','true','C4Item','castle_guard'),
- ('6514','White Treasure Chest','false','none','100','stackable','paper','none','-1','1923','0','true','true','true','true','C4Item','castle_guard'),
- ('6515','Big White Treasure Chest','false','none','100','stackable','paper','none','-1','2039','0','true','true','true','true','C4Item','castle_guard'),
- ('6516','Small Black Treasure Chest','false','none','100','stackable','paper','none','-1','2166','0','true','true','true','true','C4Item','castle_guard'),
- ('6517','Black Treasure Chest','false','none','100','stackable','paper','none','-1','2403','0','true','true','true','true','C4Item','castle_guard'),
- ('6518','Big Black Treasure Chest','false','none','100','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6519','Green Colored Lure - Low Grade','false','lure','5','stackable','liquid','none','-1','100','0','true','true','true','true','C4Item','castle_guard'),
- ('6520','Green Colored Lure','false','lure','4','stackable','liquid','none','-1','120','0','true','true','true','true','C4Item','castle_guard'),
- ('6521','Green Colored Lure - High Grade','false','lure','3','stackable','liquid','none','-1','150','0','true','true','true','true','C4Item','castle_guard'),
- ('6522','Purple Colored Lure - Low Grade','false','lure','5','stackable','liquid','none','-1','150','0','true','true','true','true','C4Item','castle_guard'),
- ('6523','Purple Colored Lure','false','lure','4','stackable','liquid','none','-1','180','0','true','true','true','true','C4Item','castle_guard'),
- ('6524','Purple Colored Lure - High Grade','false','lure','3','stackable','liquid','none','-1','200','0','true','true','true','true','C4Item','castle_guard'),
- ('6525','Yellow Colored Lure - Low Grade','false','lure','5','stackable','liquid','none','-1','120','0','true','true','true','true','C4Item','castle_guard'),
- ('6526','Yellow Colored Lure','false','lure','4','stackable','liquid','none','-1','150','0','true','true','true','true','C4Item','castle_guard'),
- ('6527','Yellow Colored Lure - High Grade','false','lure','3','stackable','liquid','none','-1','180','0','true','true','true','true','C4Item','castle_guard'),
- ('6528','Event bait','false','lure','3','stackable','liquid','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6535','Fishing Shot: non-grade','false','shot','3','stackable','paper','none','-1','3','0','true','true','true','true','Fishing Shot: non-grade','none'),
- ('6536','Fishing Shot: D-grade','false','shot','3','stackable','paper','d','-1','5','0','true','true','true','true','Fishing Shot: D-grade','none'),
- ('6537','Fishing Shot: C-grade','false','shot','3','stackable','paper','c','-1','7','0','true','true','true','true','Fishing Shot: C-grade','none'),
- ('6538','Fishing Shot: B-grade','false','shot','3','stackable','paper','b','-1','25','0','true','true','true','true','Fishing Shot: B-grade','none'),
- ('6539','Fishing Shot: A-grade','false','shot','3','stackable','paper','a','-1','40','0','true','true','true','true','Fishing Shot: A-grade','none'),
- ('6540','Fishing Shot: S-grade','false','shot','3','stackable','paper','s','-1','50','0','true','true','true','true','Fishing Shot: S-grade','none'),
- ('6541','Blue Coba','false','none',2,'stackable','paper','none',-1,1250,0,'true','true','true','true','C5Item','none'),
- ('6542','Red Coba','false','none',2,'stackable','paper','none',-1,1500,0,'true','true','true','true','C5Item','none'),
- ('6543','Gold Coba','false','none',2,'stackable','paper','none',-1,1750,0,'true','true','true','true','C5Item','none'),
- ('6544','Desert Coba','false','none',2,'stackable','paper','none',-1,2000,0,'true','true','true','true','C5Item','none'),
- ('6545','Sea Coba','false','none',2,'stackable','paper','none',-1,2250,0,'true','true','true','true','C5Item','none'),
- ('6546','Twin Coba','false','none',2,'stackable','paper','none',-1,2500,0,'true','true','true','true','C5Item','none'),
- ('6547','King Coba','false','none',2,'stackable','paper','none',-1,2750,0,'true','true','true','true','C5Item','none'),
- ('6548','Alternative Blue Coba','false','none',2,'stackable','paper','none',-1,1250,0,'true','true','true','true','C5Item','none'),
- ('6549','Alternative Red Coba','false','none',2,'stackable','paper','none',-1,1500,0,'true','true','true','true','C5Item','none'),
- ('6550','Alternative Gold Coba','false','none',2,'stackable','paper','none',-1,1750,0,'true','true','true','true','C5Item','none'),
- ('6551','Alternative Desert Coba','false','none',2,'stackable','paper','none',-1,2000,0,'true','true','true','true','C5Item','none'),
- ('6552','Alternative Sea Coba','false','none',2,'stackable','paper','none',-1,2250,0,'true','true','true','true','C5Item','none'),
- ('6553','Alternative Twin Coba','false','none',2,'stackable','paper','none',-1,2500,0,'true','true','true','true','C5Item','none'),
- ('6554','Alternative King Coba','false','none',2,'stackable','paper','none',-1,2750,0,'true','true','true','true','C5Item','none'),
- ('6555','Ripe Blue Coba','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('6556','Ripe Red Coba','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('6557','Ripe Gold Coba','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('6558','Ripe Desert Coba','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('6559','Ripe Sea Coba','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('6560','Ripe Twin Coba','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('6561','Ripe King Coba','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('6562','Ripe Alternative Blue Coba','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('6563','Ripe Alternative Red Coba','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('6564','Ripe Alternative Gold Coba','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('6565','Ripe Alternative Desert Coba','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('6566','Ripe Alternative Sea Coba','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('6567','Ripe Alternative Twin Coba','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('6568','Ripe Alternative King Coba','false','none',1,'stackable','paper','none',-1,0,0,'true','true','true','true','C5Item','none'),
- ('6569','Blessed Scroll: Enchant Weapon (Grade A)','false','scroll','120','normal','paper','none','-1','1750000','0','true','true','true','true','C4Item','castle_guard'),
- ('6570','Blessed Scroll: Enchant Armor (Grade A)','false','scroll','120','normal','paper','none','-1','750000','0','true','true','true','true','C4Item','castle_guard'),
- ('6571','Blessed Scroll: Enchant Weapon (Grade B)','false','scroll','120','normal','paper','none','-1','1250000','0','true','true','true','true','C4Item','castle_guard'),
- ('6572','Blessed Scroll: Enchant Armor (Grade B)','false','scroll','120','normal','paper','none','-1','250000','0','true','true','true','true','C4Item','castle_guard'),
- ('6573','Blessed Scroll: Enchant Weapon (Grade C)','false','scroll','120','normal','paper','none','-1','250000','0','true','true','true','true','C4Item','castle_guard'),
- ('6574','Blessed Scroll: Enchant Armor (Grade C)','false','scroll','120','normal','paper','none','-1','100000','0','true','true','true','true','C4Item','castle_guard'),
- ('6575','Blessed Scroll: Enchant Weapon (Grade D)','false','scroll','120','normal','paper','none','-1','150000','0','true','true','true','true','C4Item','castle_guard'),
- ('6576','Blessed Scroll: Enchant Armor (Grade D)','false','scroll','120','normal','paper','none','-1','50000','0','true','true','true','true','C4Item','castle_guard'),
- ('6577','Blessed Scroll: Enchant Weapon (Grade S)','false','scroll','120','normal','paper','none','-1','2250000','0','true','true','true','true','C4Item','castle_guard'),
- ('6578','Blessed Scroll: Enchant Armor (Grade S)','false','scroll','120','normal','paper','none','-1','1250000','0','true','true','true','true','C4Item','castle_guard'),
- ('6622','Secret Book of Giants','false','none','10','normal','paper','none','-1','500000','0','true','true','true','true','C4Item','castle_guard'),
- ('6623','Dummy - Quest Item 1','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','C4Item','castle_guard'),
- ('6624','Dummy - Quest Item 2','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','C4Item','castle_guard'),
- ('6625','Dummy - Quest Item 3','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','C4Item','castle_guard'),
- ('6626','Dummy - Quest Item 4','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','C4Item','castle_guard'),
- ('6627','Dummy - Quest Item 5','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','C4Item','castle_guard'),
- ('6628','Dummy - Quest Item 6','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','C4Item','castle_guard'),
- ('6629','Dummy - Quest Item 7','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','C4Item','castle_guard'),
- ('6630','Dummy - Quest Item 8','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','C4Item','castle_guard'),
- ('6631','Dummy - Quest Item 9','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','C4Item','castle_guard'),
- ('6632','Dummy - Quest Item 10','false','quest','0','stackable','steel','none','-1','0','0','false','false','true','false','C4Item','castle_guard'),
- ('6633','Dummy - General Item 1','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6634','Dummy - General Item 2','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6635','Dummy - General Item 3','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6636','Dummy - General Item 4','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6637','Dummy - General Item 5','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6638','Dummy - General Item 6','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6639','Dummy - General Item 7','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6640','Dummy - General Item 8','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6641','Dummy - General Item 9','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6642','Dummy - General Item 10','false','none','0','stackable','steel','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6643','Golden Spice','false','none','40','stackable','paper','none','-1','50','0','true','true','true','true','C4Item','castle_guard'),
- ('6644','Crystal Spice','false','none','40','stackable','paper','none','-1','50','0','true','true','true','true','C4Item','castle_guard'),
- ('6645','Beast Soulshot','false','shot','1','stackable','paper','none','-1','20','0','true','true','true','true','Beast Soulshot','none'),
- ('6646','Beast Spiritshot','false','shot','2','stackable','paper','none','-1','40','0','true','true','true','true','Beast Spiritshot','none'),
- ('6647','Blessed Beast Spiritshot','false','shot','2','stackable','paper','none','-1','100','0','true','true','true','true','Blessed Beast Spiritshot','none'),
- ('6648','Baby Buffalo Panpipe','false','pet_collar','20','normal','leather','none','-1','0','0','true','true','true','true','C4Item','pet_collar'),
- ('6649','Baby Cougar Chime','false','pet_collar','20','normal','leather','none','-1','0','0','true','true','true','true','C4Item','pet_collar'),
- ('6650','Baby Kookaburra Ocarina','false','pet_collar','20','normal','leather','none','-1','0','0','true','true','true','true','C4Item','pet_collar'),
- ('6651','Noblesse Gate Pass','false','quest','0','stackable','paper','none','-1','0','0','false','false','true','false','C4Item','castle_guard'),
- ('6652','Scroll: Protection of Valakas','false','scroll','10','stackable','paper','none','-1','100000','0','true','true','true','true','C4Item','castle_guard'),
- ('6653','Scroll: Flames of Valakas','false','scroll','10','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6654','Scroll: Flames of Valakas','false','scroll','10','stackable','paper','none','-1','40000','0','true','true','true','true','C4Item','castle_guard'),
- ('6655','Scroll: Slay Valakas','false','scroll','10','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6663','Scroll of Escape: Orc Village','false','scroll','120','stackable','paper','none','-1','400','0','true','true','true','true','C4Item','castle_guard'),
- ('6664','Scroll of Escape: Silenos Village','false','scroll','120','stackable','paper','none','-1','400','0','true','true','true','true','C4Item','castle_guard'),
- ('6665','Deluxe Chest Key - Grade 1','false','none','10','stackable','steel','none','-1','0','0','true','true','true','true','C4Item','castle_guard'),
- ('6666','Deluxe Chest Key - Grade 2','false','none','10','stackable','steel','none','-1','200','0','true','true','true','true','C4Item','castle_guard'),
- ('6667','Deluxe Chest Key - Grade 3','false','none','10','stackable','steel','none','-1','320','0','true','true','true','true','C4Item','castle_guard'),
- ('6668','Deluxe Chest Key - Grade 4','false','none','10','stackable','steel','none','-1','560','0','true','true','true','true','C4Item','castle_guard'),
- ('6669','Deluxe Chest Key - Grade 5','false','none','10','stackable','steel','none','-1','860','0','true','true','true','true','C4Item','castle_guard'),
- ('6670','Deluxe Chest Key - Grade 6','false','none','10','stackable','steel','none','-1','1200','0','true','true','true','true','C4Item','castle_guard'),
- ('6671','Deluxe Chest Key - Grade 7','false','none','10','stackable','steel','none','-1','1800','0','true','true','true','true','C4Item','castle_guard'),
- ('6672','Deluxe Chest Key - Grade 8','false','none','10','stackable','steel','none','-1','2400','0','true','true','true','true','C4Item','castle_guard'),
- ('6673','Festival Adena','false','none','0','stackable','steel','none','-1','0','0','false','false','true','false','C4Item','none'),
- ('6688','Forgotten Blade Edge','false','material','60','stackable','liquid','none','-1','92529','0','true','true','true','true','C4Item','none'),
- ('6689','Basalt Battlehammer Head','false','material','60','stackable','liquid','none','-1','94306','0','true','true','true','true','C4Item','none'),
- ('6690','Imperial Staff Head','false','material','60','stackable','liquid','none','-1','92353','0','true','true','true','true','C4Item','none'),
- ('6691','Angel Slayer Blade','false','material','60','stackable','liquid','none','-1','92529','0','true','true','true','true','C4Item','none'),
- ('6692','Shining Bow Shaft','false','material','60','stackable','liquid','none','-1','90882','0','true','true','true','true','C4Item','none'),
- ('6693','Dragon Hunter Axe Blade','false','material','60','stackable','liquid','none','-1','90882','0','true','true','true','true','C4Item','none'),
- ('6694','Saint Spear Blade','false','material','60','stackable','liquid','none','-1','90882','0','true','true','true','true','C4Item','none'),
- ('6695','Demon Splinter Blade','false','material','60','stackable','liquid','none','-1','94306','0','true','true','true','true','C4Item','none'),
- ('6696','Heavens Divider Edge','false','material','60','stackable','liquid','none','-1','91082','0','true','true','true','true','C4Item','none'),
- ('6697','Arcana Mace Head','false','material','60','stackable','liquid','none','-1','94306','0','true','true','true','true','C4Item','none'),
- ('6698','Sealed Tateossian Earring Part','false','material','60','stackable','liquid','none','-1','10182','0','true','true','true','true','C4Item','none'),
- ('6699','Sealed Tateossian Ring Gem','false','material','60','stackable','liquid','none','-1','9176','0','true','true','true','true','C4Item','none'),
- ('6700','Sealed Tateossian Necklace Chain','false','material','60','stackable','liquid','none','-1','16706','0','true','true','true','true','C4Item','none'),
- ('6701','Sealed Imperial Crusader Breastplate Part','false','material','60','stackable','liquid','none','-1','37565','0','true','true','true','true','C4Item','none'),
- ('6702','Sealed Imperial Crusader Gaiters Pattern','false','material','60','stackable','liquid','none','-1','29182','0','true','true','true','true','C4Item','none'),
- ('6703','Sealed Imperial Crusader Gauntlets Design','false','material','60','stackable','liquid','none','-1','14047','0','true','true','true','true','C4Item','none'),
- ('6704','Sealed Imperial Crusader Boots Design','false','material','60','stackable','liquid','none','-1','14047','0','true','true','true','true','C4Item','none'),
- ('6705','Sealed Imperial Crusader Shield Part','false','material','60','stackable','liquid','none','-1','14341','0','true','true','true','true','C4Item','none'),
- ('6706','Sealed Imperial Crusader Helmet Pattern','false','material','60','stackable','liquid','none','-1','12329','0','true','true','true','true','C4Item','none'),
- ('6707','Sealed Draconic Leather Armor Part','false','material','60','stackable','liquid','none','-1','40365','0','true','true','true','true','C4Item','none'),
- ('6708','Sealed Draconic Leather Gloves Fabric','false','material','60','stackable','liquid','none','-1','14047','0','true','true','true','true','C4Item','none'),
- ('6709','Sealed Draconic Leather Boots Design','false','material','60','stackable','liquid','none','-1','14047','0','true','true','true','true','C4Item','none'),
- ('6710','Sealed Draconic Leather Helmet Pattern','false','material','60','stackable','liquid','none','-1','12329','0','true','true','true','true','C4Item','none'),
- ('6711','Sealed Major Arcana Robe Part','false','material','60','stackable','liquid','none','-1','40365','0','true','true','true','true','C4Item','none'),
- ('6712','Sealed Major Arcana Gloves fabric','false','material','60','stackable','liquid','none','-1','14047','0','true','true','true','true','C4Item','none'),
- ('6713','Sealed Major Arcana Boots Design','false','material','60','stackable','liquid','none','-1','14047','0','true','true','true','true','C4Item','none'),
- ('6714','Sealed Major Arcana Circlet Pattern','false','material','60','stackable','liquid','none','-1','12329','0','true','true','true','true','C4Item','none'),
- ('6727','Seed: Alternative Great Coba','false','seed',1,'stackable','paper','none',-1,1200,0,'true','true','true','true','C5Item','none'),
- ('6728','Seed: Alternative Sea Coba','false','seed',1,'stackable','paper','none',-1,900,0,'true','true','true','true','C5Item','none'),
- ('6729','Seed: Alternative Sea Coba','false','seed',1,'stackable','paper','none',-1,900,0,'true','true','true','true','C5Item','none'),
- ('6730','Seed: Alternative Sea Coba','false','seed',1,'stackable','paper','none',-1,900,0,'true','true','true','true','C5Item','none'),
- ('6731','Seed: Alternative Red Coba','false','seed',1,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('6732','Seed: Alternative Red Coba','false','seed',1,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('6733','Seed: Alternative Red Coba','false','seed',1,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('6734','Seed: Alternative Red Coba','false','seed',1,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('6735','Seed: Alternative Red Coba','false','seed',1,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('6736','Seed: Alternative Desert Coba','false','seed',1,'stackable','paper','none',-1,750,0,'true','true','true','true','C5Item','none'),
- ('6737','Seed: Alternative Desert Coba','false','seed',1,'stackable','paper','none',-1,750,0,'true','true','true','true','C5Item','none'),
- ('6738','Seed: Alternative Desert Coba','false','seed',1,'stackable','paper','none',-1,750,0,'true','true','true','true','C5Item','none'),
- ('6739','Seed: Alternative Desert Coba','false','seed',1,'stackable','paper','none',-1,750,0,'true','true','true','true','C5Item','none'),
- ('6740','Seed: Alternative Desert Coba','false','seed',1,'stackable','paper','none',-1,750,0,'true','true','true','true','C5Item','none'),
- ('6741','Seed: Alternative Twin Coba','false','seed',1,'stackable','paper','none',-1,1000,0,'true','true','true','true','C5Item','none'),
- ('6742','Seed: Alternative Blue Coba','false','seed',1,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('6743','Seed: Alternative Blue Coba','false','seed',1,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('6744','Seed: Alternative Blue Coba','false','seed',1,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('6745','Seed: Alternative Blue Coba','false','seed',1,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('6746','Seed: Alternative Blue Coba','false','seed',1,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('6747','Seed: Alternative Golden Coba','false','seed',1,'stackable','paper','none',-1,650,0,'true','true','true','true','C5Item','none'),
- ('6748','Seed: Alternative Golden Coba','false','seed',1,'stackable','paper','none',-1,650,0,'true','true','true','true','C5Item','none'),
- ('6749','Seed: Alternative Golden Coba','false','seed',1,'stackable','paper','none',-1,650,0,'true','true','true','true','C5Item','none'),
- ('6750','Seed: Alternative Golden Coba','false','seed',1,'stackable','paper','none',-1,650,0,'true','true','true','true','C5Item','none'),
- ('6751','Seed: Alternative Golden Coba','false','seed',1,'stackable','paper','none',-1,650,0,'true','true','true','true','C5Item','none'),
- ('6752','Seed: Alternative Golden Coba','false','seed',1,'stackable','paper','none',-1,650,0,'true','true','true','true','C5Item','none'),
- ('6753','Seed: Great Coba','false','seed',1,'stackable','paper','none',-1,1200,0,'true','true','true','true','C5Item','none'),
- ('6754','Seed: Sea Coba','false','seed',1,'stackable','paper','none',-1,900,0,'true','true','true','true','C5Item','none'),
- ('6755','Seed: Sea Coba','false','seed',1,'stackable','paper','none',-1,900,0,'true','true','true','true','C5Item','none'),
- ('6756','Seed: Sea Coba','false','seed',1,'stackable','paper','none',-1,900,0,'true','true','true','true','C5Item','none'),
- ('6757','Seed: Red Coba','false','seed',1,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('6758','Seed: Red Coba','false','seed',1,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('6759','Seed: Red Coba','false','seed',1,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('6760','Seed: Red Coba','false','seed',1,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('6761','Seed: Red Coba','false','seed',1,'stackable','paper','none',-1,500,0,'true','true','true','true','C5Item','none'),
- ('6762','Seed: Desert Coba','false','seed',1,'stackable','paper','none',-1,750,0,'true','true','true','true','C5Item','none'),
- ('6763','Seed: Desert Coba','false','seed',1,'stackable','paper','none',-1,750,0,'true','true','true','true','C5Item','none'),
- ('6764','Seed: Desert Coba','false','seed',1,'stackable','paper','none',-1,750,0,'true','true','true','true','C5Item','none'),
- ('6765','Seed: Desert Coba','false','seed',1,'stackable','paper','none',-1,750,0,'true','true','true','true','C5Item','none'),
- ('6766','Seed: Desert Coba','false','seed',1,'stackable','paper','none',-1,750,0,'true','true','true','true','C5Item','none'),
- ('6767','Seed: Twin Coba','false','seed',1,'stackable','paper','none',-1,1000,0,'true','true','true','true','C5Item','none'),
- ('6768','Seed: Blue Coba','false','seed',1,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('6769','Seed: Blue Coba','false','seed',1,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('6770','Seed: Blue Coba','false','seed',1,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('6771','Seed: Blue Coba','false','seed',1,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('6772','Seed: Blue Coba','false','seed',1,'stackable','paper','none',-1,400,0,'true','true','true','true','C5Item','none'),
- ('6773','Seed: Golden Coba','false','seed',1,'stackable','paper','none',-1,650,0,'true','true','true','true','C5Item','none'),
- ('6774','Seed: Golden Coba','false','seed',1,'stackable','paper','none',-1,650,0,'true','true','true','true','C5Item','none'),
- ('6775','Seed: Golden Coba','false','seed',1,'stackable','paper','none',-1,650,0,'true','true','true','true','C5Item','none'),
- ('6776','Seed: Golden Coba','false','seed',1,'stackable','paper','none',-1,650,0,'true','true','true','true','C5Item','none'),
- ('6777','Seed: Golden Coba','false','seed',1,'stackable','paper','none',-1,650,0,'true','true','true','true','C5Item','none'),
- ('6778','Seed: Golden Coba','false','seed',1,'stackable','paper','none',-1,650,0,'true','true','true','true','C5Item','none'),
- ('6779','Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6780','Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6781','Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6782','Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6783','Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6784','Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6785','Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6786','Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6787','Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6788','Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6789','Mercenary Posting Ticket (Teleporter1)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6790','Mercenary Posting Ticket (Teleporter2)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6791','Mercenary Posting Ticket (Teleporter3)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6792','Greater Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6793','Greater Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6794','Greater Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6795','Greater Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6796','Greater Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6797','Greater Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6798','Greater Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6799','Greater Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6800','Greater Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6801','Greater Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6802','Dawn Mercenary Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6803','Dawn Mercenary Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6804','Dawn Mercenary Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6805','Dawn Mercenary Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6806','Dawn Mercenary Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6807','Dawn Mercenary Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6808','Dawn Mercenary Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6809','Dawn Mercenary Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6810','Dawn Mercenary Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6811','Dawn Mercenary Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6812','Greater Recruit Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6813','Greater Recruit Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6814','Greater Recruit Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6815','Greater Recruit Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6816','Greater Recruit Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6817','Greater Recruit Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6818','Greater Recruit Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6819','Greater Recruit Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6820','Greater Recruit Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6821','Greater Recruit Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6822','Recruit Posting Ticket (Sword/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6823','Recruit Posting Ticket (Spear/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6824','Recruit Posting Ticket (Bow/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6825','Recruit Posting Ticket (Cleric/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6826','Recruit Posting Ticket (Wizard/Stationary)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6827','Recruit Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6828','Recruit Posting Ticket (Spear/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6829','Recruit Posting Ticket (Bow/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6830','Recruit Posting Ticket (Cleric/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6831','Recruit Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6832','Nephilim Warrior Posting Ticket (Sword/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6833','Nephilim Shaman Posting Ticket (Wizard/Mobile)','false','castle_guard','0','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6847','Recipe: Sealed Tateossian Earring (70%)','false','recipe','30','stackable','paper','none','-1','74000','0','true','true','true','true','C4Item','none'),
- ('6848','Recipe: Sealed Tateossian Earring (100%)','false','recipe','30','stackable','paper','none','-1','74000','0','true','true','true','true','C4Item','none'),
- ('6849','Recipe: Sealed Tateossian Ring(70%)','false','recipe','30','stackable','paper','none','-1','49400','0','true','true','true','true','C4Item','none'),
- ('6850','Recipe: Sealed Tateossian Ring(100%)','false','recipe','30','stackable','paper','none','-1','49400','0','true','true','true','true','C4Item','none'),
- ('6851','Recipe: Sealed Tateossian Necklace(70%)','false','recipe','30','stackable','paper','none','-1','98800','0','true','true','true','true','C4Item','none'),
- ('6852','Recipe: Sealed Tateossian Necklace(100%)','false','recipe','30','stackable','paper','none','-1','98800','0','true','true','true','true','C4Item','none'),
- ('6853','Recipe: Sealed Imperial Crusader Breastplate (60%)','false','recipe','30','stackable','paper','none','-1','286000','0','true','true','true','true','C4Item','none'),
- ('6854','Recipe: Sealed Imperial Crusader Breastplate (100%)','false','recipe','30','stackable','paper','none','-1','286000','0','true','true','true','true','C4Item','none'),
- ('6855','Recipe: Sealed Imperial Crusader Gaiters (60%)','false','recipe','30','stackable','paper','none','-1','179200','0','true','true','true','true','C4Item','none'),
- ('6856','Recipe: Sealed Imperial Crusader Gaiters (100%)','false','recipe','30','stackable','paper','none','-1','179200','0','true','true','true','true','C4Item','none'),
- ('6857','Recipe: Sealed Imperial Crusader Gauntlets (60%)','false','recipe','30','stackable','paper','none','-1','71600','0','true','true','true','true','C4Item','none'),
- ('6858','Recipe: Sealed Imperial Crusader Gauntlets (100%)','false','recipe','30','stackable','paper','none','-1','71600','0','true','true','true','true','C4Item','none'),
- ('6859','Recipe: Sealed Imperial Crusader Boots (60%)','false','recipe','30','stackable','paper','none','-1','71600','0','true','true','true','true','C4Item','none'),
- ('6860','Recipe: Sealed Imperial Crusader Boots (100%)','false','recipe','30','stackable','paper','none','-1','71600','0','true','true','true','true','C4Item','none'),
- ('6861','Recipe: Sealed Imperial Crusader Shield (60%)','false','recipe','30','stackable','paper','none','-1','75200','0','true','true','true','true','C4Item','none'),
- ('6862','Recipe: Sealed Imperial Crusader Shield (100%)','false','recipe','30','stackable','paper','none','-1','75200','0','true','true','true','true','C4Item','none'),
- ('6863','Recipe: Sealed Imperial Crusader Helmet (60%)','false','recipe','30','stackable','paper','none','-1','107400','0','true','true','true','true','C4Item','none'),
- ('6864','Recipe: Sealed Imperial Crusader Helmet (100%)','false','recipe','30','stackable','paper','none','-1','107400','0','true','true','true','true','C4Item','none'),
- ('6865','Recipe: Sealed Draconic Leather Armor (60%)','false','recipe','30','stackable','paper','none','-1','348000','0','true','true','true','true','C4Item','none'),
- ('6866','Recipe: Sealed Draconic Leather Armor (100%)','false','recipe','30','stackable','paper','none','-1','348000','0','true','true','true','true','C4Item','none'),
- ('6867','Recipe: Sealed Draconic Leather Gloves (60%)','false','recipe','30','stackable','paper','none','-1','71600','0','true','true','true','true','C4Item','none'),
- ('6868','Recipe: Sealed Draconic Leather Gloves (100%)','false','recipe','30','stackable','paper','none','-1','71600','0','true','true','true','true','C4Item','none'),
- ('6869','Recipe: Sealed Draconic Leather Boots (60%)','false','recipe','30','stackable','paper','none','-1','71600','0','true','true','true','true','C4Item','none'),
- ('6870','Recipe: Sealed Draconic Leather Boots (100%)','false','recipe','30','stackable','paper','none','-1','71600','0','true','true','true','true','C4Item','none'),
- ('6871','Recipe: Sealed Draconic Leather Helmet (60%)','false','recipe','30','stackable','paper','none','-1','107400','0','true','true','true','true','C4Item','none'),
- ('6872','Recipe: Sealed Draconic Leather Helmet (100%)','false','recipe','30','stackable','paper','none','-1','107400','0','true','true','true','true','C4Item','none'),
- ('6873','Recipe: Sealed Major Arcana Robe (60%)','false','recipe','30','stackable','paper','none','-1','348000','0','true','true','true','true','C4Item','none'),
- ('6874','Recipe: Sealed Major Arcana Robe (100%)','false','recipe','30','stackable','paper','none','-1','348000','0','true','true','true','true','C4Item','none'),
- ('6875','Recipe: Sealed Major Arcana Gloves (60%)','false','recipe','30','stackable','paper','none','-1','71600','0','true','true','true','true','C4Item','none'),
- ('6876','Recipe: Sealed Major Arcana Gloves (100%)','false','recipe','30','stackable','paper','none','-1','71600','0','true','true','true','true','C4Item','none'),
- ('6877','Recipe: Sealed Major Arcana Boots (60%)','false','recipe','30','stackable','paper','none','-1','71600','0','true','true','true','true','C4Item','none'),
- ('6878','Recipe: Sealed Major Arcana Boots (100%)','false','recipe','30','stackable','paper','none','-1','71600','0','true','true','true','true','C4Item','none'),
- ('6879','Recipe: Sealed Major Arcana Circlet (60%)','false','recipe','30','stackable','paper','none','-1','107400','0','true','true','true','true','C4Item','none'),
- ('6880','Recipe: Sealed Major Arcana Circlet (100%)','false','recipe','30','stackable','paper','none','-1','107400','0','true','true','true','true','C4Item','none'),
- ('6881','Recipe: Forgotten Blade (60%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6882','Recipe: Forgotten Blade (100%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6883','Recipe: Basalt Battlehammer (60%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6884','Recipe: Basalt Battlehammer (100%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6885','Recipe: Imperial Staff (60%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6886','Recipe: Imperial Staff(100%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6887','Recipe: Angel Slayer (60%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6888','Recipe: Angel Slayer (100%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6889','Recipe: Shining Bow (60%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6890','Recipe: Shining Bow (100%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6891','Recipe: Dragon Hunter Axe (60%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6892','Recipe: Dragon Hunter Axe (100%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6893','Recipe: Saint Spear (60%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6894','Recipe: Saint Spear (100%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6895','Recipe: Demon Splinter (60%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6896','Recipe: Demon Splinter (100%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6897','Recipe: Heavens Divider (60%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6898','Recipe: Heavens Divider (100%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6899','Recipe: Arcana Mace (60%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6900','Recipe: Arcana Mace (100%)','false','recipe','30','stackable','paper','none','-1','976000','0','true','true','true','true','C4Item','none'),
- ('6901','Recipe: Shining Arrow (100%)','false','recipe','30','stackable','paper','none','-1','200000','0','true','true','true','true','C4Item','none'),
- ('6903','Music Box M','false','none','10','stackable','paper','none','-1','0','0','true','true','true','true','C4Item','none'),
- ('6904','Party Mask Fabric','false','material','60','stackable','liquid','none','-1','5000','0','true','true','true','true','C4Item','none'),
- ('6905','Hair Pin Piece','false','material','60','stackable','liquid','none','-1','5000','0','true','true','true','true','C4Item','none'),
- ('6906','Pirate\'s Eye Patch Material','false','material','60','stackable','liquid','none','-1','5000','0','true','true','true','true','C4Item','none'),
- ('6907','Monocle Piece','false','material','60','stackable','liquid','none','-1','5000','0','true','true','true','true','C4Item','none'),
- ('6908','Fish Oil','false','material','30','stackable','liquid','none','-1','50','0','true','true','true','true','C4Item','none'),
- ('6909','Greater Fish Oil','false','material','30','stackable','liquid','none','-1','250','0','true','true','true','true','C4Item','none'),
- ('6910','Premium Fish Oil','false','material','30','stackable','liquid','none','-1','1250','0','true','true','true','true','C4Item','none'),
- ('6911','Fish Scale','false','material','30','stackable','liquid','none','-1','200','0','true','true','true','true','C4Item','none'),
- ('6912','Shiny Fish Scale','false','material','30','stackable','liquid','none','-1','300','0','true','true','true','true','C4Item','none'),
- ('6913','Fish Gem','false','material','30','stackable','liquid','none','-1','500','0','true','true','true','true','C4Item','none'),
- ('6914','Shiny Fish Gem','false','material','30','stackable','liquid','none','-1','1000','0','true','true','true','true','C4Item','none'),
- ('6915','Thin Fish Bone','false','material','30','stackable','liquid','none','-1','300','0','true','true','true','true','C4Item','none'),
- ('6916','Thick Fish Bone','false','material','30','stackable','liquid','none','-1','450','0','true','true','true','true','C4Item','none'),
- ('6920','Recipe: Greater Fish Oil (100%)','false','recipe','30','stackable','paper','none','-1','50','0','true','true','true','true','C4Item','none'),
- ('6921','Recipe: Premium Fish Oil(100%)','false','recipe','30','stackable','paper','none','-1','250','0','true','true','true','true','C4Item','none'),
- ('6922','Recipe: Party Mask (100%)','false','recipe','30','stackable','paper','none','-1','100000','0','true','true','true','true','C4Item','none'),
- ('6923','Recipe: Lady\'s Hair Pin (100%)','false','recipe','30','stackable','paper','none','-1','100000','0','true','true','true','true','C4Item','none'),
- ('6924','Recipe: Pirate\'s Eye Patch (100%)','false','recipe','30','stackable','paper','none','-1','100000','0','true','true','true','true','C4Item','none'),
- ('6925','Recipe: Monocle (100%)','false','recipe','30','stackable','paper','none','-1','100000','0','true','true','true','true','C4Item','none'),
- ('6926','Recipe: Lesser Healing Potion (100%)','false','recipe','30','stackable','paper','none','-1','18','0','true','true','true','true','C4Item','none'),
- ('6927','Recipe: Healing Potion (100%)','false','recipe','30','stackable','paper','none','-1','66','0','true','true','true','true','C4Item','none'),
- ('6928','Recipe: Greater Healing Potion (100%)','false','recipe','30','stackable','paper','none','-1','180','0','true','true','true','true','C4Item','none'),
- ('6929','Recipe: Antidote (100%)','false','recipe','30','stackable','paper','none','-1','15','0','true','true','true','true','C4Item','none'),
- ('6930','Recipe: Greater Antidote (100%)','false','recipe','30','stackable','paper','none','-1','36','0','true','true','true','true','C4Item','none'),
- ('6931','Recipe: Bandage (100%)','false','recipe','30','stackable','paper','none','-1','15','0','true','true','true','true','C4Item','none'),
- ('6932','Recipe: Emergency Dressing (100%)','false','recipe','30','stackable','paper','none','-1','36','0','true','true','true','true','C4Item','none'),
- ('6933','Recipe: Haste Potion (100%)','false','recipe','30','stackable','paper','none','-1','240','0','true','true','true','true','C4Item','none'),
- ('6934','Recipe: Potion of Alacrity (100%)','false','recipe','30','stackable','paper','none','-1','480','0','true','true','true','true','C4Item','none'),
- ('6935','Recipe: Greater Haste Potion (100%)','false','recipe','30','stackable','paper','none','-1','600','0','true','true','true','true','C4Item','none'),
- ('6936','Recipe: Greater Swift Attack Potion (100%)','false','recipe','30','stackable','paper','none','-1','1200','0','true','true','true','true','C4Item','none'),
- ('6937','Recipe: Magic Haste Potion (100%)','false','recipe','30','stackable','paper','none','-1','480','0','true','true','true','true','C4Item','none'),
- ('6938','Recipe: Greater Magic Haste Potion (100%)','false','recipe','30','stackable','paper','none','-1','1200','0','true','true','true','true','C4Item','none'),
- ('6939','Recipe: Mystery Potion (100%)','false','recipe','30','stackable','paper','none','-1','2000','0','true','true','true','true','C4Item','none'),
- ('6940','Recipe: Facelifting Potion - A (100%)','false','recipe','30','stackable','paper','none','-1','4000','0','true','true','true','true','C4Item','none'),
- ('6941','Recipe: Facelifting Potion - B (100%)','false','recipe','30','stackable','paper','none','-1','4000','0','true','true','true','true','C4Item','none'),
- ('6942','Recipe: Facelifting Potion - C (100%)','false','recipe','30','stackable','paper','none','-1','4000','0','true','true','true','true','C4Item','none'),
- ('6943','Recipe: Dye Potion - A (100%)','false','recipe','30','stackable','paper','none','-1','4000','0','true','true','true','true','C4Item','none'),
- ('6944','Recipe: Dye Potion - B (100%)','false','recipe','30','stackable','paper','none','-1','4000','0','true','true','true','true','C4Item','none'),
- ('6945','Recipe: Dye Potion - C (100%)','false','recipe','30','stackable','paper','none','-1','4000','0','true','true','true','true','C4Item','none'),
- ('6946','Recipe: Dye Potion - D (100%)','false','recipe','30','stackable','paper','none','-1','4000','0','true','true','true','true','C4Item','none'),
- ('6947','Recipe: Hair Style Change Potion - A (100%)','false','recipe','30','stackable','paper','none','-1','4000','0','true','true','true','true','C4Item','none'),
- ('6948','Recipe: Hair Style Change Potion - B (100%)','false','recipe','30','stackable','paper','none','-1','4000','0','true','true','true','true','C4Item','none'),
- ('6949','Recipe: Hair Style Change Potion - C (100%)','false','recipe','30','stackable','paper','none','-1','4000','0','true','true','true','true','C4Item','none'),
- ('6950','Recipe: Hair Style Change Potion - D (100%)','false','recipe','30','stackable','paper','none','-1','4000','0','true','true','true','true','C4Item','none'),
- ('6951','Recipe: Hair Style Change Potion - E (100%)','false','recipe','30','stackable','paper','none','-1','4000','0','true','true','true','true','C4Item','none'),
- ('6952','Recipe: Hair Style Change Potion - F (100%)','false','recipe','30','stackable','paper','none','-1','4000','0','true','true','true','true','C4Item','none'),
- ('6953','Recipe: Hair Style Change Potion - G (100%)','false','recipe','30','stackable','paper','none','-1','4000','0','true','true','true','true','C4Item','none'),
- ('6954','Recipe: Dye of STR (100%)','false','recipe','30','stackable','paper','none','-1','7000','0','true','true','true','true','C4Item','none'),
- ('6955','Recipe: Dye of STR (100%)','false','recipe','30','stackable','paper','none','-1','7000','0','true','true','true','true','C4Item','none'),
- ('6956','Recipe: Dye of CON (100%)','false','recipe','30','stackable','paper','none','-1','7000','0','true','true','true','true','C4Item','none'),
- ('6957','Recipe: Dye of CON (100%)','false','recipe','30','stackable','paper','none','-1','7000','0','true','true','true','true','C4Item','none'),
- ('6958','Recipe: Dye of DEX (100%)','false','recipe','30','stackable','paper','none','-1','7000','0','true','true','true','true','C4Item','none'),
- ('6959','Recipe: Dye of DEX (100%)','false','recipe','30','stackable','paper','none','-1','7000','0','true','true','true','true','C4Item','none'),
- ('6960','Recipe: Dye of INT (100%)','false','recipe','30','stackable','paper','none','-1','7000','0','true','true','true','true','C4Item','none'),
- ('6961','Recipe: Dye of INT (100%)','false','recipe','30','stackable','paper','none','-1','7000','0','true','true','true','true','C4Item','none'),
- ('6962','Recipe: Dye of MEN (100%)','false','recipe','30','stackable','paper','none','-1','7000','0','true','true','true','true','C4Item','none'),
- ('6963','Recipe: Dye of MEN (100%)','false','recipe','30','stackable','paper','none','-1','7000','0','true','true','true','true','C4Item','none'),
- ('6964','Recipe: Dye of WIT (100%)','false','recipe','30','stackable','paper','none','-1','7000','0','true','true','true','true','C4Item','none'),
- ('6965','Recipe: Dye of WIT (100%)','false','recipe','30','stackable','paper','none','-1','7000','0','true','true','true','true','C4Item','none'),
- ('6966','Recipe: Greater Dye of STR