diff --git a/sql/updates/update_2024-10-09_1.sql b/sql/updates/update_2024-10-09_1.sql new file mode 100644 index 000000000..26d44cafb --- /dev/null +++ b/sql/updates/update_2024-10-09_1.sql @@ -0,0 +1,33 @@ +CREATE TABLE IF NOT EXISTS `cards` ( + `characterId` bigint(20) NOT NULL, + `itemId` bigint(20) NOT NULL, + `sort` int(11) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +ALTER TABLE `cards` + ADD PRIMARY KEY (`characterId`,`itemId`), + ADD KEY `itemId` (`itemId`); + +ALTER TABLE `cards` + ADD CONSTRAINT `cards_ibfk_1` FOREIGN KEY (`characterId`) REFERENCES `characters` (`characterId`) ON DELETE CASCADE ON UPDATE CASCADE, + ADD CONSTRAINT `cards_ibfk_2` FOREIGN KEY (`itemId`) REFERENCES `items` (`itemUniqueId`) ON DELETE CASCADE ON UPDATE CASCADE; + +CREATE TABLE IF NOT EXISTS `item_properties` ( + `propertyId` bigint(20) NOT NULL, + `itemId` bigint(20) NOT NULL, + `name` varchar(64) NOT NULL, + `type` varchar(1) NOT NULL, + `value` varchar(255) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + + +ALTER TABLE `item_properties` + ADD PRIMARY KEY (`propertyId`), + ADD KEY `itemId` (`itemId`); + + +ALTER TABLE `item_properties` + MODIFY `propertyId` bigint(20) NOT NULL AUTO_INCREMENT; + +ALTER TABLE `item_properties` + ADD CONSTRAINT `item_properties_ibfk_1` FOREIGN KEY (`itemId`) REFERENCES `items` (`itemUniqueId`) ON DELETE CASCADE ON UPDATE CASCADE; \ No newline at end of file diff --git a/src/Shared/Data/Database/ItemExp.cs b/src/Shared/Data/Database/ItemExp.cs new file mode 100644 index 000000000..42f04a1a2 --- /dev/null +++ b/src/Shared/Data/Database/ItemExp.cs @@ -0,0 +1,140 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Melia.Shared.Game.Const; +using Newtonsoft.Json.Linq; +using Yggdrasil.Data.JSON; + +namespace Melia.Shared.Data.Database +{ + [Serializable] + public class ItemExpData + { + public EquipExpGroup Group { get; set; } + public int Level { get; set; } + public int Exp { get; set; } + public int GainExp { get; set; } + public float PriceMultiplier { get; set; } = 1.0f; + } + + /// + /// Item Exp database. + /// + public class ItemExpDb : DatabaseJson + { + private readonly List _itemExp = new(); + + public int GetGainExp(EquipExpGroup group, int level = 1) + { + var exp = this.Entries.Find(a => a.Group == group && a.Level == 1)?.GainExp ?? 0; + + return exp; + } + + /// + /// Returns exp required to reach the next level after the + /// given one. + /// + /// + /// Returns 0 if there's no data for the given level, + /// i.e. if it's the last one or goes beyond. + /// + /// + /// + /// Thrown if level is invalid (< 1). + public int GetNextExp(EquipExpGroup group, int level) + { + if (level < 1) + throw new ArgumentException("Invalid level (too low)."); + + if (level > _itemExp.Count) + return 0; + + var index = level - 1; + var exp = this.Entries.Where(a => a.Group == group).OrderBy(a => a.Level).ToList()[index]; + + return exp.Exp; + } + + /// + /// Returns the EXP required to reach the given level. + /// + /// + /// + public int GetLevel(EquipExpGroup group, int exp) + { + var result = 1; + var data = this.Entries.Where(a => a.Group == group && a.Exp <= exp).OrderBy(a => a.Level).LastOrDefault(); + if (data != null) + result = data.Level; + + return result; + } + + /// + /// Returns the price multiplier at a certain level. + /// + /// + /// + public float GetPriceMultiplier(EquipExpGroup group, int level) + { + var result = 1f; + var data = this.Entries.Find(a => a.Level == level); + if (data != null) + result = data.PriceMultiplier; + + return result; + } + + /// + /// Returns the EXP required to reach the given level. + /// + /// + /// + public int GetTotalExp(EquipExpGroup group, int level) + { + var result = 0; + for (var i = 1; i < level; ++i) + result += this.GetNextExp(group, i); + + return result; + } + + /// + /// Returns the max level. + /// + /// + public int GetMaxLevel(EquipExpGroup group) + { + return _itemExp.Where(a => a.Group == group && a.Exp > 0).Max(a => a.Level); + } + + /// + /// Reads given entry and adds it to the database. + /// + /// + /// Uses the JSON database to be fed its entries, but doesn't + /// adhere to the Entries format and uses custom lists instead. + /// + /// + protected override void ReadEntry(JObject entry) + { + + entry.AssertNotMissing("level", "exp"); + + var data = new ItemExpData(); + + data.Group = entry.ReadEnum("group", EquipExpGroup.None); + data.Level = entry.ReadInt("level"); + data.Exp = entry.ReadInt("exp"); + data.GainExp = entry.ReadInt("gainExp"); + + this.Entries.Add(data); + } + + protected override void AfterLoad() + { + _itemExp.AddRange(this.Entries); + } + } +} diff --git a/src/Shared/Data/Database/Items.cs b/src/Shared/Data/Database/Items.cs index 8e9f188e8..c69c57407 100644 --- a/src/Shared/Data/Database/Items.cs +++ b/src/Shared/Data/Database/Items.cs @@ -72,6 +72,11 @@ public class ItemData public bool HasScript => this.Script != null; public bool HasCooldown => this.CooldownTime > TimeSpan.Zero; + + + public EquipExpGroup EquipExpGroup { get; set; } + public CardGroup CardGroup { get; set; } + public int CardLevel { get; set; } } [Serializable] @@ -158,7 +163,6 @@ protected override void ReadEntry(JObject entry) data.Name = entry.ReadString("name"); data.Type = entry.ReadEnum("type"); data.Group = entry.ReadEnum("group"); - data.Category = GetCategory(data); data.Weight = entry.ReadFloat("weight", 0); data.MaxStack = entry.ReadInt("maxStack", 1); @@ -168,6 +172,11 @@ protected override void ReadEntry(JObject entry) data.EquipType2 = entry.ReadEnum("equipType2", EquipType.None); data.MinLevel = entry.ReadInt("minLevel", 1); + data.Category = GetCategory(data); + data.CardGroup = entry.ReadEnum("cardGroup", CardGroup.None); + data.CardLevel = entry.ReadInt("cardLevel", 0); + data.EquipExpGroup = entry.ReadEnum("equipExpGroup", EquipExpGroup.None); + data.MinAtk = entry.ReadFloat("minAtk", 0); data.MaxAtk = entry.ReadFloat("maxAtk", 0); data.PAtk = entry.ReadFloat("pAtk", 0); diff --git a/src/Shared/Data/MeliaData.cs b/src/Shared/Data/MeliaData.cs index 993e81343..e9d70fa72 100644 --- a/src/Shared/Data/MeliaData.cs +++ b/src/Shared/Data/MeliaData.cs @@ -28,6 +28,7 @@ public class MeliaData public HelpDb HelpDb = new HelpDb(); public InvBaseIdDb InvBaseIdDb = new InvBaseIdDb(); public ItemDb ItemDb = new ItemDb(); + public ItemExpDb ItemExpDb { get; } = new ItemExpDb(); public ItemMonsterDb ItemMonsterDb = new ItemMonsterDb(); public JobDb JobDb = new JobDb(); public MapDb MapDb = new MapDb(); diff --git a/src/Shared/Database/MeliaDb.cs b/src/Shared/Database/MeliaDb.cs index 3922bb0a3..f09faad38 100644 --- a/src/Shared/Database/MeliaDb.cs +++ b/src/Shared/Database/MeliaDb.cs @@ -269,6 +269,38 @@ protected void SaveProperties(string databaseName, string idName, long id, Prope } } + /// + /// Saves properties to the given database, with the id. + /// + /// + /// + /// + /// + protected void SaveProperties(string databaseName, string idName, long id, Properties properties, MySqlConnection conn, MySqlTransaction trans) + { + using (var cmd = new MySqlCommand($"DELETE FROM `{databaseName}` WHERE `{idName}` = @id", conn, trans)) + { + cmd.Parameters.AddWithValue("@id", id); + cmd.ExecuteNonQuery(); + } + + foreach (var property in properties.GetAll()) + { + var typeStr = property is FloatProperty ? "f" : "s"; + var valueStr = property.Serialize(); + + using (var cmd = new InsertCommand($"INSERT INTO `{databaseName}` {{0}}", conn, trans)) + { + cmd.Set(idName, id); + cmd.Set("name", property.Ident); + cmd.Set("type", typeStr); + cmd.Set("value", valueStr); + + cmd.Execute(); + } + } + } + /// /// Updates the login state of the given account. /// diff --git a/src/Shared/Game/Const/Items.cs b/src/Shared/Game/Const/Items.cs index a09587a89..c68cead27 100644 --- a/src/Shared/Game/Const/Items.cs +++ b/src/Shared/Game/Const/Items.cs @@ -173,6 +173,74 @@ public enum InventoryCategory Armor_Shoulder, } + /// + /// Card's group. + /// + public enum CardGroup + { + None, + ATK, + DEF, + GODDESS, + LEG, + REINFORCE_CARD, + REINFORCE_GODDESS_CARD, + STAT, + UTIL, + } + + /// + /// An item's equip exp group. + /// + /// + /// Field "equipExpGroup" in our data, "EquipXpGroup" in the client. + /// + public enum EquipExpGroup + { + None, + Blessed, + Card, + Card_dummy01, + Card_dummy01_Event, + Card_Fish_300, + Card_Gacha_dummy01, + Card_xp_100, + Equip, + Gem, + GemExp_5000, + GemExp_randomQuest1, + GemExp_randomQuest2, + GemExp_randomQuest3, + GemExp_randomQuest4, + GemExp_randomQuest5, + GemExp_Talt01, + GemExpStone01, + GemExpStone02, + GemExpStone03, + GemExpStone04, + GemExpStone05, + GemExpStone07, + GemExpStone09, + GemExpStone10, + GemExpStone11, + GemExpStone12, + Gem_Skill, + Goddess_Card, + Goddess_ReinForce_Card, + hethran_material, + KQ_token_hethran_1, + KQ_token_hethran_2, + KQ_token_hethran_3, + Legend_Card, + Legend_Reinforce_Card_MaxLv4, + Legend_Reinforce_Card_MaxLv6, + Legend_Reinforce_Card_MaxLv8, + Legend_Reinforce_Card_MaxLv10, + Lv10_Card_TP, + Misc, + Old_Card_TP, + } + /// /// An item's type. /// diff --git a/src/Shared/Game/Const/Message.cs b/src/Shared/Game/Const/Message.cs index 383959a44..8af2bb8de 100644 --- a/src/Shared/Game/Const/Message.cs +++ b/src/Shared/Game/Const/Message.cs @@ -101,6 +101,21 @@ public static class AddonMessage /// Sent when reading a new collection /// public const string UPDATE_READ_COLLECTION_COUNT = "UPDATE_READ_COLLECTION_COUNT"; + + /// + /// Item gaining exp + /// + public const string ITEM_EXP_START = "ITEM_EXP_START"; + + /// + /// Stop Item gaining exp + /// + public const string ITEM_EXP_STOP = "ITEM_EXP_STOP"; + + /// + /// Item gaining exp has ended. + /// + public const string ITEM_EXPUP_END = "ITEM_EXPUP_END"; } public static class SystemMessage diff --git a/src/Shared/Server.cs b/src/Shared/Server.cs index f5b6768be..adbdec185 100644 --- a/src/Shared/Server.cs +++ b/src/Shared/Server.cs @@ -241,6 +241,7 @@ public void LoadData(ServerType serverType) this.LoadDb(this.Data.HelpDb, "db/help.txt"); this.LoadDb(this.Data.InvBaseIdDb, "db/invbaseids.txt"); this.LoadDb(this.Data.ItemDb, "db/items.txt"); + this.LoadDb(this.Data.ItemExpDb, "db/item_exp.txt"); this.LoadDb(this.Data.ItemMonsterDb, "db/itemmonsters.txt"); this.LoadDb(this.Data.JobDb, "db/jobs.txt"); this.LoadDb(this.Data.MapDb, "db/maps.txt"); diff --git a/src/ZoneServer/Database/ZoneDb.cs b/src/ZoneServer/Database/ZoneDb.cs index 495937f34..50999467d 100644 --- a/src/ZoneServer/Database/ZoneDb.cs +++ b/src/ZoneServer/Database/ZoneDb.cs @@ -162,6 +162,8 @@ public Character GetCharacter(long accountId, long characterId) } this.LoadCharacterItems(character); + foreach (var card in this.LoadCharacterItems(character, "cards")) + character.Inventory.AddSilentCard(card.Key, card.Value); this.LoadVars(character.Variables.Perm, "vars_characters", "characterId", character.DbId); this.LoadSessionObjects(character); this.LoadJobs(character); @@ -423,6 +425,7 @@ public void SaveCharacter(Character character) } this.SaveCharacterItems(character); + this.SaveCharacterItems(character, "cards", character.Inventory.GetCards()); this.SaveStorage(character.PersonalStorage, "storage_personal", "characterId", character.DbId); this.SaveStorage(character.TeamStorage, "storage_team", "accountId", character.Connection.Account.Id); this.SaveVariables(character.Variables.Perm, "vars_characters", "characterId", character.DbId); @@ -580,6 +583,45 @@ private void LoadCharacterItems(Character character) } } + /// + /// Load character's items from a specific table. + /// + /// + /// + private Dictionary LoadCharacterItems(Character character, string tableName) + { + var items = new Dictionary(); + using (var conn = this.GetConnection()) + using (var mc = new MySqlCommand($"SELECT `i`.*, `tbl1`.`sort` FROM `{tableName}` AS `tbl1` INNER JOIN `items` AS `i` ON `tbl1`.`itemId` = `i`.`itemUniqueId` WHERE `characterId` = @characterId ORDER BY `sort` ASC", conn)) + { + mc.Parameters.AddWithValue("@characterId", character.DbId); + + using (var reader = mc.ExecuteReader()) + { + while (reader.Read()) + { + var itemUniqueId = reader.GetInt64("itemUniqueId"); + var itemId = reader.GetInt32("itemId"); + var amount = reader.GetInt32("amount"); + var index = reader.GetInt32("sort"); + + // Check item, in case its data was removed + if (!ZoneServer.Instance.Data.ItemDb.Contains(itemId)) + { + Log.Warning("ZoneDb.LoadCharacterItems: Item '{0}' not found, removing it from inventory.", itemId); + continue; + } + + var item = new Item(itemId, amount); + this.LoadProperties("item_properties", "itemId", itemUniqueId, item.Properties); + + items.Add(index, item); + } + } + } + return items; + } + /// /// Returns items for given character. /// @@ -660,6 +702,60 @@ public void SaveCharacterItems(Character character) } } + /// + /// Returns items for given character into a specific table. + /// + /// + /// + public void SaveCharacterItems(Character character, string tableName, Dictionary items) + { + using (var conn = this.GetConnection()) + using (var trans = conn.BeginTransaction()) + { + using (var mc = new MySqlCommand($"DELETE FROM `{tableName}` WHERE `characterId` = @characterId", conn, trans)) + { + mc.Parameters.AddWithValue("@characterId", character.DbId); + mc.ExecuteNonQuery(); + } + + foreach (var kvp in items) + { + var index = kvp.Key; + var item = kvp.Value; + var newId = 0L; + + // Save the actual items into the items table and the + // inventory-exclusive values into the inventory table, + // while linking to the items. + // TODO: Add generic item load and save methods, for + // other item collections to use, such as warehouse. + + using (var cmd = new InsertCommand("INSERT INTO `items` {0}", conn, trans)) + { + cmd.Set("itemId", item.Id); + cmd.Set("amount", item.Amount); + + cmd.Execute(); + + newId = cmd.LastId; + } + + using (var cmd = new InsertCommand("INSERT INTO `" + tableName + "` {0}", conn, trans)) + { + cmd.Set("characterId", character.DbId); + cmd.Set("itemId", newId); + cmd.Set("sort", index); + + cmd.Execute(); + } + + this.SaveProperties("item_properties", "itemId", newId, item.Properties, conn, trans); + } + + trans.Commit(); + } + } + /// /// Load storage items into given storage. /// diff --git a/src/ZoneServer/Network/PacketHandler.cs b/src/ZoneServer/Network/PacketHandler.cs index cc8de485c..fe7cf4e90 100644 --- a/src/ZoneServer/Network/PacketHandler.cs +++ b/src/ZoneServer/Network/PacketHandler.cs @@ -16,6 +16,7 @@ using Melia.Zone.Skills.Handlers.Base; using Melia.Zone.World; using Melia.Zone.World.Actors; +using Melia.Zone.World.Actors.Characters; using Melia.Zone.World.Actors.Characters.Components; using Melia.Zone.World.Actors.CombatEntities.Components; using Melia.Zone.World.Actors.Components; @@ -190,6 +191,7 @@ public void CZ_GAME_READY(IZoneConnection conn, Packet packet) Send.ZC_QUICK_SLOT_LIST(character); Send.ZC_NORMAL.Unknown_EF(character); Send.ZC_UPDATED_PCAPPEARANCE(character); + Send.ZC_EQUIP_CARD_INFO(character); Send.ZC_NORMAL.HeadgearVisibilityUpdate(character); Send.ZC_ADDITIONAL_SKILL_POINT(character); Send.ZC_SET_DAYLIGHT_INFO(character); @@ -787,6 +789,10 @@ public void CZ_ITEM_USE(IZoneConnection conn, Packet packet) return; } + // Don't need to log cards, because they don't have a script function. + if (item.Data.CardGroup != CardGroup.None) + return; + // Nothing to do if the item doesn't have a script if (!item.Data.HasScript) { diff --git a/src/ZoneServer/Network/Send.cs b/src/ZoneServer/Network/Send.cs index 53462a0dd..7027e9417 100644 --- a/src/ZoneServer/Network/Send.cs +++ b/src/ZoneServer/Network/Send.cs @@ -2016,7 +2016,7 @@ public static void ZC_JOB_EXP_UP(Character character, long exp) /// /// /// - public static void ZC_ADDON_MSG(Character character, string msg, int argNum, string argStr) + public static void ZC_ADDON_MSG(Character character, string msg, int argNum = 0, string argStr = "") { var packet = new Packet(Op.ZC_ADDON_MSG); @@ -3671,13 +3671,23 @@ public static void ZC_SYNC_EXEC(Character character, int key) } /// - /// Unknown Purpose. + /// Update the client with current cards equipped. /// /// public static void ZC_EQUIP_CARD_INFO(Character character) { + var cards = character.Inventory.GetCards(); + var packet = new Packet(Op.ZC_EQUIP_CARD_INFO); - packet.PutShort(0); // Count? + packet.PutShort(cards.Count); + + foreach (var card in cards) + { + packet.PutLpString(card.Value.Data.ClassName); + packet.PutLong((long)card.Value.Properties.GetFloat(PropertyName.ItemExp)); + packet.PutInt(card.Key); + packet.PutShort((short)card.Value.Properties.GetFloat(PropertyName.CardLevel)); + } character.Connection.Send(packet); } @@ -4541,5 +4551,17 @@ public static void ZC_ACTION_PKS(IActor toActor, IActor fromActor, byte type, in toActor.Map.Broadcast(packet); } + + /// Cancel "timed action" due to mouse movement (walking) + /// + /// + public static void ZC_CANCEL_MOUSE_MOVE(Character character) + { + var packet = new Packet(Op.ZC_CANCEL_MOUSE_MOVE); + + packet.PutInt(character.Handle); + + character.Connection.Send(packet); + } } } diff --git a/src/ZoneServer/World/Actors/Characters/Components/InventoryComponent.cs b/src/ZoneServer/World/Actors/Characters/Components/InventoryComponent.cs index ce44eb25d..d5526619d 100644 --- a/src/ZoneServer/World/Actors/Characters/Components/InventoryComponent.cs +++ b/src/ZoneServer/World/Actors/Characters/Components/InventoryComponent.cs @@ -18,6 +18,7 @@ public class InventoryComponent : CharacterComponent private Dictionary> _items = new(); private readonly Dictionary _itemsWorldIndex = new(); private readonly Dictionary _equip = new(InventoryDefaults.EquipSlotCount); + private readonly Dictionary _cards = new(); /// /// Raised when the character equipped an item. @@ -222,6 +223,17 @@ public Item GetItem(long worldId) return item; } + /// + /// Returns item by world id, or null if it doesn't exist. + /// + /// + /// + public bool TryGetItem(long worldId, out Item item) + { + lock (_syncLock) + return _itemsWorldIndex.TryGetValue(worldId, out item); + } + // I don't remember what this method was used for, but it // wouldn't work anymore, since inventory categories have // gotte more complicated. I'm going to disable it for @@ -833,6 +845,92 @@ public InventoryResult Clear() return InventoryResult.Success; } + + /// + /// Adds a card to the specified slot without triggering any notifications or events. + /// + /// The slot to add the card to. + /// The card item to add. + /// An InventoryResult indicating the success or failure of the operation. + public InventoryResult AddSilentCard(int slot, Item card) + { + if (_cards.ContainsKey(slot)) + return InventoryResult.InvalidOperation; + + lock (_syncLock) + _cards[slot] = card; + + return InventoryResult.Success; + } + + /// + /// Returns a copy of the dictionary containing all equipped cards. + /// + /// A dictionary containing all equipped cards. + public Dictionary GetCards() + { + lock (_syncLock) + return _cards.ToDictionary(a => a.Key, a => a.Value); + } + + /// + /// Attempts to retrieve the card item at the specified slot. + /// + /// The slot to retrieve the card from. + /// The card item if found, otherwise null. + /// True if the card was found, false otherwise. + public bool TryGetCard(int slot, out Item card) + { + lock (_syncLock) + return _cards.TryGetValue(slot, out card); + } + + /// + /// Equips the item with the specified world ID to the given slot. + /// + /// The slot to equip the card to. + /// The world ID of the item to equip. + /// An InventoryResult indicating the success or failure of the operation. + public InventoryResult EquipCard(int slot, long worldId) + { + var item = this.GetItem(worldId); + if (item == null) + return InventoryResult.ItemNotFound; + + if (_cards.ContainsKey(slot)) + return InventoryResult.InvalidOperation; + + this.Remove(item, 1, InventoryItemRemoveMsg.Equipped); + lock (_syncLock) + _cards[slot] = item; + + Send.ZC_EQUIP_CARD_INFO(this.Character); + + return InventoryResult.Success; + } + + /// + /// Unequips the card from the specified slot. + /// + /// The slot to unequip the card from. + /// An InventoryResult indicating the success or failure of the operation. + public InventoryResult UnequipCard(int slot) + { + if (slot < 1 && slot > 15) + return InventoryResult.InvalidSlot; + var item = _cards[slot]; + if (item == null) + return InventoryResult.ItemNotFound; + + lock (_syncLock) + _cards.Remove(slot); + + this.Add(item, InventoryAddType.New); + + Send.ZC_EQUIP_CARD_INFO(this.Character); + + return InventoryResult.Success; + } } public enum InventoryResult diff --git a/src/ZoneServer/World/Items/Item.cs b/src/ZoneServer/World/Items/Item.cs index 46fe56b39..aa5e7e145 100644 --- a/src/ZoneServer/World/Items/Item.cs +++ b/src/ZoneServer/World/Items/Item.cs @@ -97,6 +97,21 @@ public int Amount /// public Properties Properties { get; } = new Properties("Item"); + /// + /// Gets or sets an expiration date on the item + /// + public DateTime ExpirationDate { get; private set; } = DateTime.MaxValue; + + /// + /// Checks if an item is expiring or can expire. + /// + public bool CanExpire => this.Properties.GetFloat(PropertyName.LifeTime) > 0; + + /// + /// Checks if an item is expired. + /// + public bool IsExpired => this.ExpirationDate < DateTime.Now || this.Properties.GetFloat(PropertyName.ItemLifeTimeOver) > 1; + /// /// Creates new item. /// @@ -153,17 +168,23 @@ protected virtual void LoadData() /// protected virtual void LoadDataProperties() { - if (this.Data.MinAtk != 0) this.Properties.SetFloat("MINATK", this.Data.MinAtk); - if (this.Data.MaxAtk != 0) this.Properties.SetFloat("MAXATK", this.Data.MaxAtk); - if (this.Data.MAtk != 0) this.Properties.SetFloat("MATK", this.Data.MAtk); - if (this.Data.PAtk != 0) this.Properties.SetFloat("PATK", this.Data.PAtk); - if (this.Data.AddMinAtk != 0) this.Properties.SetFloat("ADD_MINATK", this.Data.AddMinAtk); - if (this.Data.AddMaxAtk != 0) this.Properties.SetFloat("ADD_MAXATK", this.Data.AddMaxAtk); - if (this.Data.AddMAtk != 0) this.Properties.SetFloat("ADD_MATK", this.Data.AddMAtk); - if (this.Data.Def != 0) this.Properties.SetFloat("DEF", this.Data.Def); - if (this.Data.MDef != 0) this.Properties.SetFloat("MDEF", this.Data.MDef); - if (this.Data.AddDef != 0) this.Properties.SetFloat("ADD_DEF", this.Data.AddDef); - if (this.Data.AddMDef != 0) this.Properties.SetFloat("ADD_MDEF", this.Data.AddMDef); + if (this.Data.MinAtk != 0) this.Properties.SetFloat(PropertyName.MINATK, this.Data.MinAtk); + if (this.Data.MaxAtk != 0) this.Properties.SetFloat(PropertyName.MAXATK, this.Data.MaxAtk); + if (this.Data.MAtk != 0) this.Properties.SetFloat(PropertyName.MATK, this.Data.MAtk); + if (this.Data.PAtk != 0) this.Properties.SetFloat(PropertyName.PATK, this.Data.PAtk); + if (this.Data.AddMinAtk != 0) this.Properties.SetFloat(PropertyName.ADD_MINATK, this.Data.AddMinAtk); + if (this.Data.AddMaxAtk != 0) this.Properties.SetFloat(PropertyName.ADD_MAXATK, this.Data.AddMaxAtk); + if (this.Data.AddMAtk != 0) this.Properties.SetFloat(PropertyName.ADD_MATK, this.Data.AddMAtk); + if (this.Data.Def != 0) this.Properties.SetFloat(PropertyName.DEF, this.Data.Def); + if (this.Data.MDef != 0) this.Properties.SetFloat(PropertyName.MDEF, this.Data.MDef); + if (this.Data.AddDef != 0) this.Properties.SetFloat(PropertyName.ADD_DEF, this.Data.AddDef); + if (this.Data.AddMDef != 0) this.Properties.SetFloat(PropertyName.ADD_MDEF, this.Data.AddMDef); + + if (this.Data.CardGroup != CardGroup.None) + { + this.Properties.SetString(PropertyName.CardGroupName, this.Data.CardGroup.ToString()); + this.Properties.SetFloat(PropertyName.CardLevel, this.Data.CardLevel); + } } /// diff --git a/system/db/item_exp.txt b/system/db/item_exp.txt new file mode 100644 index 000000000..88e42fe92 --- /dev/null +++ b/system/db/item_exp.txt @@ -0,0 +1,234 @@ +// Melia +// Database file +// +// The Equip EXP need to be changed on both client and server, because the +// client uses its local EXP data for some calculations, like the required +// required level items. +//--------------------------------------------------------------------------- + +[ +// Card +//--------------------------------------------------------------------------- +{ group: "Card", level: 1, exp: 200, gainExp: 100 }, +{ group: "Card", level: 2, exp: 300, gainExp: 150 }, +{ group: "Card", level: 3, exp: 400, gainExp: 200 }, +{ group: "Card", level: 4, exp: 500, gainExp: 250 }, +{ group: "Card", level: 5, exp: 600, gainExp: 300 }, +{ group: "Card", level: 6, exp: 700, gainExp: 350 }, +{ group: "Card", level: 7, exp: 800, gainExp: 400 }, +{ group: "Card", level: 8, exp: 900, gainExp: 450 }, +{ group: "Card", level: 9, exp: 1000, gainExp: 500 }, +{ group: "Card", level: 10, exp: 1100, gainExp: 550 }, + +// Card_dummy01 +//--------------------------------------------------------------------------- +{ group: "Card_dummy01", level: 1, exp: 0, gainExp: 2000 }, + +// Card_dummy01_Event +//--------------------------------------------------------------------------- +{ group: "Card_dummy01_Event", level: 1, exp: 0, gainExp: 1000 }, + +// Card_Fish_300 +//--------------------------------------------------------------------------- +{ group: "Card_Fish_300", level: 1, exp: 0, gainExp: 300 }, + +// Card_Gacha_dummy01 +//--------------------------------------------------------------------------- +{ group: "Card_Gacha_dummy01", level: 1, exp: 0, gainExp: 500 }, + +// Card_xp_100 +//--------------------------------------------------------------------------- +{ group: "Card_xp_100", level: 1, exp: 0, gainExp: 100 }, + +// Equip +//--------------------------------------------------------------------------- +{ group: "Equip", level: 1, exp: 0, gainExp: 20 }, + +// Gem +//--------------------------------------------------------------------------- +{ group: "Gem", level: 1, exp: 300, gainExp: 100 }, +{ group: "Gem", level: 2, exp: 900, gainExp: 300 }, +{ group: "Gem", level: 3, exp: 2700, gainExp: 900 }, +{ group: "Gem", level: 4, exp: 10800, gainExp: 2700 }, +{ group: "Gem", level: 5, exp: 43200, gainExp: 10800 }, +{ group: "Gem", level: 6, exp: 172800, gainExp: 43200 }, +{ group: "Gem", level: 7, exp: 864000, gainExp: 172800 }, +{ group: "Gem", level: 8, exp: 4320000, gainExp: 864000 }, +{ group: "Gem", level: 9, exp: 21600000, gainExp: 4320000 }, +{ group: "Gem", level: 10, exp: 0, gainExp: 4320000 }, + +// Gem_Skill +//--------------------------------------------------------------------------- +{ group: "Gem_Skill", level: 1, exp: 0, gainExp: 7350 }, + +// GemExp_5000 +//--------------------------------------------------------------------------- +{ group: "GemExp_5000", level: 1, exp: 0, gainExp: 5000 }, + +// GemExp_randomQuest1 +//--------------------------------------------------------------------------- +{ group: "GemExp_randomQuest1", level: 1, exp: 0, gainExp: 300 }, + +// GemExp_randomQuest2 +//--------------------------------------------------------------------------- +{ group: "GemExp_randomQuest2", level: 1, exp: 0, gainExp: 1200 }, + +// GemExp_randomQuest3 +//--------------------------------------------------------------------------- +{ group: "GemExp_randomQuest3", level: 1, exp: 0, gainExp: 3900 }, + +// GemExp_randomQuest4 +//--------------------------------------------------------------------------- +{ group: "GemExp_randomQuest4", level: 1, exp: 0, gainExp: 14700 }, + +// GemExp_randomQuest5 +//--------------------------------------------------------------------------- +{ group: "GemExp_randomQuest5", level: 1, exp: 0, gainExp: 57900 }, + +// GemExp_Talt01 +//--------------------------------------------------------------------------- +{ group: "GemExp_Talt01", level: 1, exp: 0, gainExp: 100 }, + +// GemExpStone01 +//--------------------------------------------------------------------------- +{ group: "GemExpStone01", level: 1, exp: 0, gainExp: 3000 }, + +// GemExpStone02 +//--------------------------------------------------------------------------- +{ group: "GemExpStone02", level: 1, exp: 0, gainExp: 15500 }, + +// GemExpStone03 +//--------------------------------------------------------------------------- +{ group: "GemExpStone03", level: 1, exp: 0, gainExp: 31000 }, + +// GemExpStone04 +//--------------------------------------------------------------------------- +{ group: "GemExpStone04", level: 1, exp: 0, gainExp: 62000 }, + +// GemExpStone05 +//--------------------------------------------------------------------------- +{ group: "GemExpStone05", level: 1, exp: 0, gainExp: 124000 }, + +// GemExpStone07 +//--------------------------------------------------------------------------- +{ group: "GemExpStone07", level: 1, exp: 0, gainExp: 145340 }, + +// GemExpStone09 +//--------------------------------------------------------------------------- +{ group: "GemExpStone09", level: 1, exp: 0, gainExp: 230700 }, + +// GemExpStone10 +//--------------------------------------------------------------------------- +{ group: "GemExpStone10", level: 1, exp: 0, gainExp: 1094700 }, + +// GemExpStone11 +//--------------------------------------------------------------------------- +{ group: "GemExpStone11", level: 1, exp: 0, gainExp: 5414700 }, + +// GemExpStone12 +//--------------------------------------------------------------------------- +{ group: "GemExpStone12", level: 1, exp: 0, gainExp: 27014700 }, + +// Goddess_Card +//--------------------------------------------------------------------------- +{ group: "Goddess_Card", level: 1, exp: 20, gainExp: 0 }, +{ group: "Goddess_Card", level: 2, exp: 40, gainExp: 0 }, +{ group: "Goddess_Card", level: 3, exp: 70, gainExp: 0 }, +{ group: "Goddess_Card", level: 4, exp: 100, gainExp: 0 }, +{ group: "Goddess_Card", level: 5, exp: 140, gainExp: 0 }, +{ group: "Goddess_Card", level: 6, exp: 180, gainExp: 0 }, +{ group: "Goddess_Card", level: 7, exp: 230, gainExp: 0 }, +{ group: "Goddess_Card", level: 8, exp: 280, gainExp: 0 }, +{ group: "Goddess_Card", level: 9, exp: 340, gainExp: 0 }, +{ group: "Goddess_Card", level: 10, exp: 0, gainExp: 0 }, + +// Goddess_ReinForce_Card +//--------------------------------------------------------------------------- +{ group: "Goddess_ReinForce_Card", level: 1, exp: 10, gainExp: 0 }, +{ group: "Goddess_ReinForce_Card", level: 2, exp: 20, gainExp: 0 }, +{ group: "Goddess_ReinForce_Card", level: 3, exp: 40, gainExp: 0 }, +{ group: "Goddess_ReinForce_Card", level: 4, exp: 50, gainExp: 0 }, +{ group: "Goddess_ReinForce_Card", level: 5, exp: 70, gainExp: 0 }, +{ group: "Goddess_ReinForce_Card", level: 6, exp: 90, gainExp: 0 }, +{ group: "Goddess_ReinForce_Card", level: 7, exp: 120, gainExp: 0 }, +{ group: "Goddess_ReinForce_Card", level: 8, exp: 140, gainExp: 0 }, +{ group: "Goddess_ReinForce_Card", level: 9, exp: 170, gainExp: 0 }, +{ group: "Goddess_ReinForce_Card", level: 10, exp: 0, gainExp: 0 }, + +// KQ_token_hethran_1 +//--------------------------------------------------------------------------- +{ group: "KQ_token_hethran_1", level: 1, exp: 1000, gainExp: 300 }, + +// KQ_token_hethran_2 +//--------------------------------------------------------------------------- +{ group: "KQ_token_hethran_2", level: 1, exp: 2500, gainExp: 500 }, + +// KQ_token_hethran_3 +//--------------------------------------------------------------------------- +{ group: "KQ_token_hethran_3", level: 1, exp: 7500, gainExp: 2500 }, + +// Legend_Card +//--------------------------------------------------------------------------- +{ group: "Legend_Card", level: 1, exp: 20, gainExp: 0 }, +{ group: "Legend_Card", level: 2, exp: 40, gainExp: 0 }, +{ group: "Legend_Card", level: 3, exp: 70, gainExp: 0 }, +{ group: "Legend_Card", level: 4, exp: 100, gainExp: 0 }, +{ group: "Legend_Card", level: 5, exp: 140, gainExp: 0 }, +{ group: "Legend_Card", level: 6, exp: 180, gainExp: 0 }, +{ group: "Legend_Card", level: 7, exp: 230, gainExp: 0 }, +{ group: "Legend_Card", level: 8, exp: 280, gainExp: 0 }, +{ group: "Legend_Card", level: 9, exp: 340, gainExp: 0 }, +{ group: "Legend_Card", level: 10, exp: 0, gainExp: 0 }, + +// Legend_Reinforce_Card_MaxLv10 +//--------------------------------------------------------------------------- +{ group: "Legend_Reinforce_Card_MaxLv10", level: 1, exp: 6000, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv10", level: 2, exp: 7200, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv10", level: 3, exp: 15900, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv10", level: 4, exp: 35000, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv10", level: 5, exp: 77000, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv10", level: 6, exp: 169400, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv10", level: 7, exp: 372600, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv10", level: 8, exp: 819800, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv10", level: 9, exp: 1803500, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv10", level: 10, exp: 0, gainExp: 0 }, + +// Legend_Reinforce_Card_MaxLv4 +//--------------------------------------------------------------------------- +{ group: "Legend_Reinforce_Card_MaxLv4", level: 1, exp: 6000, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv4", level: 2, exp: 7200, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv4", level: 3, exp: 15900, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv4", level: 4, exp: 0, gainExp: 0 }, + +// Legend_Reinforce_Card_MaxLv6 +//--------------------------------------------------------------------------- +{ group: "Legend_Reinforce_Card_MaxLv6", level: 1, exp: 6000, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv6", level: 2, exp: 7200, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv6", level: 3, exp: 15900, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv6", level: 4, exp: 35000, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv6", level: 5, exp: 77000, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv6", level: 6, exp: 0, gainExp: 0 }, + +// Legend_Reinforce_Card_MaxLv8 +//--------------------------------------------------------------------------- +{ group: "Legend_Reinforce_Card_MaxLv8", level: 1, exp: 6000, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv8", level: 2, exp: 7200, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv8", level: 3, exp: 15900, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv8", level: 4, exp: 35000, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv8", level: 5, exp: 77000, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv8", level: 6, exp: 169400, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv8", level: 7, exp: 372600, gainExp: 0 }, +{ group: "Legend_Reinforce_Card_MaxLv8", level: 8, exp: 0, gainExp: 0 }, + +// Lv10_Card_TP +//--------------------------------------------------------------------------- +{ group: "Lv10_Card_TP", level: 1, exp: 0, gainExp: 5400 }, + +// Misc +//--------------------------------------------------------------------------- +{ group: "Misc", level: 1, exp: 0, gainExp: 5 }, + +// Old_Card_TP +//--------------------------------------------------------------------------- +{ group: "Old_Card_TP", level: 1, exp: 0, gainExp: 1000 }, +] diff --git a/system/db/items.txt b/system/db/items.txt index c21287dd5..97465f85d 100644 --- a/system/db/items.txt +++ b/system/db/items.txt @@ -128,14 +128,14 @@ { itemId: 11002119, className: "PST04_122_3_Lv3", name: "[Lv3] Vaivora Vision - Sabotage", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Gun", minLevel: 450, middleSizeBonus: 1194, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Vibora", numArg1: 3 } }, { itemId: 11002120, className: "DAG04_123_7_Lv2", name: "[Lv2] Vaivora Vision - Gasp Up", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", minLevel: 450, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Vibora", numArg1: 2 } }, { itemId: 11002121, className: "DAG04_123_7_Lv3", name: "[Lv3] Vaivora Vision - Gasp Up", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", minLevel: 450, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Vibora", numArg1: 3 } }, -{ itemId: 11002122, className: "TMAC04_118_7_Lv2", name: "[Lv2] Vaivora Vision - Conviction", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, attackType: "Strike", strike: 1084, script: { strArg: "Vibora", numArg1: 2 } }, -{ itemId: 11002123, className: "TMAC04_118_7_Lv3", name: "[Lv3] Vaivora Vision - Conviction", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, attackType: "Strike", strike: 1192, script: { strArg: "Vibora", numArg1: 3 } }, -{ itemId: 11002124, className: "TSF04_129_8_Lv2", name: "[Lv2] Vaivora Vision - Demonische", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 2 } }, -{ itemId: 11002125, className: "TSF04_129_8_Lv3", name: "[Lv3] Vaivora Vision - Demonische", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 3 } }, -{ itemId: 11002126, className: "TSF04_129_7_Lv2", name: "[Lv2] Vaivora Vision - Immortality", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 2 } }, -{ itemId: 11002127, className: "TSF04_129_7_Lv3", name: "[Lv3] Vaivora Vision - Immortality", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 3 } }, -{ itemId: 11002128, className: "MAC04_129_2_Lv2", name: "[Lv2] Vaivora Vision - Protecting Grace", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, attackType: "Strike", script: { strArg: "Vibora", numArg1: 2 } }, -{ itemId: 11002129, className: "MAC04_129_2_Lv3", name: "[Lv3] Vaivora Vision - Protecting Grace", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, attackType: "Strike", script: { strArg: "Vibora", numArg1: 3 } }, +{ itemId: 11002122, className: "TMAC04_118_7_Lv2", name: "[Lv2] Vaivora Vision - Conviction", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", strike: 1084, script: { strArg: "Vibora", numArg1: 2 } }, +{ itemId: 11002123, className: "TMAC04_118_7_Lv3", name: "[Lv3] Vaivora Vision - Conviction", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", strike: 1192, script: { strArg: "Vibora", numArg1: 3 } }, +{ itemId: 11002124, className: "TSF04_129_8_Lv2", name: "[Lv2] Vaivora Vision - Demonische", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 2 } }, +{ itemId: 11002125, className: "TSF04_129_8_Lv3", name: "[Lv3] Vaivora Vision - Demonische", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 3 } }, +{ itemId: 11002126, className: "TSF04_129_7_Lv2", name: "[Lv2] Vaivora Vision - Immortality", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 2 } }, +{ itemId: 11002127, className: "TSF04_129_7_Lv3", name: "[Lv3] Vaivora Vision - Immortality", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 3 } }, +{ itemId: 11002128, className: "MAC04_129_2_Lv2", name: "[Lv2] Vaivora Vision - Protecting Grace", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", script: { strArg: "Vibora", numArg1: 2 } }, +{ itemId: 11002129, className: "MAC04_129_2_Lv3", name: "[Lv3] Vaivora Vision - Protecting Grace", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", script: { strArg: "Vibora", numArg1: 3 } }, { itemId: 11002130, className: "PST04_122_4_Lv2", name: "[Lv2] Vaivora Vision - Critical Edge", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Gun", minLevel: 450, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Vibora", numArg1: 2 } }, { itemId: 11002131, className: "PST04_122_4_Lv3", name: "[Lv3] Vaivora Vision - Critical Edge", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Gun", minLevel: 450, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Vibora", numArg1: 3 } }, { itemId: 11002132, className: "TBW04_126_2_Lv2", name: "[Lv2] Vaivora Vision - Hawking", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Bow", minLevel: 450, attackType: "Arrow", script: { strArg: "Vibora", numArg1: 2 } }, @@ -154,14 +154,14 @@ { itemId: 11002145, className: "SWD04_126_6_Lv3", name: "[Lv3] Vaivora Vision - Doble Attaque", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Sword", minLevel: 450, middleSizeBonus: 1194, attackType: "Slash", script: { strArg: "Vibora", numArg1: 3 } }, { itemId: 11002146, className: "SWD04_126_7_Lv2", name: "[Lv2] Vaivora Vision - Arena", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Sword", minLevel: 450, attackType: "Slash", script: { strArg: "Vibora", numArg1: 2 } }, { itemId: 11002147, className: "SWD04_126_7_Lv3", name: "[Lv3] Vaivora Vision - Arena", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Sword", minLevel: 450, attackType: "Slash", script: { strArg: "Vibora", numArg1: 3 } }, -{ itemId: 11002148, className: "TMAC04_118_8_Lv2", name: "[Lv2] Vaivora Vision - Ema", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, attackType: "Strike", script: { strArg: "Vibora", numArg1: 2 } }, -{ itemId: 11002149, className: "TMAC04_118_8_Lv3", name: "[Lv3] Vaivora Vision - Ema", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, attackType: "Strike", script: { strArg: "Vibora", numArg1: 3 } }, -{ itemId: 11002150, className: "TSF04_129_9_Lv2", name: "[Lv2] Vaivora Vision - Electric Flow", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 2 } }, -{ itemId: 11002151, className: "TSF04_129_9_Lv3", name: "[Lv3] Vaivora Vision - Electric Flow", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 3 } }, +{ itemId: 11002148, className: "TMAC04_118_8_Lv2", name: "[Lv2] Vaivora Vision - Ema", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", script: { strArg: "Vibora", numArg1: 2 } }, +{ itemId: 11002149, className: "TMAC04_118_8_Lv3", name: "[Lv3] Vaivora Vision - Ema", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", script: { strArg: "Vibora", numArg1: 3 } }, +{ itemId: 11002150, className: "TSF04_129_9_Lv2", name: "[Lv2] Vaivora Vision - Electric Flow", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 2 } }, +{ itemId: 11002151, className: "TSF04_129_9_Lv3", name: "[Lv3] Vaivora Vision - Electric Flow", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 3 } }, { itemId: 11002152, className: "TBW04_126_4_Lv2", name: "[Lv2] Vaivora Vision - Jusalnegi", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Bow", minLevel: 450, attackType: "Arrow", script: { strArg: "Vibora", numArg1: 2 } }, { itemId: 11002153, className: "TBW04_126_4_Lv3", name: "[Lv3] Vaivora Vision - Jusalnegi", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Bow", minLevel: 450, attackType: "Arrow", script: { strArg: "Vibora", numArg1: 3 } }, -{ itemId: 11002154, className: "TSF04_129_10_Lv2", name: "[Lv2] Vaivora Vision - Vigilant Charm", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 2 } }, -{ itemId: 11002155, className: "TSF04_129_10_Lv3", name: "[Lv3] Vaivora Vision - Vigilant Charm", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 3 } }, +{ itemId: 11002154, className: "TSF04_129_10_Lv2", name: "[Lv2] Vaivora Vision - Vigilant Charm", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 2 } }, +{ itemId: 11002155, className: "TSF04_129_10_Lv3", name: "[Lv3] Vaivora Vision - Vigilant Charm", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Staff", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Vibora", numArg1: 3 } }, { itemId: 11002156, className: "TBW04_126_5_Lv2", name: "[Lv2] Vaivora Vision - Tempest", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Bow", minLevel: 450, attackType: "Arrow", script: { strArg: "Vibora", numArg1: 2 } }, { itemId: 11002157, className: "TBW04_126_5_Lv3", name: "[Lv3] Vaivora Vision - Tempest", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Bow", minLevel: 450, attackType: "Arrow", script: { strArg: "Vibora", numArg1: 3 } }, { itemId: 11002158, className: "PST04_122_5_Lv2", name: "[Lv2] Vaivora Vision - Carbine", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Gun", minLevel: 450, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Vibora", numArg1: 2 } }, @@ -176,8 +176,8 @@ { itemId: 11002167, className: "SWD04_126_8_Lv3", name: "[Lv3] Vaivora Vision - Pounding Rage", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Sword", minLevel: 450, attackType: "Slash", script: { strArg: "Vibora", numArg1: 3 } }, { itemId: 11002168, className: "TMAC04_118_9_Lv2", name: "[Lv2] Vaivora Vision - Principle of Emptiness", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, attackType: "Strike", strike: 1084, script: { strArg: "Vibora", numArg1: 2 } }, { itemId: 11002169, className: "TMAC04_118_9_Lv3", name: "[Lv3] Vaivora Vision - Principle of Emptiness", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, attackType: "Strike", strike: 1192, script: { strArg: "Vibora", numArg1: 3 } }, -{ itemId: 11002170, className: "TMAC04_118_10_Lv2", name: "[Lv2] Vaivora Vision - Soul of Forest", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, attackType: "Strike", strike: 1084, script: { strArg: "Vibora", numArg1: 2 } }, -{ itemId: 11002171, className: "TMAC04_118_10_Lv3", name: "[Lv3] Vaivora Vision - Soul of Forest", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, attackType: "Strike", strike: 1192, script: { strArg: "Vibora", numArg1: 3 } }, +{ itemId: 11002170, className: "TMAC04_118_10_Lv2", name: "[Lv2] Vaivora Vision - Soul of Forest", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", strike: 1084, script: { strArg: "Vibora", numArg1: 2 } }, +{ itemId: 11002171, className: "TMAC04_118_10_Lv3", name: "[Lv3] Vaivora Vision - Soul of Forest", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, equipExpGroup: "Equip", attackType: "Strike", strike: 1192, script: { strArg: "Vibora", numArg1: 3 } }, { itemId: 11002172, className: "MAC04_129_4_Lv2", name: "[Lv2] Vaivora Vision - Aura", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, attackType: "Strike", script: { strArg: "Vibora", numArg1: 2 } }, { itemId: 11002173, className: "MAC04_129_4_Lv3", name: "[Lv3] Vaivora Vision - Aura", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, attackType: "Strike", script: { strArg: "Vibora", numArg1: 3 } }, { itemId: 11002174, className: "MAC04_129_5_Lv2", name: "[Lv2] Vaivora Vision - Longing", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Mace", minLevel: 450, attackType: "Strike", script: { strArg: "Vibora", numArg1: 2 } }, @@ -233,8 +233,8 @@ { itemId: 11002227, className: "DAG04_127_1_Lv2", name: "[Lv2] Vaivora Vision - Quantum Impulse", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", minLevel: 450, attackType: "Gun", leftHandSkill: "Common_DaggerAries", script: { strArg: "Vibora", numArg1: 2 } }, { itemId: 11002228, className: "DAG04_127_1_Lv3", name: "[Lv3] Vaivora Vision - Quantum Impulse", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", minLevel: 450, attackType: "Gun", leftHandSkill: "Common_DaggerAries", script: { strArg: "Vibora", numArg1: 3 } }, { itemId: 11002229, className: "DAG04_127_1_Lv4", name: "[Lv4] Vaivora Vision - Quantum Impulse", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Arcane", minLevel: 460, attackType: "Gun", leftHandSkill: "Common_DaggerAries", script: { strArg: "Vibora", numArg1: 4 } }, -{ itemId: 11003061, className: "EP13_Galimybe_TOP", name: "Vision - Galimive Armor", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, script: { strArg: "EP13GALIMYBEARMOR" } }, -{ itemId: 11003062, className: "GrowthVision_Armor", name: "[Growth]", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460 }, +{ itemId: 11003061, className: "EP13_Galimybe_TOP", name: "Vision - Galimive Armor", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, equipExpGroup: "Equip", script: { strArg: "EP13GALIMYBEARMOR" } }, +{ itemId: 11003062, className: "GrowthVision_Armor", name: "[Growth]", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, equipExpGroup: "Equip" }, { itemId: 11050000, className: "SWD04_126_Lv2", name: "[Lv2] Vaivora Vision - Echo", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Sword", minLevel: 450, attackType: "Slash", script: { strArg: "Vibora", numArg1: 2 } }, { itemId: 11050001, className: "SWD04_126_1_Lv2", name: "[Lv2] Vaivora Vision - Escudo Espada", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Sword", minLevel: 450, attackType: "Slash", script: { strArg: "Vibora", numArg1: 2 } }, { itemId: 11050002, className: "SWD04_126_2_Lv2", name: "[Lv2] Vaivora Vision - Saber", type: "Equip", group: "Arcane", weight: 10, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Arcane", equipType2: "Sword", minLevel: 450, attackType: "Slash", slash: 1091, script: { strArg: "Vibora", numArg1: 2 } }, @@ -596,1372 +596,1372 @@ { itemId: 18024, className: "LENS01_010_KOR", name: "Blue Lense", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Lens", equipType2: "Premium", script: { strArg: "eye01_blue2" } }, { itemId: 18025, className: "LENS01_020", name: "Holy Pink Lense", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Lens", equipType2: "Premium", script: { strArg: "eye01_angel" } }, { itemId: 19003, className: "Gold_Armor", name: "Golden Dog Warrior Helmet", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hair", equipType2: "Premium", script: { strArg: "helmet_goldarmor" } }, -{ itemId: 221101, className: "SHD01_101", name: "Wooden Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Shield", minLevel: 1, def: 51, mDef: 51, material: "Shield" }, -{ itemId: 221102, className: "SHD01_102", name: "Wooden Buckler", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, def: 172, mDef: 172, material: "Shield" }, -{ itemId: 221103, className: "SHD01_103", name: "Wooden Kite Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, def: 172, mDef: 172, material: "Shield" }, -{ itemId: 221104, className: "SHD01_104", name: "Kite Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 1728, sellPrice: 907, equipType1: "Shield", minLevel: 15, def: 172, mDef: 172, material: "Shield" }, -{ itemId: 221105, className: "SHD01_105", name: "Round Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Shield", minLevel: 40, def: 388, mDef: 388, material: "Shield" }, -{ itemId: 221106, className: "SHD01_106", name: "Steel Kite Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Shield", minLevel: 40, def: 388, mDef: 388, material: "Shield" }, -{ itemId: 221107, className: "SHD01_107", name: "Steel Buckler", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2184, sellPrice: 1102, equipType1: "Shield", minLevel: 40, def: 388, mDef: 388, material: "Shield" }, -{ itemId: 221108, className: "SHD01_108", name: "Machinery Shield", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 2184, sellPrice: 1621, equipType1: "Shield", minLevel: 40, def: 388, mDef: 388, material: "Shield" }, -{ itemId: 221109, className: "SHD01_109", name: "Old Wooden Buckler", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, def: 172, mDef: 172, material: "Shield" }, -{ itemId: 221110, className: "SHD01_110", name: "Old Wooden Kite shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, def: 172, mDef: 172, material: "Shield" }, +{ itemId: 221101, className: "SHD01_101", name: "Wooden Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 51, mDef: 51, material: "Shield" }, +{ itemId: 221102, className: "SHD01_102", name: "Wooden Buckler", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, equipExpGroup: "Equip", def: 172, mDef: 172, material: "Shield" }, +{ itemId: 221103, className: "SHD01_103", name: "Wooden Kite Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, equipExpGroup: "Equip", def: 172, mDef: 172, material: "Shield" }, +{ itemId: 221104, className: "SHD01_104", name: "Kite Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 1728, sellPrice: 907, equipType1: "Shield", minLevel: 15, equipExpGroup: "Equip", def: 172, mDef: 172, material: "Shield" }, +{ itemId: 221105, className: "SHD01_105", name: "Round Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Shield", minLevel: 40, equipExpGroup: "Equip", def: 388, mDef: 388, material: "Shield" }, +{ itemId: 221106, className: "SHD01_106", name: "Steel Kite Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Shield", minLevel: 40, equipExpGroup: "Equip", def: 388, mDef: 388, material: "Shield" }, +{ itemId: 221107, className: "SHD01_107", name: "Steel Buckler", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2184, sellPrice: 1102, equipType1: "Shield", minLevel: 40, equipExpGroup: "Equip", def: 388, mDef: 388, material: "Shield" }, +{ itemId: 221108, className: "SHD01_108", name: "Machinery Shield", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 2184, sellPrice: 1621, equipType1: "Shield", minLevel: 40, equipExpGroup: "Equip", def: 388, mDef: 388, material: "Shield" }, +{ itemId: 221109, className: "SHD01_109", name: "Old Wooden Buckler", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, equipExpGroup: "Equip", def: 172, mDef: 172, material: "Shield" }, +{ itemId: 221110, className: "SHD01_110", name: "Old Wooden Kite shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, equipExpGroup: "Equip", def: 172, mDef: 172, material: "Shield" }, { itemId: 221111, className: "SHD01_111", name: "Dunkel Wooden Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Shield", minLevel: 1, def: 51, mDef: 51, material: "Shield" }, { itemId: 221112, className: "SHD01_112", name: "Dunkel Wooden Buckler", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, def: 172, mDef: 172, material: "Shield" }, -{ itemId: 221113, className: "SHD01_113", name: "Scallop Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Shield", minLevel: 75, def: 691, mDef: 691, material: "Shield" }, -{ itemId: 221114, className: "SHD01_114", name: "Pelta Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 9312, sellPrice: 1862, equipType1: "Shield", minLevel: 120, def: 1080, mDef: 1080, material: "Shield" }, -{ itemId: 221115, className: "SHD01_115", name: "Fedimian Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Shield", minLevel: 120, def: 1080, mDef: 1080, material: "Shield" }, -{ itemId: 221116, className: "SHD01_116", name: "Kalkan", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 9312, sellPrice: 2601, equipType1: "Shield", minLevel: 120, def: 1080, mDef: 1080, material: "Shield" }, -{ itemId: 221117, className: "SHD01_117", name: "Cavalry Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 14551, sellPrice: 2930, equipType1: "Shield", minLevel: 170, def: 1512, mDef: 1512, material: "Shield" }, -{ itemId: 221118, className: "SHD01_118", name: "Knight Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 14551, sellPrice: 3900, equipType1: "Shield", minLevel: 170, def: 1512, mDef: 1512, material: "Shield" }, -{ itemId: 221119, className: "SHD01_119", name: "Tower Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Shield", minLevel: 170, def: 1512, mDef: 1512, material: "Shield" }, -{ itemId: 221120, className: "SHD01_120", name: "Guardsman Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 19603, sellPrice: 3955, equipType1: "Shield", minLevel: 220, def: 1944, mDef: 1944, material: "Shield" }, -{ itemId: 221121, className: "SHD01_121", name: "Claria Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 19603, sellPrice: 4780, equipType1: "Shield", minLevel: 220, def: 1944, mDef: 1944, material: "Shield" }, -{ itemId: 221122, className: "SHD01_122", name: "(Faded) Replica Migantis Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Shield", minLevel: 270, def: 2376, mDef: 2376, material: "Shield" }, -{ itemId: 221123, className: "SHD01_123", name: "(Faded) Replica Pevordimas Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "Shield", minLevel: 315, def: 2764, mDef: 2764, material: "Shield" }, -{ itemId: 221124, className: "SHD01_124", name: "Practice Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 0, equipType1: "Shield", minLevel: 15, def: 172, mDef: 172, material: "Shield" }, -{ itemId: 221125, className: "SHD01_125", name: "Practice Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 5149, sellPrice: 0, equipType1: "Shield", minLevel: 75, def: 691, mDef: 691, material: "Shield" }, -{ itemId: 221481, className: "SHD01_481", name: "Royal Shield", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 907, equipType1: "Shield", minLevel: 1, def: 72, mDef: 72, material: "Shield", fireRes: 30, iceRes: 30, poisonRes: 30, holyRes: 30, darkRes: 30 }, -{ itemId: 222101, className: "SHD02_101", name: "Black Wooden Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 240, sellPrice: 345, equipType1: "Shield", minLevel: 1, def: 57, mDef: 57, material: "Shield", poisonRes: 9 }, -{ itemId: 222102, className: "SHD02_102", name: "Oak Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, def: 192, mDef: 192, material: "Shield" }, -{ itemId: 222103, className: "SHD02_103", name: "Savage Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2184, sellPrice: 436, equipType1: "Shield", minLevel: 40, def: 432, mDef: 432, material: "Shield", fireRes: 10 }, -{ itemId: 222104, className: "SHD02_104", name: "Zalia Kite Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Shield", minLevel: 40, def: 432, mDef: 432, addMDef: 40, material: "Shield" }, -{ itemId: 222105, className: "SHD02_105", name: "Superior Kite Shield", type: "Equip", group: "Armor", weight: 140, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Shield", minLevel: 40, def: 432, mDef: 432, material: "Shield" }, -{ itemId: 222106, className: "SHD02_106", name: "Bead Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Shield", minLevel: 40, def: 432, mDef: 432, material: "Shield", lightningRes: 17 }, -{ itemId: 222107, className: "SHD02_107", name: "Circle Guard", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Shield", minLevel: 75, def: 768, mDef: 768, material: "Shield", iceRes: 17 }, -{ itemId: 222108, className: "SHD02_108", name: "Ludas Shield", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Shield", minLevel: 75, def: 768, mDef: 768, material: "Shield" }, -{ itemId: 222109, className: "SHD02_109", name: "Minotaur Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, def: 192, mDef: 192, material: "Shield" }, -{ itemId: 222110, className: "SHD02_110", name: "Dio Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 103, equipType1: "Shield", minLevel: 15, def: 192, mDef: 192, material: "Shield" }, -{ itemId: 222111, className: "SHD02_111", name: "Thresh Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, def: 192, mDef: 192, material: "Shield" }, -{ itemId: 222112, className: "SHD02_112", name: "Sestas Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, def: 192, mDef: 192, material: "Shield" }, -{ itemId: 222113, className: "SHD02_113", name: "Dratt Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 907, equipType1: "Shield", minLevel: 15, def: 192, mDef: 192, material: "Shield" }, -{ itemId: 222114, className: "SHD02_114", name: "Aston Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 907, equipType1: "Shield", minLevel: 15, def: 192, mDef: 192, material: "Shield" }, -{ itemId: 222115, className: "SHD02_115", name: "Devi Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Shield", minLevel: 75, def: 768, mDef: 768, material: "Shield" }, -{ itemId: 222116, className: "SHD02_116", name: "Prima Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 1638, equipType1: "Shield", minLevel: 15, def: 192, mDef: 192, material: "Shield" }, -{ itemId: 222117, className: "SHD02_117", name: "Ferret Marauder Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 5149, sellPrice: 1638, equipType1: "Shield", minLevel: 75, def: 768, mDef: 768, material: "Shield" }, -{ itemId: 222118, className: "SHD02_118", name: "Alemeth Tower Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 19603, sellPrice: 3920, equipType1: "Shield", minLevel: 220, def: 2160, mDef: 2160, material: "Shield" }, -{ itemId: 222119, className: "SHD02_119", name: "Didel Tower Shield", type: "Equip", group: "Armor", weight: 115, maxStack: 1, price: 19603, sellPrice: 4780, equipType1: "Shield", minLevel: 220, def: 2160, mDef: 2160, addMDef: 96, material: "Shield" }, -{ itemId: 222120, className: "SHD02_120", name: "(Faded) Migantis Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 24000, sellPrice: 5000, equipType1: "Shield", minLevel: 270, def: 2640, mDef: 2640, material: "Shield" }, -{ itemId: 222121, className: "SHD02_121", name: "(Faded) Pevordimas Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 29280, sellPrice: 5000, equipType1: "Shield", minLevel: 315, def: 3072, mDef: 3072, material: "Shield" }, -{ itemId: 222122, className: "SHD02_122", name: "Spike Kindl", type: "Equip", group: "Armor", weight: 88, maxStack: 1, price: 9312, sellPrice: 0, equipType1: "Shield", minLevel: 120, def: 1200, mDef: 1200, material: "Shield" }, -{ itemId: 222123, className: "SHD02_123", name: "Rodeleine Shield", type: "Equip", group: "Armor", weight: 112, maxStack: 1, price: 14551, sellPrice: 0, equipType1: "Shield", minLevel: 170, def: 1680, mDef: 1680, material: "Shield" }, -{ itemId: 222124, className: "SHD02_124", name: "Sketis Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 5149, sellPrice: 0, equipType1: "Shield", minLevel: 75, def: 768, mDef: 768, material: "Shield" }, -{ itemId: 222125, className: "SHD02_125", name: "Pajoritas Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 19603, sellPrice: 0, equipType1: "Shield", minLevel: 220, def: 2160, mDef: 2160, material: "Shield" }, -{ itemId: 222126, className: "SHD02_126", name: "Migantis Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Shield", minLevel: 270, def: 2640, mDef: 2640, material: "Shield" }, -{ itemId: 222127, className: "SHD02_127", name: "Pevordimas Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Shield", minLevel: 315, def: 3072, mDef: 3072, material: "Shield" }, -{ itemId: 222128, className: "SHD02_128", name: "Raffye Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 350, def: 3408, mDef: 3408, material: "Shield" }, -{ itemId: 222129, className: "SHD02_129", name: "Zvaigzde Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, def: 3696, mDef: 3696, material: "Shield" }, -{ itemId: 222130, className: "SHD02_130", name: "Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 3888, mDef: 3888, material: "Shield" }, -{ itemId: 222481, className: "SHD02_481", name: "Emperor Shield", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 2184, sellPrice: 1621, equipType1: "Shield", minLevel: 40, def: 540, mDef: 540, material: "Shield", fireRes: 60, iceRes: 60, poisonRes: 60, holyRes: 60, darkRes: 60 }, -{ itemId: 222482, className: "SHD02_482", name: "Test Shield", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Shield", minLevel: 1, def: 51, mDef: 51, material: "Shield" }, -{ itemId: 222483, className: "SHD02_483", name: "Jigglebone Mercenary Shield", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Shield", minLevel: 1, def: 51, mDef: 51, material: "Shield" }, -{ itemId: 222484, className: "SHD02_484", name: "Jigglebone Sippar", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Shield", minLevel: 1, def: 51, mDef: 51, material: "Shield" }, -{ itemId: 222485, className: "SHD02_485", name: "Jigglebone Sippar 2", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Shield", minLevel: 1, def: 51, mDef: 51, material: "Shield" }, -{ itemId: 223101, className: "SHD03_101", name: "Wall Guard", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 14551, sellPrice: 3900, equipType1: "Shield", minLevel: 170, def: 1848, mDef: 1848, material: "Shield" }, -{ itemId: 223102, className: "SHD03_102", name: "Fortress", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 5149, sellPrice: 1138, equipType1: "Shield", minLevel: 75, def: 844, mDef: 844, material: "Shield", fireRes: 20, earthRes: 35 }, -{ itemId: 223103, className: "SHD03_103", name: "Beetleback", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Shield", minLevel: 75, def: 844, mDef: 844, material: "Shield", poisonRes: 62 }, -{ itemId: 223104, className: "SHD03_104", name: "Meteor", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 240, sellPrice: 147, equipType1: "Shield", minLevel: 1, def: 63, mDef: 63, material: "Shield" }, -{ itemId: 223105, className: "SHD03_105", name: "Pavaisa Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 9312, sellPrice: 2601, equipType1: "Shield", minLevel: 120, def: 1320, mDef: 1320, material: "Shield" }, -{ itemId: 223106, className: "SHD03_106", name: "Ledas Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 9312, sellPrice: 2910, equipType1: "Shield", minLevel: 120, def: 1320, mDef: 1320, material: "Shield", fireRes: 17, lightningRes: -27 }, -{ itemId: 223107, className: "SHD03_107", name: "Otrava Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 14551, sellPrice: 2991, equipType1: "Shield", minLevel: 170, def: 1848, mDef: 1848, material: "Shield", poisonRes: 19 }, -{ itemId: 223110, className: "SHD03_110", name: "Lionhead Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 29280, sellPrice: 7753, equipType1: "Shield", minLevel: 315, def: 3379, mDef: 3379, addDef: 15, addMDef: 325, material: "Shield" }, -{ itemId: 223301, className: "SHD03_301", name: "(Faded) Spike Kindl", type: "Equip", group: "Armor", weight: 88, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Shield", minLevel: 120, def: 1320, mDef: 1320, addMDef: 45, material: "Shield" }, -{ itemId: 223302, className: "SHD03_302", name: "(Faded) Rodeleine Shield", type: "Equip", group: "Armor", weight: 112, maxStack: 1, price: 14551, sellPrice: 2991, equipType1: "Shield", minLevel: 170, def: 1848, mDef: 1848, addDef: 81, material: "Shield" }, -{ itemId: 223303, className: "SHD03_303", name: "(Faded) Sketis Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 5149, sellPrice: 907, equipType1: "Shield", minLevel: 75, def: 844, mDef: 844, addDef: 30, material: "Shield" }, -{ itemId: 223304, className: "SHD03_304", name: "(Faded) Pajoritas Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 19603, sellPrice: 3920, equipType1: "Shield", minLevel: 220, def: 2376, mDef: 2376, addDef: 90, material: "Shield" }, -{ itemId: 223305, className: "SHD03_305", name: "(Faded) Purine Migantis Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 24000, sellPrice: 5000, equipType1: "Shield", minLevel: 270, def: 2904, mDef: 2904, addMDef: 115, material: "Shield" }, -{ itemId: 223306, className: "SHD03_306", name: "(Faded) Purine Pevordimas Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 29280, sellPrice: 5000, equipType1: "Shield", minLevel: 315, def: 3379, mDef: 3379, addMDef: 138, material: "Shield" }, -{ itemId: 223307, className: "SHD03_307", name: "Berthas Spike Kindl", type: "Equip", group: "Armor", weight: 88, maxStack: 1, price: 9312, sellPrice: 0, equipType1: "Shield", minLevel: 120, def: 1320, mDef: 1320, material: "Shield" }, -{ itemId: 223308, className: "SHD03_308", name: "Berthas Rodeleine Shield", type: "Equip", group: "Armor", weight: 112, maxStack: 1, price: 14551, sellPrice: 0, equipType1: "Shield", minLevel: 170, def: 1848, mDef: 1848, material: "Shield" }, -{ itemId: 223309, className: "SHD03_309", name: "Berthas Sketis Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 5149, sellPrice: 0, equipType1: "Shield", minLevel: 75, def: 844, mDef: 844, material: "Shield" }, -{ itemId: 223310, className: "SHD03_310", name: "Berthas Pajoritas Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 19603, sellPrice: 0, equipType1: "Shield", minLevel: 220, def: 2376, mDef: 2376, material: "Shield" }, -{ itemId: 223311, className: "SHD03_311", name: "Berthas Migantis Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Shield", minLevel: 270, def: 2904, mDef: 2904, material: "Shield" }, -{ itemId: 223312, className: "SHD03_312", name: "Berthas Pevordimas Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Shield", minLevel: 315, def: 3379, mDef: 3379, material: "Shield" }, -{ itemId: 223313, className: "SHD03_313", name: "Berthas Raffye Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 350, def: 3748, mDef: 3748, material: "Shield" }, -{ itemId: 223314, className: "SHD03_314", name: "Berthas Zvaigzde Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, def: 4065, mDef: 4065, material: "Shield" }, -{ itemId: 223315, className: "SHD03_315", name: "Berthas Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 4276, mDef: 4276, material: "Shield" }, -{ itemId: 223316, className: "SHD03_316", name: "Berthas Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Shield", minLevel: 430, def: 4593, mDef: 4593, material: "Shield" }, -{ itemId: 224101, className: "SHD04_101", name: "Sage Wall", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Shield", minLevel: 75, def: 960, mDef: 960, addMDef: 99, material: "Shield", holyRes: 46 }, -{ itemId: 224102, className: "SHD04_102", name: "Aias", type: "Equip", group: "Armor", weight: 140, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Shield", minLevel: 170, def: 2100, mDef: 2100, material: "Shield" }, -{ itemId: 224103, className: "SHD04_103", name: "Lolopanther Shield", type: "Equip", group: "Armor", weight: 140, maxStack: 1, price: 24000, sellPrice: 5856, equipType1: "Shield", minLevel: 270, def: 4224, mDef: 4224, addMDef: 86, material: "Shield", earthRes: 42 }, -{ itemId: 224104, className: "SHD04_104", name: "Solmiki Shield", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 29280, sellPrice: 7771, equipType1: "Shield", minLevel: 330, def: 5145, mDef: 5145, addMDef: 345, material: "Shield", holyRes: 56 }, -{ itemId: 224105, className: "SHD04_105", name: "Emengard Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29280, sellPrice: 8868, equipType1: "Shield", minLevel: 315, def: 3840, mDef: 3840, addDef: 22, addMDef: 440, material: "Shield" }, -{ itemId: 224106, className: "SHD04_106", name: "Primus Spike Kindl", type: "Equip", group: "Armor", weight: 88, maxStack: 1, price: 9312, sellPrice: 0, equipType1: "Shield", minLevel: 120, def: 1500, mDef: 1500, material: "Shield" }, -{ itemId: 224107, className: "SHD04_107", name: "Primus Rodeleine Shield", type: "Equip", group: "Armor", weight: 112, maxStack: 1, price: 14551, sellPrice: 0, equipType1: "Shield", minLevel: 170, def: 2100, mDef: 2100, material: "Shield" }, -{ itemId: 224108, className: "SHD04_108", name: "Primus Sketis Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 5149, sellPrice: 0, equipType1: "Shield", minLevel: 75, def: 960, mDef: 960, material: "Shield" }, -{ itemId: 224109, className: "SHD04_109", name: "Primus Pajoritas Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 19603, sellPrice: 0, equipType1: "Shield", minLevel: 220, def: 2700, mDef: 2700, material: "Shield" }, -{ itemId: 224110, className: "SHD04_110", name: "Primus Migantis Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Shield", minLevel: 270, def: 3300, mDef: 3300, material: "Shield" }, -{ itemId: 224111, className: "SHD04_111", name: "Primus Pevordimas Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Shield", minLevel: 315, def: 3840, mDef: 3840, material: "Shield" }, -{ itemId: 224112, className: "SHD04_112", name: "Primus Raffye Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 350, def: 4260, mDef: 4260, material: "Shield" }, -{ itemId: 224113, className: "SHD04_113", name: "Masinios Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 350, def: 4260, mDef: 4260, addMDef: 437, material: "Shield", strike: 234 }, -{ itemId: 224114, className: "SHD04_114", name: "Primus Zvaigzde Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, def: 4620, mDef: 4620, material: "Shield" }, -{ itemId: 224115, className: "SHD04_115", name: "Wastrel Zvaigzde Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, def: 4620, mDef: 4620, addMDef: 358, material: "Shield" }, -{ itemId: 224116, className: "SHD04_116", name: "Asio Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, def: 4620, mDef: 4620, addMDef: 357, material: "Shield" }, -{ itemId: 224117, className: "SHD04_117", name: "Primus Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 4860, mDef: 4860, material: "Shield" }, -{ itemId: 224118, className: "SHD04_118", name: "Skiaclipse Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 4860, mDef: 4860, addMDef: 675, material: "Shield" }, -{ itemId: 224119, className: "SHD04_119", name: "Moringponia Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 4860, mDef: 4860, material: "Shield" }, -{ itemId: 224120, className: "SHD04_120", name: "Misrus Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 4860, mDef: 4860, material: "Shield" }, -{ itemId: 224121, className: "SHD04_121", name: "Primus Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Shield", minLevel: 430, def: 5220, mDef: 5220, material: "Shield" }, -{ itemId: 225101, className: "SHD05_101", name: "Velcoffer Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 360, def: 5606, mDef: 5606, material: "Shield" }, -{ itemId: 225102, className: "SHD05_102", name: "Velcoffer Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 360, def: 5606, mDef: 5606, material: "Shield" }, -{ itemId: 225103, className: "SHD05_103", name: "Savinose Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 6220, mDef: 6220, material: "Shield" }, -{ itemId: 225104, className: "SHD05_104", name: "Skiaclipse Varna Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 6220, mDef: 6220, material: "Shield" }, -{ itemId: 501101, className: "HAND01_101", name: "Light Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Gloves", minLevel: 1, def: 12, mDef: 12, material: "Leather" }, -{ itemId: 501102, className: "HAND01_102", name: "Quilted Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Gloves", minLevel: 1, def: 12, mDef: 12, material: "Leather" }, -{ itemId: 501103, className: "HAND01_103", name: "Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 47, equipType1: "Gloves", minLevel: 1, def: 12, mDef: 12, material: "Leather" }, -{ itemId: 501104, className: "HAND01_104", name: "Hard Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 43, mDef: 43, material: "Leather" }, -{ itemId: 501105, className: "HAND01_105", name: "Chain Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 57, mDef: 28, material: "Iron" }, -{ itemId: 501106, className: "HAND01_106", name: "Mark Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 327, equipType1: "Gloves", minLevel: 40, def: 97, mDef: 97, material: "Leather" }, -{ itemId: 501107, className: "HAND01_107", name: "Forest Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 97, mDef: 97, material: "Leather" }, -{ itemId: 501108, className: "HAND01_108", name: "Grima Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 64, mDef: 129, material: "Cloth" }, -{ itemId: 501109, className: "HAND01_109", name: "Veris Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 97, mDef: 97, material: "Leather" }, -{ itemId: 501110, className: "HAND01_110", name: "Scale Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 129, mDef: 64, material: "Iron" }, -{ itemId: 501111, className: "HAND01_111", name: "Forest Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 64, mDef: 129, material: "Cloth" }, -{ itemId: 501112, className: "HAND01_112", name: "Klaida Gauntlets", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 129, mDef: 64, material: "Iron" }, -{ itemId: 501113, className: "HAND01_113", name: "Hard Veris Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, def: 172, mDef: 172, material: "Leather" }, -{ itemId: 501114, className: "HAND01_114", name: "Superior Scale Gloves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, def: 230, mDef: 115, material: "Iron" }, -{ itemId: 501115, className: "HAND01_115", name: "Regal Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, def: 115, mDef: 230, material: "Cloth" }, -{ itemId: 501117, className: "HAND01_117", name: "Miner's Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Gloves", minLevel: 1, def: 12, mDef: 12, material: "Leather" }, -{ itemId: 501118, className: "HAND01_118", name: "Old Hard Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 43, mDef: 43, material: "Leather" }, -{ itemId: 501119, className: "HAND01_119", name: "Old Chain Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 57, mDef: 28, material: "Iron" }, -{ itemId: 501120, className: "HAND01_120", name: "Old Steel Chain Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 259, equipType1: "Gloves", minLevel: 40, def: 129, mDef: 64, material: "Iron" }, -{ itemId: 501121, className: "HAND01_121", name: "Brigandine Gloves", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, def: 172, mDef: 172, material: "Leather" }, -{ itemId: 501122, className: "HAND01_122", name: "Plate Gauntlets", type: "Equip", group: "Armor", weight: 66, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, def: 230, mDef: 115, material: "Iron" }, -{ itemId: 501126, className: "HAND01_126", name: "Acolyte Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 327, equipType1: "Gloves", minLevel: 40, def: 64, mDef: 129, material: "Cloth" }, -{ itemId: 501127, className: "HAND01_127", name: "Steel Chain Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 327, equipType1: "Gloves", minLevel: 40, def: 129, mDef: 64, material: "Iron" }, +{ itemId: 221113, className: "SHD01_113", name: "Scallop Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Shield", minLevel: 75, equipExpGroup: "Equip", def: 691, mDef: 691, material: "Shield" }, +{ itemId: 221114, className: "SHD01_114", name: "Pelta Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 9312, sellPrice: 1862, equipType1: "Shield", minLevel: 120, equipExpGroup: "Equip", def: 1080, mDef: 1080, material: "Shield" }, +{ itemId: 221115, className: "SHD01_115", name: "Fedimian Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Shield", minLevel: 120, equipExpGroup: "Equip", def: 1080, mDef: 1080, material: "Shield" }, +{ itemId: 221116, className: "SHD01_116", name: "Kalkan", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 9312, sellPrice: 2601, equipType1: "Shield", minLevel: 120, equipExpGroup: "Equip", def: 1080, mDef: 1080, material: "Shield" }, +{ itemId: 221117, className: "SHD01_117", name: "Cavalry Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 14551, sellPrice: 2930, equipType1: "Shield", minLevel: 170, equipExpGroup: "Equip", def: 1512, mDef: 1512, material: "Shield" }, +{ itemId: 221118, className: "SHD01_118", name: "Knight Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 14551, sellPrice: 3900, equipType1: "Shield", minLevel: 170, equipExpGroup: "Equip", def: 1512, mDef: 1512, material: "Shield" }, +{ itemId: 221119, className: "SHD01_119", name: "Tower Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Shield", minLevel: 170, equipExpGroup: "Equip", def: 1512, mDef: 1512, material: "Shield" }, +{ itemId: 221120, className: "SHD01_120", name: "Guardsman Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 19603, sellPrice: 3955, equipType1: "Shield", minLevel: 220, equipExpGroup: "Equip", def: 1944, mDef: 1944, material: "Shield" }, +{ itemId: 221121, className: "SHD01_121", name: "Claria Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 19603, sellPrice: 4780, equipType1: "Shield", minLevel: 220, equipExpGroup: "Equip", def: 1944, mDef: 1944, material: "Shield" }, +{ itemId: 221122, className: "SHD01_122", name: "(Faded) Replica Migantis Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Shield", minLevel: 270, equipExpGroup: "Equip", def: 2376, mDef: 2376, material: "Shield" }, +{ itemId: 221123, className: "SHD01_123", name: "(Faded) Replica Pevordimas Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "Shield", minLevel: 315, equipExpGroup: "Equip", def: 2764, mDef: 2764, material: "Shield" }, +{ itemId: 221124, className: "SHD01_124", name: "Practice Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 0, equipType1: "Shield", minLevel: 15, equipExpGroup: "Equip", def: 172, mDef: 172, material: "Shield" }, +{ itemId: 221125, className: "SHD01_125", name: "Practice Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 5149, sellPrice: 0, equipType1: "Shield", minLevel: 75, equipExpGroup: "Equip", def: 691, mDef: 691, material: "Shield" }, +{ itemId: 221481, className: "SHD01_481", name: "Royal Shield", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 907, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Shield", fireRes: 30, iceRes: 30, poisonRes: 30, holyRes: 30, darkRes: 30 }, +{ itemId: 222101, className: "SHD02_101", name: "Black Wooden Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 240, sellPrice: 345, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 57, mDef: 57, material: "Shield", poisonRes: 9 }, +{ itemId: 222102, className: "SHD02_102", name: "Oak Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Shield" }, +{ itemId: 222103, className: "SHD02_103", name: "Savage Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2184, sellPrice: 436, equipType1: "Shield", minLevel: 40, equipExpGroup: "Equip", def: 432, mDef: 432, material: "Shield", fireRes: 10 }, +{ itemId: 222104, className: "SHD02_104", name: "Zalia Kite Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Shield", minLevel: 40, equipExpGroup: "Equip", def: 432, mDef: 432, addMDef: 40, material: "Shield" }, +{ itemId: 222105, className: "SHD02_105", name: "Superior Kite Shield", type: "Equip", group: "Armor", weight: 140, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Shield", minLevel: 40, equipExpGroup: "Equip", def: 432, mDef: 432, material: "Shield" }, +{ itemId: 222106, className: "SHD02_106", name: "Bead Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Shield", minLevel: 40, equipExpGroup: "Equip", def: 432, mDef: 432, material: "Shield", lightningRes: 17 }, +{ itemId: 222107, className: "SHD02_107", name: "Circle Guard", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Shield", minLevel: 75, equipExpGroup: "Equip", def: 768, mDef: 768, material: "Shield", iceRes: 17 }, +{ itemId: 222108, className: "SHD02_108", name: "Ludas Shield", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Shield", minLevel: 75, equipExpGroup: "Equip", def: 768, mDef: 768, material: "Shield" }, +{ itemId: 222109, className: "SHD02_109", name: "Minotaur Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Shield" }, +{ itemId: 222110, className: "SHD02_110", name: "Dio Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 103, equipType1: "Shield", minLevel: 15, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Shield" }, +{ itemId: 222111, className: "SHD02_111", name: "Thresh Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Shield" }, +{ itemId: 222112, className: "SHD02_112", name: "Sestas Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Shield", minLevel: 15, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Shield" }, +{ itemId: 222113, className: "SHD02_113", name: "Dratt Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 907, equipType1: "Shield", minLevel: 15, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Shield" }, +{ itemId: 222114, className: "SHD02_114", name: "Aston Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 907, equipType1: "Shield", minLevel: 15, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Shield" }, +{ itemId: 222115, className: "SHD02_115", name: "Devi Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Shield", minLevel: 75, equipExpGroup: "Equip", def: 768, mDef: 768, material: "Shield" }, +{ itemId: 222116, className: "SHD02_116", name: "Prima Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 1728, sellPrice: 1638, equipType1: "Shield", minLevel: 15, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Shield" }, +{ itemId: 222117, className: "SHD02_117", name: "Ferret Marauder Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 5149, sellPrice: 1638, equipType1: "Shield", minLevel: 75, equipExpGroup: "Equip", def: 768, mDef: 768, material: "Shield" }, +{ itemId: 222118, className: "SHD02_118", name: "Alemeth Tower Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 19603, sellPrice: 3920, equipType1: "Shield", minLevel: 220, equipExpGroup: "Equip", def: 2160, mDef: 2160, material: "Shield" }, +{ itemId: 222119, className: "SHD02_119", name: "Didel Tower Shield", type: "Equip", group: "Armor", weight: 115, maxStack: 1, price: 19603, sellPrice: 4780, equipType1: "Shield", minLevel: 220, equipExpGroup: "Equip", def: 2160, mDef: 2160, addMDef: 96, material: "Shield" }, +{ itemId: 222120, className: "SHD02_120", name: "(Faded) Migantis Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 24000, sellPrice: 5000, equipType1: "Shield", minLevel: 270, equipExpGroup: "Equip", def: 2640, mDef: 2640, material: "Shield" }, +{ itemId: 222121, className: "SHD02_121", name: "(Faded) Pevordimas Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 29280, sellPrice: 5000, equipType1: "Shield", minLevel: 315, equipExpGroup: "Equip", def: 3072, mDef: 3072, material: "Shield" }, +{ itemId: 222122, className: "SHD02_122", name: "Spike Kindl", type: "Equip", group: "Armor", weight: 88, maxStack: 1, price: 9312, sellPrice: 0, equipType1: "Shield", minLevel: 120, equipExpGroup: "Equip", def: 1200, mDef: 1200, material: "Shield" }, +{ itemId: 222123, className: "SHD02_123", name: "Rodeleine Shield", type: "Equip", group: "Armor", weight: 112, maxStack: 1, price: 14551, sellPrice: 0, equipType1: "Shield", minLevel: 170, equipExpGroup: "Equip", def: 1680, mDef: 1680, material: "Shield" }, +{ itemId: 222124, className: "SHD02_124", name: "Sketis Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 5149, sellPrice: 0, equipType1: "Shield", minLevel: 75, equipExpGroup: "Equip", def: 768, mDef: 768, material: "Shield" }, +{ itemId: 222125, className: "SHD02_125", name: "Pajoritas Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 19603, sellPrice: 0, equipType1: "Shield", minLevel: 220, equipExpGroup: "Equip", def: 2160, mDef: 2160, material: "Shield" }, +{ itemId: 222126, className: "SHD02_126", name: "Migantis Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Shield", minLevel: 270, equipExpGroup: "Equip", def: 2640, mDef: 2640, material: "Shield" }, +{ itemId: 222127, className: "SHD02_127", name: "Pevordimas Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Shield", minLevel: 315, equipExpGroup: "Equip", def: 3072, mDef: 3072, material: "Shield" }, +{ itemId: 222128, className: "SHD02_128", name: "Raffye Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 350, equipExpGroup: "Equip", def: 3408, mDef: 3408, material: "Shield" }, +{ itemId: 222129, className: "SHD02_129", name: "Zvaigzde Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, equipExpGroup: "Equip", def: 3696, mDef: 3696, material: "Shield" }, +{ itemId: 222130, className: "SHD02_130", name: "Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 3888, mDef: 3888, material: "Shield" }, +{ itemId: 222481, className: "SHD02_481", name: "Emperor Shield", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 2184, sellPrice: 1621, equipType1: "Shield", minLevel: 40, equipExpGroup: "Equip", def: 540, mDef: 540, material: "Shield", fireRes: 60, iceRes: 60, poisonRes: 60, holyRes: 60, darkRes: 60 }, +{ itemId: 222482, className: "SHD02_482", name: "Test Shield", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 51, mDef: 51, material: "Shield" }, +{ itemId: 222483, className: "SHD02_483", name: "Jigglebone Mercenary Shield", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 51, mDef: 51, material: "Shield" }, +{ itemId: 222484, className: "SHD02_484", name: "Jigglebone Sippar", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 51, mDef: 51, material: "Shield" }, +{ itemId: 222485, className: "SHD02_485", name: "Jigglebone Sippar 2", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 51, mDef: 51, material: "Shield" }, +{ itemId: 223101, className: "SHD03_101", name: "Wall Guard", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 14551, sellPrice: 3900, equipType1: "Shield", minLevel: 170, equipExpGroup: "Equip", def: 1848, mDef: 1848, material: "Shield" }, +{ itemId: 223102, className: "SHD03_102", name: "Fortress", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 5149, sellPrice: 1138, equipType1: "Shield", minLevel: 75, equipExpGroup: "Equip", def: 844, mDef: 844, material: "Shield", fireRes: 20, earthRes: 35 }, +{ itemId: 223103, className: "SHD03_103", name: "Beetleback", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Shield", minLevel: 75, equipExpGroup: "Equip", def: 844, mDef: 844, material: "Shield", poisonRes: 62 }, +{ itemId: 223104, className: "SHD03_104", name: "Meteor", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 240, sellPrice: 147, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 63, mDef: 63, material: "Shield" }, +{ itemId: 223105, className: "SHD03_105", name: "Pavaisa Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 9312, sellPrice: 2601, equipType1: "Shield", minLevel: 120, equipExpGroup: "Equip", def: 1320, mDef: 1320, material: "Shield" }, +{ itemId: 223106, className: "SHD03_106", name: "Ledas Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 9312, sellPrice: 2910, equipType1: "Shield", minLevel: 120, equipExpGroup: "Equip", def: 1320, mDef: 1320, material: "Shield", fireRes: 17, lightningRes: -27 }, +{ itemId: 223107, className: "SHD03_107", name: "Otrava Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 14551, sellPrice: 2991, equipType1: "Shield", minLevel: 170, equipExpGroup: "Equip", def: 1848, mDef: 1848, material: "Shield", poisonRes: 19 }, +{ itemId: 223110, className: "SHD03_110", name: "Lionhead Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 29280, sellPrice: 7753, equipType1: "Shield", minLevel: 315, equipExpGroup: "Equip", def: 3379, mDef: 3379, addDef: 15, addMDef: 325, material: "Shield" }, +{ itemId: 223301, className: "SHD03_301", name: "(Faded) Spike Kindl", type: "Equip", group: "Armor", weight: 88, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Shield", minLevel: 120, equipExpGroup: "Equip", def: 1320, mDef: 1320, addMDef: 45, material: "Shield" }, +{ itemId: 223302, className: "SHD03_302", name: "(Faded) Rodeleine Shield", type: "Equip", group: "Armor", weight: 112, maxStack: 1, price: 14551, sellPrice: 2991, equipType1: "Shield", minLevel: 170, equipExpGroup: "Equip", def: 1848, mDef: 1848, addDef: 81, material: "Shield" }, +{ itemId: 223303, className: "SHD03_303", name: "(Faded) Sketis Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 5149, sellPrice: 907, equipType1: "Shield", minLevel: 75, equipExpGroup: "Equip", def: 844, mDef: 844, addDef: 30, material: "Shield" }, +{ itemId: 223304, className: "SHD03_304", name: "(Faded) Pajoritas Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 19603, sellPrice: 3920, equipType1: "Shield", minLevel: 220, equipExpGroup: "Equip", def: 2376, mDef: 2376, addDef: 90, material: "Shield" }, +{ itemId: 223305, className: "SHD03_305", name: "(Faded) Purine Migantis Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 24000, sellPrice: 5000, equipType1: "Shield", minLevel: 270, equipExpGroup: "Equip", def: 2904, mDef: 2904, addMDef: 115, material: "Shield" }, +{ itemId: 223306, className: "SHD03_306", name: "(Faded) Purine Pevordimas Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 29280, sellPrice: 5000, equipType1: "Shield", minLevel: 315, equipExpGroup: "Equip", def: 3379, mDef: 3379, addMDef: 138, material: "Shield" }, +{ itemId: 223307, className: "SHD03_307", name: "Berthas Spike Kindl", type: "Equip", group: "Armor", weight: 88, maxStack: 1, price: 9312, sellPrice: 0, equipType1: "Shield", minLevel: 120, equipExpGroup: "Equip", def: 1320, mDef: 1320, material: "Shield" }, +{ itemId: 223308, className: "SHD03_308", name: "Berthas Rodeleine Shield", type: "Equip", group: "Armor", weight: 112, maxStack: 1, price: 14551, sellPrice: 0, equipType1: "Shield", minLevel: 170, equipExpGroup: "Equip", def: 1848, mDef: 1848, material: "Shield" }, +{ itemId: 223309, className: "SHD03_309", name: "Berthas Sketis Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 5149, sellPrice: 0, equipType1: "Shield", minLevel: 75, equipExpGroup: "Equip", def: 844, mDef: 844, material: "Shield" }, +{ itemId: 223310, className: "SHD03_310", name: "Berthas Pajoritas Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 19603, sellPrice: 0, equipType1: "Shield", minLevel: 220, equipExpGroup: "Equip", def: 2376, mDef: 2376, material: "Shield" }, +{ itemId: 223311, className: "SHD03_311", name: "Berthas Migantis Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Shield", minLevel: 270, equipExpGroup: "Equip", def: 2904, mDef: 2904, material: "Shield" }, +{ itemId: 223312, className: "SHD03_312", name: "Berthas Pevordimas Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Shield", minLevel: 315, equipExpGroup: "Equip", def: 3379, mDef: 3379, material: "Shield" }, +{ itemId: 223313, className: "SHD03_313", name: "Berthas Raffye Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 350, equipExpGroup: "Equip", def: 3748, mDef: 3748, material: "Shield" }, +{ itemId: 223314, className: "SHD03_314", name: "Berthas Zvaigzde Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, equipExpGroup: "Equip", def: 4065, mDef: 4065, material: "Shield" }, +{ itemId: 223315, className: "SHD03_315", name: "Berthas Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 4276, mDef: 4276, material: "Shield" }, +{ itemId: 223316, className: "SHD03_316", name: "Berthas Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Shield", minLevel: 430, equipExpGroup: "Equip", def: 4593, mDef: 4593, material: "Shield" }, +{ itemId: 224101, className: "SHD04_101", name: "Sage Wall", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Shield", minLevel: 75, equipExpGroup: "Equip", def: 960, mDef: 960, addMDef: 99, material: "Shield", holyRes: 46 }, +{ itemId: 224102, className: "SHD04_102", name: "Aias", type: "Equip", group: "Armor", weight: 140, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Shield", minLevel: 170, equipExpGroup: "Equip", def: 2100, mDef: 2100, material: "Shield" }, +{ itemId: 224103, className: "SHD04_103", name: "Lolopanther Shield", type: "Equip", group: "Armor", weight: 140, maxStack: 1, price: 24000, sellPrice: 5856, equipType1: "Shield", minLevel: 270, equipExpGroup: "Equip", def: 4224, mDef: 4224, addMDef: 86, material: "Shield", earthRes: 42 }, +{ itemId: 224104, className: "SHD04_104", name: "Solmiki Shield", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 29280, sellPrice: 7771, equipType1: "Shield", minLevel: 330, equipExpGroup: "Equip", def: 5145, mDef: 5145, addMDef: 345, material: "Shield", holyRes: 56 }, +{ itemId: 224105, className: "SHD04_105", name: "Emengard Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29280, sellPrice: 8868, equipType1: "Shield", minLevel: 315, equipExpGroup: "Equip", def: 3840, mDef: 3840, addDef: 22, addMDef: 440, material: "Shield" }, +{ itemId: 224106, className: "SHD04_106", name: "Primus Spike Kindl", type: "Equip", group: "Armor", weight: 88, maxStack: 1, price: 9312, sellPrice: 0, equipType1: "Shield", minLevel: 120, equipExpGroup: "Equip", def: 1500, mDef: 1500, material: "Shield" }, +{ itemId: 224107, className: "SHD04_107", name: "Primus Rodeleine Shield", type: "Equip", group: "Armor", weight: 112, maxStack: 1, price: 14551, sellPrice: 0, equipType1: "Shield", minLevel: 170, equipExpGroup: "Equip", def: 2100, mDef: 2100, material: "Shield" }, +{ itemId: 224108, className: "SHD04_108", name: "Primus Sketis Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 5149, sellPrice: 0, equipType1: "Shield", minLevel: 75, equipExpGroup: "Equip", def: 960, mDef: 960, material: "Shield" }, +{ itemId: 224109, className: "SHD04_109", name: "Primus Pajoritas Shield", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 19603, sellPrice: 0, equipType1: "Shield", minLevel: 220, equipExpGroup: "Equip", def: 2700, mDef: 2700, material: "Shield" }, +{ itemId: 224110, className: "SHD04_110", name: "Primus Migantis Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Shield", minLevel: 270, equipExpGroup: "Equip", def: 3300, mDef: 3300, material: "Shield" }, +{ itemId: 224111, className: "SHD04_111", name: "Primus Pevordimas Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Shield", minLevel: 315, equipExpGroup: "Equip", def: 3840, mDef: 3840, material: "Shield" }, +{ itemId: 224112, className: "SHD04_112", name: "Primus Raffye Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 350, equipExpGroup: "Equip", def: 4260, mDef: 4260, material: "Shield" }, +{ itemId: 224113, className: "SHD04_113", name: "Masinios Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 350, equipExpGroup: "Equip", def: 4260, mDef: 4260, addMDef: 437, material: "Shield", strike: 234 }, +{ itemId: 224114, className: "SHD04_114", name: "Primus Zvaigzde Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, equipExpGroup: "Equip", def: 4620, mDef: 4620, material: "Shield" }, +{ itemId: 224115, className: "SHD04_115", name: "Wastrel Zvaigzde Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, equipExpGroup: "Equip", def: 4620, mDef: 4620, addMDef: 358, material: "Shield" }, +{ itemId: 224116, className: "SHD04_116", name: "Asio Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, equipExpGroup: "Equip", def: 4620, mDef: 4620, addMDef: 357, material: "Shield" }, +{ itemId: 224117, className: "SHD04_117", name: "Primus Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 4860, mDef: 4860, material: "Shield" }, +{ itemId: 224118, className: "SHD04_118", name: "Skiaclipse Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 4860, mDef: 4860, addMDef: 675, material: "Shield" }, +{ itemId: 224119, className: "SHD04_119", name: "Moringponia Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 4860, mDef: 4860, material: "Shield" }, +{ itemId: 224120, className: "SHD04_120", name: "Misrus Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 4860, mDef: 4860, material: "Shield" }, +{ itemId: 224121, className: "SHD04_121", name: "Primus Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Shield", minLevel: 430, equipExpGroup: "Equip", def: 5220, mDef: 5220, material: "Shield" }, +{ itemId: 225101, className: "SHD05_101", name: "Velcoffer Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 360, equipExpGroup: "Equip", def: 5606, mDef: 5606, material: "Shield" }, +{ itemId: 225102, className: "SHD05_102", name: "Velcoffer Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 360, equipExpGroup: "Equip", def: 5606, mDef: 5606, material: "Shield" }, +{ itemId: 225103, className: "SHD05_103", name: "Savinose Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 6220, mDef: 6220, material: "Shield" }, +{ itemId: 225104, className: "SHD05_104", name: "Skiaclipse Varna Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 6220, mDef: 6220, material: "Shield" }, +{ itemId: 501101, className: "HAND01_101", name: "Light Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Gloves", minLevel: 1, equipExpGroup: "Equip", def: 12, mDef: 12, material: "Leather" }, +{ itemId: 501102, className: "HAND01_102", name: "Quilted Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Gloves", minLevel: 1, equipExpGroup: "Equip", def: 12, mDef: 12, material: "Leather" }, +{ itemId: 501103, className: "HAND01_103", name: "Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 47, equipType1: "Gloves", minLevel: 1, equipExpGroup: "Equip", def: 12, mDef: 12, material: "Leather" }, +{ itemId: 501104, className: "HAND01_104", name: "Hard Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 43, mDef: 43, material: "Leather" }, +{ itemId: 501105, className: "HAND01_105", name: "Chain Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 57, mDef: 28, material: "Iron" }, +{ itemId: 501106, className: "HAND01_106", name: "Mark Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 327, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 97, mDef: 97, material: "Leather" }, +{ itemId: 501107, className: "HAND01_107", name: "Forest Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 97, mDef: 97, material: "Leather" }, +{ itemId: 501108, className: "HAND01_108", name: "Grima Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 64, mDef: 129, material: "Cloth" }, +{ itemId: 501109, className: "HAND01_109", name: "Veris Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 97, mDef: 97, material: "Leather" }, +{ itemId: 501110, className: "HAND01_110", name: "Scale Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 129, mDef: 64, material: "Iron" }, +{ itemId: 501111, className: "HAND01_111", name: "Forest Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 64, mDef: 129, material: "Cloth" }, +{ itemId: 501112, className: "HAND01_112", name: "Klaida Gauntlets", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 129, mDef: 64, material: "Iron" }, +{ itemId: 501113, className: "HAND01_113", name: "Hard Veris Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 172, mDef: 172, material: "Leather" }, +{ itemId: 501114, className: "HAND01_114", name: "Superior Scale Gloves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 230, mDef: 115, material: "Iron" }, +{ itemId: 501115, className: "HAND01_115", name: "Regal Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 115, mDef: 230, material: "Cloth" }, +{ itemId: 501117, className: "HAND01_117", name: "Miner's Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Gloves", minLevel: 1, equipExpGroup: "Equip", def: 12, mDef: 12, material: "Leather" }, +{ itemId: 501118, className: "HAND01_118", name: "Old Hard Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 43, mDef: 43, material: "Leather" }, +{ itemId: 501119, className: "HAND01_119", name: "Old Chain Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 57, mDef: 28, material: "Iron" }, +{ itemId: 501120, className: "HAND01_120", name: "Old Steel Chain Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 259, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 129, mDef: 64, material: "Iron" }, +{ itemId: 501121, className: "HAND01_121", name: "Brigandine Gloves", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 172, mDef: 172, material: "Leather" }, +{ itemId: 501122, className: "HAND01_122", name: "Plate Gauntlets", type: "Equip", group: "Armor", weight: 66, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 230, mDef: 115, material: "Iron" }, +{ itemId: 501126, className: "HAND01_126", name: "Acolyte Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 327, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 64, mDef: 129, material: "Cloth" }, +{ itemId: 501127, className: "HAND01_127", name: "Steel Chain Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 327, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 129, mDef: 64, material: "Iron" }, { itemId: 501129, className: "HAND01_129", name: "Dunkel Quilted Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Gloves", minLevel: 1, def: 12, mDef: 12, material: "Leather" }, { itemId: 501130, className: "HAND01_130", name: "Dunkel Cotton Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 28, mDef: 57, material: "Cloth" }, { itemId: 501131, className: "HAND01_131", name: "Dunkel Hard Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 43, mDef: 43, material: "Leather" }, { itemId: 501132, className: "HAND01_132", name: "Dunkel Ring Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 57, mDef: 28, material: "Iron" }, -{ itemId: 501133, className: "HAND01_133", name: "Cotton Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 28, mDef: 57, material: "Cloth" }, -{ itemId: 501134, className: "HAND01_134", name: "Ring Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 57, mDef: 28, material: "Iron" }, -{ itemId: 501135, className: "HAND01_135", name: "Superior Regal Gloves", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, def: 115, mDef: 230, material: "Cloth" }, -{ itemId: 501136, className: "HAND01_136", name: "Superior Brigandine Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, def: 172, mDef: 172, material: "Leather" }, -{ itemId: 501137, className: "HAND01_137", name: "Full Plate Gauntlets", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, def: 230, mDef: 115, material: "Iron" }, -{ itemId: 501138, className: "HAND01_138", name: "Fedimian Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1396, equipType1: "Gloves", minLevel: 120, def: 180, mDef: 360, material: "Cloth" }, -{ itemId: 501139, className: "HAND01_139", name: "Fedimian Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1396, equipType1: "Gloves", minLevel: 120, def: 270, mDef: 270, material: "Leather" }, -{ itemId: 501140, className: "HAND01_140", name: "Fedimian Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 6984, sellPrice: 1396, equipType1: "Gloves", minLevel: 120, def: 360, mDef: 180, material: "Iron" }, -{ itemId: 501141, className: "HAND01_141", name: "Magician Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Gloves", minLevel: 120, def: 180, mDef: 360, material: "Cloth" }, -{ itemId: 501142, className: "HAND01_142", name: "Hunting Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Gloves", minLevel: 120, def: 270, mDef: 270, material: "Leather" }, -{ itemId: 501143, className: "HAND01_143", name: "Guard Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1228, equipType1: "Gloves", minLevel: 120, def: 360, mDef: 180, material: "Iron" }, -{ itemId: 501144, className: "HAND01_144", name: "Mage Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Gloves", minLevel: 120, def: 180, mDef: 360, material: "Cloth" }, -{ itemId: 501145, className: "HAND01_145", name: "Skirmisher Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Gloves", minLevel: 120, def: 270, mDef: 270, material: "Leather" }, -{ itemId: 501146, className: "HAND01_146", name: "Infantry Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Gloves", minLevel: 120, def: 360, mDef: 180, material: "Iron" }, -{ itemId: 501147, className: "HAND01_147", name: "Archmage Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 10913, sellPrice: 2182, equipType1: "Gloves", minLevel: 170, def: 252, mDef: 504, material: "Cloth" }, -{ itemId: 501148, className: "HAND01_148", name: "Superior Skirmisher Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 10913, sellPrice: 2182, equipType1: "Gloves", minLevel: 170, def: 378, mDef: 378, material: "Leather" }, -{ itemId: 501149, className: "HAND01_149", name: "Superior Infantry Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 10913, sellPrice: 2182, equipType1: "Gloves", minLevel: 170, def: 504, mDef: 252, material: "Iron" }, -{ itemId: 501150, className: "HAND01_150", name: "Librarian Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 2940, equipType1: "Gloves", minLevel: 170, def: 252, mDef: 504, material: "Cloth" }, -{ itemId: 501151, className: "HAND01_151", name: "Veteran Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 2940, equipType1: "Gloves", minLevel: 170, def: 378, mDef: 378, material: "Leather" }, -{ itemId: 501152, className: "HAND01_152", name: "Knight Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 10913, sellPrice: 2940, equipType1: "Gloves", minLevel: 170, def: 504, mDef: 252, material: "Iron" }, -{ itemId: 501153, className: "HAND01_153", name: "Superior Grima Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, def: 115, mDef: 230, material: "Cloth" }, -{ itemId: 501154, className: "HAND01_154", name: "Royal Mage Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, def: 324, mDef: 648, material: "Cloth" }, -{ itemId: 501155, className: "HAND01_155", name: "Bandit Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, def: 486, mDef: 486, material: "Leather" }, -{ itemId: 501156, className: "HAND01_156", name: "Royal Guard Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, def: 648, mDef: 324, material: "Iron" }, -{ itemId: 501157, className: "HAND01_157", name: "Superior Royal Mage Gauntlets", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, def: 324, mDef: 648, material: "Cloth" }, -{ itemId: 501158, className: "HAND01_158", name: "Superior Bandit Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, def: 486, mDef: 486, material: "Leather" }, -{ itemId: 501159, className: "HAND01_159", name: "Superior Royal Guard Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, def: 648, mDef: 324, material: "Iron" }, -{ itemId: 501201, className: "HAND01_201", name: "Smash Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, def: 648, mDef: 324, material: "Iron" }, -{ itemId: 501202, className: "HAND01_202", name: "Slash Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, def: 648, mDef: 324, material: "Iron" }, -{ itemId: 501203, className: "HAND01_203", name: "Blint Greaves", type: "Equip", group: "Armor", weight: 18, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, def: 396, mDef: 792, material: "Cloth" }, -{ itemId: 501204, className: "HAND01_204", name: "Blint Leather Greaves", type: "Equip", group: "Armor", weight: 27, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, def: 594, mDef: 594, material: "Leather" }, -{ itemId: 501205, className: "HAND01_205", name: "Blint Plate Gauntlets", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, def: 792, mDef: 396, material: "Iron" }, -{ itemId: 501206, className: "HAND01_206", name: "(Faded) Replica Kalinis Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, def: 396, mDef: 792, material: "Cloth" }, -{ itemId: 501207, className: "HAND01_207", name: "(Faded) Replica Albinosas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, def: 594, mDef: 594, material: "Leather" }, -{ itemId: 501208, className: "HAND01_208", name: "(Faded) Replica Tajtanas Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, def: 792, mDef: 396, material: "Iron" }, -{ itemId: 501209, className: "HAND01_209", name: "(Faded) Replica Oksinis Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, def: 460, mDef: 921, material: "Cloth" }, -{ itemId: 501210, className: "HAND01_210", name: "(Faded) Replica Kaulas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, def: 691, mDef: 691, material: "Leather" }, -{ itemId: 501211, className: "HAND01_211", name: "(Faded) Replica Krisius Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, def: 921, mDef: 460, material: "Iron" }, -{ itemId: 501999, className: "HAND01_999", name: "Finger", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Gloves", minLevel: 1, def: 12, mDef: 12, material: "Leather" }, -{ itemId: 502101, className: "HAND02_101", name: "Carpenter Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 502104, className: "HAND02_104", name: "Zalia Leather Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 453, equipType1: "Gloves", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 502105, className: "HAND02_105", name: "Prova Gloves", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, addMAtk: 5, def: 72, mDef: 144, material: "Cloth" }, -{ itemId: 502106, className: "HAND02_106", name: "Studded Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, pAtk: 5, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 502107, className: "HAND02_107", name: "Insect Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 144, mDef: 72, material: "Iron" }, -{ itemId: 502109, className: "HAND02_109", name: "Red Veris Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 502111, className: "HAND02_111", name: "Magnus Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 786, equipType1: "Gloves", minLevel: 75, addMAtk: 8, def: 128, mDef: 256, material: "Cloth" }, -{ itemId: 502113, className: "HAND02_113", name: "Drake Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, def: 192, mDef: 192, material: "Leather" }, -{ itemId: 502114, className: "HAND02_114", name: "Silver Plate Gauntlets", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 3862, sellPrice: 772, equipType1: "Gloves", minLevel: 75, def: 256, mDef: 128, material: "Iron", darkRes: 10 }, -{ itemId: 502115, className: "HAND02_115", name: "Wild Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 110, equipType1: "Gloves", minLevel: 1, def: 14, mDef: 14, material: "Leather" }, -{ itemId: 502116, className: "FOOT02_115", name: "Superior Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 180, sellPrice: 259, equipType1: "Boots", minLevel: 1, def: 14, mDef: 14, material: "Leather" }, -{ itemId: 502117, className: "HAND02_117", name: "Capria Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 502121, className: "HAND02_121", name: "Archon Hands", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 502122, className: "HAND02_122", name: "Nepenthes Gloves", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 32, mDef: 64, material: "Cloth" }, -{ itemId: 502123, className: "HAND02_123", name: "Cafrisun Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 502124, className: "HAND02_124", name: "Dio Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 180, sellPrice: 110, equipType1: "Gloves", minLevel: 1, addMAtk: 1, def: 9, mDef: 19, material: "Cloth" }, -{ itemId: 502125, className: "HAND02_125", name: "Dio Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 110, equipType1: "Gloves", minLevel: 1, def: 14, mDef: 14, material: "Leather" }, -{ itemId: 502126, className: "HAND02_126", name: "Dio Chain Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 180, sellPrice: 55, equipType1: "Gloves", minLevel: 1, def: 19, mDef: 9, material: "Iron" }, -{ itemId: 502127, className: "HAND02_127", name: "Thresh Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, addMAtk: 2, def: 32, mDef: 64, material: "Cloth" }, -{ itemId: 502128, className: "HAND02_128", name: "Thresh Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 502129, className: "HAND02_129", name: "Thresh Chain Gloves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 64, mDef: 32, material: "Iron" }, -{ itemId: 502130, className: "HAND02_130", name: "Sestas Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, addMAtk: 3, def: 32, mDef: 64, material: "Cloth" }, -{ itemId: 502131, className: "HAND02_131", name: "Sestas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 502132, className: "HAND02_132", name: "Sestas Chain Gloves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 64, mDef: 32, material: "Iron" }, -{ itemId: 502133, className: "HAND02_133", name: "Dratt Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, addMAtk: 5, def: 72, mDef: 144, material: "Cloth" }, -{ itemId: 502134, className: "HAND02_134", name: "Dratt Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 502135, className: "HAND02_135", name: "Dratt Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 144, mDef: 72, material: "Iron" }, -{ itemId: 502136, className: "HAND02_136", name: "Aston Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, addMAtk: 6, def: 72, mDef: 144, material: "Cloth" }, -{ itemId: 502137, className: "HAND02_137", name: "Aston Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 502138, className: "HAND02_138", name: "Aston Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 144, mDef: 72, material: "Iron" }, -{ itemId: 502139, className: "HAND02_139", name: "Devi Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, addMAtk: 8, def: 128, mDef: 256, material: "Cloth" }, -{ itemId: 502140, className: "HAND02_140", name: "Devi Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, def: 192, mDef: 192, material: "Leather" }, -{ itemId: 502141, className: "HAND02_141", name: "Devi Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 826, equipType1: "Gloves", minLevel: 75, def: 256, mDef: 128, material: "Iron" }, -{ itemId: 502142, className: "HAND02_142", name: "Prima Gloves", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 3862, sellPrice: 1228, equipType1: "Gloves", minLevel: 75, addMAtk: 11, def: 128, mDef: 256, material: "Cloth" }, -{ itemId: 502143, className: "HAND02_143", name: "Prima Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 1228, equipType1: "Gloves", minLevel: 75, def: 192, mDef: 192, material: "Leather" }, -{ itemId: 502144, className: "HAND02_144", name: "Prima Gauntlets", type: "Equip", group: "Armor", weight: 66, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, def: 256, mDef: 128, material: "Iron" }, -{ itemId: 502145, className: "HAND02_145", name: "Tomb Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, addMAtk: 10, def: 128, mDef: 256, material: "Cloth" }, -{ itemId: 502146, className: "HAND02_146", name: "Tomb Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, def: 192, mDef: 192, material: "Leather" }, -{ itemId: 502147, className: "HAND02_147", name: "Tomb Gauntlets", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, def: 256, mDef: 128, material: "Iron" }, -{ itemId: 502153, className: "HAND02_153", name: "Watcher Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 327, equipType1: "Gloves", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 502154, className: "HAND02_154", name: "Earth Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 1638, sellPrice: 772, equipType1: "Gloves", minLevel: 40, addMAtk: 6, def: 72, mDef: 144, material: "Cloth" }, -{ itemId: 502155, className: "HAND02_155", name: "Leather Earth Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 772, equipType1: "Gloves", minLevel: 40, addMinAtk: 4, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 502156, className: "HAND02_156", name: "Earth Plate Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 772, equipType1: "Gloves", minLevel: 40, def: 144, mDef: 72, material: "Iron" }, -{ itemId: 502157, className: "HAND02_157", name: "Legwyn Family Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Gloves", minLevel: 120, def: 200, mDef: 400, material: "Cloth" }, -{ itemId: 502158, className: "HAND02_158", name: "Legwyn Family Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Gloves", minLevel: 120, def: 300, mDef: 300, material: "Leather" }, -{ itemId: 502159, className: "HAND02_159", name: "Legwyn Family Plate Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Gloves", minLevel: 120, pAtk: 5, def: 400, mDef: 200, material: "Iron" }, -{ itemId: 502160, className: "HAND02_160", name: "Ogva Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 32, mDef: 64, material: "Cloth" }, -{ itemId: 502161, className: "HAND02_161", name: "Ogva Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 502162, className: "HAND02_162", name: "Ogva Chain Gloves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 64, mDef: 32, material: "Iron" }, -{ itemId: 502163, className: "HAND02_163", name: "Partis Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 32, mDef: 64, material: "Cloth" }, -{ itemId: 502164, className: "HAND02_164", name: "Partis Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 502165, className: "HAND02_165", name: "Partis Ring Gloves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 64, mDef: 32, material: "Iron" }, -{ itemId: 502166, className: "HAND02_166", name: "Sirdgela Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 72, mDef: 144, material: "Cloth" }, -{ itemId: 502167, className: "HAND02_167", name: "Sirdgela Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 502168, className: "HAND02_168", name: "Sirdgela Scale Gloves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 144, mDef: 72, material: "Iron" }, -{ itemId: 502169, className: "HAND02_169", name: "Philis Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 72, mDef: 144, material: "Cloth" }, -{ itemId: 502170, className: "HAND02_170", name: "Philis Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 502171, className: "HAND02_171", name: "Philis Scale Gloves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 144, mDef: 72, material: "Iron" }, -{ itemId: 502172, className: "HAND02_172", name: "Allerno Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, def: 128, mDef: 256, material: "Cloth" }, -{ itemId: 502173, className: "HAND02_173", name: "Allerno Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, def: 192, mDef: 192, material: "Leather" }, -{ itemId: 502174, className: "HAND02_174", name: "Allerno Plate Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, def: 256, mDef: 128, material: "Iron" }, -{ itemId: 502175, className: "HAND02_175", name: "Perelin Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, def: 128, mDef: 256, material: "Cloth" }, -{ itemId: 502176, className: "HAND02_176", name: "Perelin Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, def: 192, mDef: 192, material: "Leather" }, -{ itemId: 502177, className: "HAND02_177", name: "Perelin Plate Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, def: 256, mDef: 128, material: "Iron" }, -{ itemId: 502178, className: "HAND02_178", name: "Turn Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1215, equipType1: "Gloves", minLevel: 120, def: 200, mDef: 400, material: "Cloth" }, -{ itemId: 502179, className: "HAND02_179", name: "Turn Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 6984, sellPrice: 1215, equipType1: "Gloves", minLevel: 120, def: 300, mDef: 300, material: "Leather" }, -{ itemId: 502180, className: "HAND02_180", name: "Turn Plate Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 6984, sellPrice: 1215, equipType1: "Gloves", minLevel: 120, def: 400, mDef: 200, material: "Iron" }, -{ itemId: 502181, className: "HAND02_181", name: "Shaton Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1228, equipType1: "Gloves", minLevel: 120, def: 200, mDef: 400, material: "Cloth" }, -{ itemId: 502182, className: "HAND02_182", name: "Shaton Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 6984, sellPrice: 1228, equipType1: "Gloves", minLevel: 120, def: 300, mDef: 300, material: "Leather" }, -{ itemId: 502183, className: "HAND02_183", name: "Shaton Plate Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 6984, sellPrice: 1228, equipType1: "Gloves", minLevel: 120, def: 400, mDef: 200, material: "Iron" }, -{ itemId: 502184, className: "HAND02_184", name: "Tyla Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 10913, sellPrice: 1937, equipType1: "Gloves", minLevel: 170, def: 280, mDef: 560, material: "Cloth" }, -{ itemId: 502185, className: "HAND02_185", name: "Tyla Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 10913, sellPrice: 1937, equipType1: "Gloves", minLevel: 170, def: 420, mDef: 420, material: "Leather" }, -{ itemId: 502186, className: "HAND02_186", name: "Tyla Plate Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 10913, sellPrice: 1937, equipType1: "Gloves", minLevel: 170, def: 560, mDef: 280, material: "Iron" }, -{ itemId: 502188, className: "HAND02_188", name: "Elkosh Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, def: 360, mDef: 720, material: "Cloth" }, -{ itemId: 502189, className: "HAND02_189", name: "Ibre Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, def: 540, mDef: 540, material: "Leather" }, -{ itemId: 502190, className: "HAND02_190", name: "Grynas Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, def: 720, mDef: 360, material: "Iron" }, -{ itemId: 502200, className: "HAND02_200", name: "Valtas Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, def: 360, mDef: 720, material: "Cloth" }, -{ itemId: 502201, className: "HAND02_201", name: "Valtas Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, def: 540, mDef: 540, material: "Leather" }, -{ itemId: 502202, className: "HAND02_202", name: "Valtas Plate Gauntlents", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, def: 720, mDef: 360, material: "Iron" }, -{ itemId: 502203, className: "HAND02_203", name: "Oghma Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, def: 720, mDef: 360, material: "Iron" }, -{ itemId: 502204, className: "HAND02_204", name: "Demonas Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, def: 720, mDef: 360, material: "Iron" }, -{ itemId: 502205, className: "HAND02_205", name: "Hasta Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, def: 440, mDef: 880, material: "Cloth" }, -{ itemId: 502206, className: "HAND02_206", name: "Hasta Leather Gloves", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, def: 660, mDef: 660, material: "Leather" }, -{ itemId: 502207, className: "HAND02_207", name: "Hasta Plate Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, def: 880, mDef: 440, material: "Iron" }, -{ itemId: 502208, className: "HAND02_208", name: "Manahas Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, def: 660, mDef: 660, material: "Leather", iceRes: 15 }, -{ itemId: 502209, className: "HAND02_209", name: "(Faded) Kalinis Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, def: 440, mDef: 880, material: "Cloth" }, -{ itemId: 502210, className: "HAND02_210", name: "(Faded) Albinosas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, def: 660, mDef: 660, material: "Leather" }, -{ itemId: 502211, className: "HAND02_211", name: "(Faded) Tajtanas Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, def: 880, mDef: 440, material: "Iron" }, -{ itemId: 502212, className: "HAND02_212", name: "(Faded) Oksinis Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, def: 512, mDef: 1024, material: "Cloth" }, -{ itemId: 502213, className: "HAND02_213", name: "(Faded) Kaulas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, def: 768, mDef: 768, material: "Leather" }, -{ itemId: 502214, className: "HAND02_214", name: "(Faded) Krisius Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, def: 1024, mDef: 512, material: "Iron" }, -{ itemId: 502215, className: "HAND02_215", name: "Alpra Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, def: 200, mDef: 400, material: "Cloth" }, -{ itemId: 502216, className: "HAND02_216", name: "Eastern Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, def: 300, mDef: 300, material: "Leather" }, -{ itemId: 502217, className: "HAND02_217", name: "Pangle Plate Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, def: 400, mDef: 200, material: "Iron" }, -{ itemId: 502218, className: "HAND02_218", name: "War Mage Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, def: 280, mDef: 560, material: "Cloth" }, -{ itemId: 502219, className: "HAND02_219", name: "Eaglestar Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, def: 420, mDef: 420, material: "Leather" }, -{ itemId: 502220, className: "HAND02_220", name: "Nyx Knight Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, def: 560, mDef: 280, material: "Iron" }, -{ itemId: 502221, className: "HAND02_221", name: "Marone Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, def: 128, mDef: 256, material: "Cloth" }, -{ itemId: 502222, className: "HAND02_222", name: "Prakeh Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, def: 360, mDef: 720, material: "Cloth" }, -{ itemId: 502223, className: "HAND02_223", name: "Razna Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, def: 192, mDef: 192, material: "Leather" }, -{ itemId: 502224, className: "HAND02_224", name: "Keyarc Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, def: 540, mDef: 540, material: "Leather" }, -{ itemId: 502225, className: "HAND02_225", name: "Barghar Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, def: 256, mDef: 128, material: "Iron" }, -{ itemId: 502226, className: "HAND02_226", name: "Suurit Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, def: 720, mDef: 360, material: "Iron" }, -{ itemId: 502227, className: "HAND02_227", name: "Kalinis Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, def: 440, mDef: 880, material: "Cloth" }, -{ itemId: 502228, className: "HAND02_228", name: "Albinosas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, def: 660, mDef: 660, material: "Leather" }, -{ itemId: 502229, className: "HAND02_229", name: "Tajtanas Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, def: 880, mDef: 440, material: "Iron" }, -{ itemId: 502230, className: "HAND02_230", name: "Oksinis Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 512, mDef: 1024, material: "Cloth" }, -{ itemId: 502231, className: "HAND02_231", name: "Kaulas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 768, mDef: 768, material: "Leather" }, -{ itemId: 502232, className: "HAND02_232", name: "Krisius Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 1024, mDef: 512, material: "Iron" }, -{ itemId: 502233, className: "HAND02_233", name: "Irellis Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, def: 568, mDef: 1136, material: "Cloth" }, -{ itemId: 502234, className: "HAND02_234", name: "Jevenellis Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, def: 852, mDef: 852, material: "Leather" }, -{ itemId: 502235, className: "HAND02_235", name: "Basticle Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, def: 1136, mDef: 568, material: "Iron" }, -{ itemId: 502236, className: "HAND02_236", name: "Planeta Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 616, mDef: 1232, material: "Cloth" }, -{ itemId: 502237, className: "HAND02_237", name: "Ukas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 924, mDef: 924, material: "Leather" }, -{ itemId: 502238, className: "HAND02_238", name: "Galaktikos Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 1232, mDef: 616, material: "Iron" }, -{ itemId: 502239, className: "HAND02_239", name: "Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 648, mDef: 1296, material: "Cloth" }, -{ itemId: 502240, className: "HAND02_240", name: "Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 972, mDef: 972, material: "Leather" }, -{ itemId: 502241, className: "HAND02_241", name: "Akmo Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1296, mDef: 648, material: "Iron" }, -{ itemId: 503101, className: "HAND03_101", name: "Vubbe Fighter Gauntlets", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, def: 52, mDef: 52, material: "Leather" }, -{ itemId: 503102, className: "HAND03_102", name: "Shield Crasher", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, def: 118, mDef: 118, material: "Leather" }, -{ itemId: 503103, className: "HAND03_103", name: "Vine Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 786, equipType1: "Gloves", minLevel: 75, def: 140, mDef: 281, material: "Cloth" }, -{ itemId: 503105, className: "HAND03_105", name: "Soul Chaser Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 3862, sellPrice: 1203, equipType1: "Gloves", minLevel: 75, addMinAtk: 16, def: 211, mDef: 211, material: "Leather" }, -{ itemId: 503106, className: "HAND03_106", name: "Bone Gauntlets", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, def: 281, mDef: 140, material: "Iron" }, -{ itemId: 503107, className: "HAND03_107", name: "Shade Hands", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, def: 211, mDef: 211, material: "Leather", holyRes: -26 }, -{ itemId: 503111, className: "HAND03_111", name: "Roxona Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Gloves", minLevel: 170, pAtk: 5, def: 308, mDef: 616, material: "Cloth" }, -{ itemId: 503112, className: "HAND03_112", name: "Roxona Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Gloves", minLevel: 170, def: 462, mDef: 462, material: "Leather" }, -{ itemId: 503113, className: "HAND03_113", name: "Roxona Plate Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Gloves", minLevel: 170, def: 616, mDef: 308, material: "Iron" }, -{ itemId: 503114, className: "HAND03_114", name: "Virtov Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, def: 396, mDef: 792, material: "Cloth" }, -{ itemId: 503115, className: "HAND03_115", name: "Virtov Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, pAtk: 19, def: 594, mDef: 594, material: "Leather" }, -{ itemId: 503116, className: "HAND03_116", name: "Virtov Plate Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, def: 792, mDef: 396, material: "Iron" }, -{ itemId: 503130, className: "HAND03_130", name: "Newt Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, def: 484, mDef: 968, material: "Cloth" }, -{ itemId: 503131, className: "HAND03_131", name: "Newt Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, pAtk: 19, def: 726, mDef: 726, material: "Leather" }, -{ itemId: 503132, className: "HAND03_132", name: "Newt Plate Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, def: 968, mDef: 484, material: "Iron" }, -{ itemId: 503201, className: "HAND03_201", name: "Swift Oghma Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 18000, sellPrice: 3672, equipType1: "Gloves", minLevel: 270, def: 968, mDef: 484, material: "Iron" }, -{ itemId: 503202, className: "HAND03_202", name: "Dehvlin Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 18000, sellPrice: 3672, equipType1: "Gloves", minLevel: 270, def: 968, mDef: 484, material: "Iron" }, -{ itemId: 503301, className: "HAND03_301", name: "(Faded) Alpra Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Gloves", minLevel: 120, def: 220, mDef: 440, material: "Cloth" }, -{ itemId: 503302, className: "HAND03_302", name: "(Faded) Eastern Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Gloves", minLevel: 120, addMinAtk: 27, addMaxAtk: 52, def: 330, mDef: 330, material: "Leather" }, -{ itemId: 503303, className: "HAND03_303", name: "(Faded) Pangle Plate Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Gloves", minLevel: 120, addMinAtk: 20, addMaxAtk: 43, def: 440, mDef: 220, material: "Iron" }, -{ itemId: 503304, className: "HAND03_304", name: "(Faded) War Mage Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Gloves", minLevel: 170, def: 308, mDef: 616, material: "Cloth" }, -{ itemId: 503305, className: "HAND03_305", name: "(Faded) Eaglestar Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Gloves", minLevel: 170, def: 462, mDef: 462, material: "Leather" }, -{ itemId: 503306, className: "HAND03_306", name: "(Faded) Nyx Knight Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Gloves", minLevel: 170, def: 616, mDef: 308, material: "Iron" }, -{ itemId: 503307, className: "HAND03_307", name: "(Faded) Marone Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, def: 140, mDef: 281, material: "Cloth" }, -{ itemId: 503308, className: "HAND03_308", name: "(Faded) Prakeh Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, def: 396, mDef: 792, material: "Cloth" }, -{ itemId: 503309, className: "HAND03_309", name: "(Faded) Razna Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, def: 211, mDef: 211, material: "Leather", darkRes: 20 }, -{ itemId: 503310, className: "HAND03_310", name: "(Faded) Keyarc Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, def: 594, mDef: 594, material: "Leather" }, -{ itemId: 503311, className: "HAND03_311", name: "(Faded) Barghar Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, def: 281, mDef: 140, material: "Iron" }, -{ itemId: 503312, className: "HAND03_312", name: "(Faded) Suurit Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, def: 792, mDef: 396, material: "Iron" }, -{ itemId: 503313, className: "HAND03_313", name: "(Faded) Vienti Kalinis Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, def: 484, mDef: 968, material: "Cloth" }, -{ itemId: 503314, className: "HAND03_314", name: "(Faded) Vienti Albinosas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, def: 726, mDef: 726, material: "Leather" }, -{ itemId: 503315, className: "HAND03_315", name: "(Faded) Vienti Tajtanas Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, def: 968, mDef: 484, material: "Iron" }, -{ itemId: 503316, className: "HAND03_316", name: "(Faded) Vienti Oksinis Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, def: 563, mDef: 1126, material: "Cloth" }, -{ itemId: 503317, className: "HAND03_317", name: "(Faded) Vienti Kaulas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, def: 844, mDef: 844, material: "Leather" }, -{ itemId: 503318, className: "HAND03_318", name: "(Faded) Vienti Krisius Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, def: 1126, mDef: 563, material: "Iron" }, -{ itemId: 503319, className: "HAND03_319", name: "Berthas Alpra Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, def: 220, mDef: 440, material: "Cloth" }, -{ itemId: 503320, className: "HAND03_320", name: "Berthas Eastern Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, def: 330, mDef: 330, material: "Leather" }, -{ itemId: 503321, className: "HAND03_321", name: "Berthas Pangle Plate Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, def: 440, mDef: 220, material: "Iron" }, -{ itemId: 503322, className: "HAND03_322", name: "Berthas Warmage Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, def: 308, mDef: 616, material: "Cloth" }, -{ itemId: 503323, className: "HAND03_323", name: "Berthas Eaglestar Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, def: 462, mDef: 462, material: "Leather" }, -{ itemId: 503324, className: "HAND03_324", name: "Berthas Nyx Knight Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, def: 616, mDef: 308, material: "Iron" }, -{ itemId: 503325, className: "HAND03_325", name: "Berthas Marone Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, def: 140, mDef: 281, material: "Cloth" }, -{ itemId: 503326, className: "HAND03_326", name: "Berthas Prakeh Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, def: 396, mDef: 792, material: "Cloth" }, -{ itemId: 503327, className: "HAND03_327", name: "Berthas Razna Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, def: 211, mDef: 211, material: "Leather" }, -{ itemId: 503328, className: "HAND03_328", name: "Berthas Keyarc Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, def: 594, mDef: 594, material: "Leather" }, -{ itemId: 503329, className: "HAND03_329", name: "Berthas Barghar Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, def: 281, mDef: 140, material: "Iron" }, -{ itemId: 503330, className: "HAND03_330", name: "Berthas Suurit Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, def: 792, mDef: 396, material: "Iron" }, -{ itemId: 503331, className: "HAND03_331", name: "Berthas Kalinis Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, def: 484, mDef: 968, material: "Cloth" }, -{ itemId: 503332, className: "HAND03_332", name: "Berthas Albinosas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, def: 726, mDef: 726, material: "Leather" }, -{ itemId: 503333, className: "HAND03_333", name: "Berthas Tajtanas Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, def: 968, mDef: 484, material: "Iron" }, -{ itemId: 503334, className: "HAND03_334", name: "Berthas Oksinis Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 563, mDef: 1126, material: "Cloth" }, -{ itemId: 503335, className: "HAND03_335", name: "Berthas Kaulas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 844, mDef: 844, material: "Leather" }, -{ itemId: 503336, className: "HAND03_336", name: "Berthas Krisius Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 1126, mDef: 563, material: "Iron" }, -{ itemId: 503337, className: "HAND03_337", name: "Berthas Irellis Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, def: 624, mDef: 1249, material: "Cloth" }, -{ itemId: 503338, className: "HAND03_338", name: "Berthas Jevenellis Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, def: 937, mDef: 937, material: "Leather" }, -{ itemId: 503339, className: "HAND03_339", name: "Berthas Basticle Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, def: 1249, mDef: 624, material: "Iron" }, -{ itemId: 503340, className: "HAND03_340", name: "Berthas Planeta Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 677, mDef: 1355, material: "Cloth" }, -{ itemId: 503341, className: "HAND03_341", name: "Berthas Ukas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 1016, mDef: 1016, material: "Leather" }, -{ itemId: 503342, className: "HAND03_342", name: "Berthas Galaktikos Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 1355, mDef: 677, material: "Iron" }, -{ itemId: 503343, className: "HAND03_343", name: "Berthas Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 712, mDef: 1425, material: "Cloth" }, -{ itemId: 503344, className: "HAND03_344", name: "Berthas Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1069, mDef: 1069, material: "Leather" }, -{ itemId: 503345, className: "HAND03_345", name: "Berthas Akmo Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1425, mDef: 712, material: "Iron" }, -{ itemId: 503346, className: "HAND03_346", name: "Berthas Dysnai Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, def: 765, mDef: 1531, material: "Cloth" }, -{ itemId: 503347, className: "HAND03_347", name: "Berthas Dysnai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, def: 1148, mDef: 1148, material: "Leather" }, -{ itemId: 503348, className: "HAND03_348", name: "Berthas Dysnai Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, def: 1531, mDef: 765, material: "Iron" }, -{ itemId: 504106, className: "HAND04_106", name: "Lolopanther Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, addMAtk: 24, def: 704, mDef: 1408, material: "Cloth" }, -{ itemId: 504107, className: "HAND04_107", name: "Lolopanther Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, def: 1056, mDef: 1056, material: "Leather" }, -{ itemId: 504108, className: "HAND04_108", name: "Lolopanther Plate Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, pAtk: 21, def: 1408, mDef: 704, material: "Iron" }, -{ itemId: 504109, className: "HAND04_109", name: "Solmiki Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 5828, equipType1: "Gloves", minLevel: 330, addMAtk: 36, def: 857, mDef: 1715, material: "Cloth" }, -{ itemId: 504110, className: "HAND04_110", name: "Solmiki Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 5828, equipType1: "Gloves", minLevel: 330, def: 1286, mDef: 1286, material: "Leather" }, -{ itemId: 504111, className: "HAND04_111", name: "Solmiki Plate Gauntlets", type: "Equip", group: "Armor", weight: 65, maxStack: 1, price: 21960, sellPrice: 5828, equipType1: "Gloves", minLevel: 330, pAtk: 31, def: 1715, mDef: 857, material: "Iron" }, -{ itemId: 504112, className: "HAND04_112", name: "Sausis Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, pAtk: 57, def: 1420, mDef: 710, material: "Iron" }, -{ itemId: 504113, className: "HAND04_113", name: "Primus Alpra Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, def: 250, mDef: 500, material: "Cloth" }, -{ itemId: 504114, className: "HAND04_114", name: "Primus Eastern Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, def: 375, mDef: 375, material: "Leather" }, -{ itemId: 504115, className: "HAND04_115", name: "Primus Pangle Plate Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, def: 500, mDef: 250, material: "Iron" }, -{ itemId: 504116, className: "HAND04_116", name: "Primus Warmage Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, def: 350, mDef: 700, material: "Cloth" }, -{ itemId: 504117, className: "HAND03_117", name: "Intasurta Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, def: 396, mDef: 792, material: "Cloth", holyRes: -144 }, -{ itemId: 504118, className: "HAND04_118", name: "Primus Nyx Knight Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, def: 700, mDef: 350, material: "Iron" }, -{ itemId: 504119, className: "HAND04_119", name: "Primus Marone Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, def: 160, mDef: 320, material: "Cloth" }, -{ itemId: 504120, className: "HAND04_120", name: "Primus Prakeh Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, def: 450, mDef: 900, material: "Cloth" }, -{ itemId: 504121, className: "HAND04_121", name: "Primus Razna Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, def: 240, mDef: 240, material: "Leather" }, -{ itemId: 504122, className: "HAND04_122", name: "Primus Keyarc Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, def: 675, mDef: 675, material: "Leather" }, -{ itemId: 504123, className: "HAND04_123", name: "Primus Barghar Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, def: 320, mDef: 160, material: "Iron" }, -{ itemId: 504124, className: "HAND04_124", name: "Primus Suurit Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, def: 900, mDef: 450, material: "Iron" }, -{ itemId: 504125, className: "HAND04_125", name: "Primus Kalinis Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, def: 550, mDef: 1100, material: "Cloth" }, -{ itemId: 504126, className: "HAND04_126", name: "Primus Albinosas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, def: 825, mDef: 825, material: "Leather" }, -{ itemId: 504127, className: "HAND04_127", name: "Primus Tajtanas Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, def: 1100, mDef: 550, material: "Iron" }, -{ itemId: 504128, className: "HAND04_128", name: "Primus Oksinis Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 640, mDef: 1280, material: "Cloth" }, -{ itemId: 504129, className: "HAND04_129", name: "Primus Kaulas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 960, mDef: 960, material: "Leather" }, -{ itemId: 504130, className: "HAND04_130", name: "Primus Krisius Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 1280, mDef: 640, material: "Iron" }, -{ itemId: 504131, className: "HAND04_131", name: "Primus Irellis Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, def: 710, mDef: 1420, material: "Cloth" }, -{ itemId: 504132, className: "HAND04_132", name: "Primus Jevenellis Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, def: 1065, mDef: 1065, material: "Leather" }, -{ itemId: 504133, className: "HAND04_133", name: "Primus Basticle Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, def: 1420, mDef: 710, material: "Iron" }, -{ itemId: 504134, className: "HAND04_134", name: "Laitas Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, addMAtk: 78, def: 710, mDef: 1420, material: "Cloth" }, -{ itemId: 504135, className: "HAND04_135", name: "Fietas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, def: 1065, mDef: 1065, material: "Leather" }, -{ itemId: 504136, className: "HAND04_136", name: "Ausura Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, def: 1420, mDef: 710, material: "Iron" }, -{ itemId: 504137, className: "HAND04_117", name: "Primus Eaglestar Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, def: 525, mDef: 525, material: "Leather" }, -{ itemId: 504138, className: "HAND04_137", name: "Primus Planeta Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 770, mDef: 1540, material: "Cloth" }, -{ itemId: 504139, className: "HAND04_138", name: "Primus Ukas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 1155, mDef: 1155, material: "Leather" }, -{ itemId: 504140, className: "HAND04_139", name: "Primus Galaktikos Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 1540, mDef: 770, material: "Iron" }, -{ itemId: 504141, className: "HAND04_140", name: "Ignas Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 770, mDef: 1540, material: "Cloth" }, -{ itemId: 504142, className: "HAND04_141", name: "Ignas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 1155, mDef: 1155, material: "Leather" }, -{ itemId: 504143, className: "HAND04_142", name: "Ignas Plate Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 1540, mDef: 770, material: "Iron" }, -{ itemId: 504144, className: "HAND04_144", name: "Primus Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 810, mDef: 1620, material: "Cloth" }, -{ itemId: 504145, className: "HAND04_145", name: "Primus Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1215, mDef: 1215, material: "Leather" }, -{ itemId: 504146, className: "HAND04_146", name: "Primus Akmo Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1620, mDef: 810, material: "Iron" }, -{ itemId: 504147, className: "HAND04_147", name: "Skiaclipse Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, addMAtk: 145, def: 810, mDef: 1620, material: "Cloth" }, -{ itemId: 504148, className: "HAND04_148", name: "Skiaclipse Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1215, mDef: 1215, material: "Leather" }, -{ itemId: 504149, className: "HAND04_149", name: "Skiaclipse Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1620, mDef: 810, material: "Iron", slashDef: 596 }, -{ itemId: 504150, className: "HAND04_150", name: "Skiaclipse Gloves - Compassion", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 810, mDef: 1620, addMDef: 160, material: "Cloth" }, -{ itemId: 504151, className: "HAND04_151", name: "Skiaclipse Leather Gloves - Assault", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, pAtk: 145, addMAtk: 145, def: 1215, mDef: 1215, material: "Leather" }, -{ itemId: 504152, className: "HAND04_152", name: "Skiaclipse Plate Gauntlet - Iron Wall", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1620, mDef: 810, material: "Iron" }, -{ itemId: 504153, className: "HAND04_153", name: "Moringponia Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1620, mDef: 810, material: "Iron" }, -{ itemId: 504154, className: "HAND04_154", name: "Moringponia Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 810, mDef: 1620, material: "Cloth" }, -{ itemId: 504155, className: "HAND04_155", name: "Moringponia Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1215, mDef: 1215, material: "Leather" }, -{ itemId: 504156, className: "HAND04_156", name: "Misrus Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1620, mDef: 810, material: "Iron" }, -{ itemId: 504157, className: "HAND04_157", name: "Misrus Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 810, mDef: 1620, material: "Cloth" }, -{ itemId: 504158, className: "HAND04_158", name: "Misrus Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1215, mDef: 1215, material: "Leather" }, -{ itemId: 504159, className: "HAND04_159", name: "Primus Dysnai Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, def: 870, mDef: 1740, material: "Cloth" }, -{ itemId: 504160, className: "HAND04_160", name: "Primus Dysnai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, def: 1305, mDef: 1305, material: "Leather" }, -{ itemId: 504161, className: "HAND04_161", name: "Primus Dysnai Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, def: 1740, mDef: 870, material: "Iron" }, -{ itemId: 505101, className: "HAND05_101", name: "Velcoffer Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 360, def: 934, mDef: 1868, material: "Cloth" }, -{ itemId: 505102, className: "HAND05_102", name: "Velcoffer Leather Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 360, def: 1401, mDef: 1401, material: "Leather" }, -{ itemId: 505103, className: "HAND05_103", name: "Velcoffer Plate Gauntlets", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 360, def: 1868, mDef: 934, material: "Iron" }, -{ itemId: 505104, className: "HAND05_104", name: "Velcoffer Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 360, def: 934, mDef: 1868, material: "Cloth" }, -{ itemId: 505105, className: "HAND05_105", name: "Velcoffer Leather Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 360, def: 1401, mDef: 1401, material: "Leather" }, -{ itemId: 505106, className: "HAND05_106", name: "Velcoffer Plate Gauntlets", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 360, def: 1868, mDef: 934, material: "Iron" }, -{ itemId: 505107, className: "HAND05_107", name: "Savinose Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1036, mDef: 2073, material: "Cloth" }, -{ itemId: 505108, className: "HAND05_108", name: "Savinose Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1555, mDef: 1555, material: "Leather" }, -{ itemId: 505109, className: "HAND05_109", name: "Savinose Akmo Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 2073, mDef: 1036, material: "Iron" }, -{ itemId: 505110, className: "HAND05_110", name: "Skiaclipse Varna Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 2073, mDef: 1036, material: "Iron" }, -{ itemId: 505111, className: "HAND05_111", name: "Skiaclipse Varna Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1555, mDef: 1555, material: "Leather" }, -{ itemId: 505112, className: "HAND05_112", name: "Skiaclipse Varna Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1036, mDef: 2073, material: "Cloth" }, -{ itemId: 511101, className: "FOOT01_101", name: "Light Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Boots", minLevel: 1, def: 12, mDef: 12, material: "Leather" }, -{ itemId: 511102, className: "FOOT01_102", name: "Quilted Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Boots", minLevel: 1, def: 12, mDef: 12, material: "Leather" }, -{ itemId: 511103, className: "FOOT01_103", name: "Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 110, equipType1: "Boots", minLevel: 1, def: 12, mDef: 12, material: "Leather" }, -{ itemId: 511104, className: "FOOT01_104", name: "Hard Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 43, mDef: 43, material: "Leather" }, -{ itemId: 511105, className: "FOOT01_105", name: "Chain Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 57, mDef: 28, material: "Iron" }, -{ itemId: 511106, className: "FOOT01_106", name: "Mark Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 453, equipType1: "Boots", minLevel: 40, def: 97, mDef: 97, material: "Leather" }, -{ itemId: 511107, className: "FOOT01_107", name: "Forest Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 97, mDef: 97, material: "Leather" }, -{ itemId: 511108, className: "FOOT01_108", name: "Grima Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 64, mDef: 129, material: "Cloth" }, -{ itemId: 511109, className: "FOOT01_109", name: "Veris Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 97, mDef: 97, material: "Leather" }, -{ itemId: 511110, className: "FOOT01_110", name: "Scale Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 129, mDef: 64, material: "Iron" }, -{ itemId: 511111, className: "FOOT01_111", name: "Forest Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 64, mDef: 129, material: "Cloth" }, -{ itemId: 511112, className: "FOOT01_112", name: "Klaida Greaves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 129, mDef: 64, material: "Iron" }, -{ itemId: 511113, className: "FOOT01_113", name: "Hard Veris Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 3862, sellPrice: 786, equipType1: "Boots", minLevel: 75, def: 172, mDef: 172, material: "Leather" }, -{ itemId: 511114, className: "FOOT01_114", name: "Superior Scale Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 786, equipType1: "Boots", minLevel: 75, def: 230, mDef: 115, material: "Iron" }, -{ itemId: 511115, className: "FOOT01_115", name: "Regal Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, def: 115, mDef: 230, material: "Cloth" }, -{ itemId: 511117, className: "FOOT01_117", name: "Miner's Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Boots", minLevel: 1, def: 12, mDef: 12, material: "Leather" }, -{ itemId: 511118, className: "FOOT01_118", name: "Old Hard Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 43, mDef: 43, material: "Leather" }, -{ itemId: 511119, className: "FOOT01_119", name: "Old Chain Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 57, mDef: 28, material: "Iron" }, -{ itemId: 511120, className: "FOOT01_120", name: "Old Steel Chain Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 270, equipType1: "Boots", minLevel: 40, def: 129, mDef: 64, material: "Iron" }, -{ itemId: 511121, className: "FOOT01_121", name: "Brigandine Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, def: 172, mDef: 172, material: "Leather" }, -{ itemId: 511122, className: "FOOT01_122", name: "Plate Greaves", type: "Equip", group: "Armor", weight: 66, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, def: 230, mDef: 115, material: "Iron" }, -{ itemId: 511126, className: "FOOT01_126", name: "Acolyte Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 453, equipType1: "Boots", minLevel: 40, def: 64, mDef: 129, material: "Cloth" }, -{ itemId: 511127, className: "FOOT01_127", name: "Steel Chain Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 453, equipType1: "Boots", minLevel: 40, def: 129, mDef: 64, material: "Iron" }, +{ itemId: 501133, className: "HAND01_133", name: "Cotton Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 28, mDef: 57, material: "Cloth" }, +{ itemId: 501134, className: "HAND01_134", name: "Ring Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 57, mDef: 28, material: "Iron" }, +{ itemId: 501135, className: "HAND01_135", name: "Superior Regal Gloves", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 115, mDef: 230, material: "Cloth" }, +{ itemId: 501136, className: "HAND01_136", name: "Superior Brigandine Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 172, mDef: 172, material: "Leather" }, +{ itemId: 501137, className: "HAND01_137", name: "Full Plate Gauntlets", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 230, mDef: 115, material: "Iron" }, +{ itemId: 501138, className: "HAND01_138", name: "Fedimian Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1396, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 180, mDef: 360, material: "Cloth" }, +{ itemId: 501139, className: "HAND01_139", name: "Fedimian Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1396, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 270, mDef: 270, material: "Leather" }, +{ itemId: 501140, className: "HAND01_140", name: "Fedimian Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 6984, sellPrice: 1396, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 360, mDef: 180, material: "Iron" }, +{ itemId: 501141, className: "HAND01_141", name: "Magician Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 180, mDef: 360, material: "Cloth" }, +{ itemId: 501142, className: "HAND01_142", name: "Hunting Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 270, mDef: 270, material: "Leather" }, +{ itemId: 501143, className: "HAND01_143", name: "Guard Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1228, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 360, mDef: 180, material: "Iron" }, +{ itemId: 501144, className: "HAND01_144", name: "Mage Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 180, mDef: 360, material: "Cloth" }, +{ itemId: 501145, className: "HAND01_145", name: "Skirmisher Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 270, mDef: 270, material: "Leather" }, +{ itemId: 501146, className: "HAND01_146", name: "Infantry Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 360, mDef: 180, material: "Iron" }, +{ itemId: 501147, className: "HAND01_147", name: "Archmage Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 10913, sellPrice: 2182, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 252, mDef: 504, material: "Cloth" }, +{ itemId: 501148, className: "HAND01_148", name: "Superior Skirmisher Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 10913, sellPrice: 2182, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 378, mDef: 378, material: "Leather" }, +{ itemId: 501149, className: "HAND01_149", name: "Superior Infantry Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 10913, sellPrice: 2182, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 504, mDef: 252, material: "Iron" }, +{ itemId: 501150, className: "HAND01_150", name: "Librarian Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 2940, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 252, mDef: 504, material: "Cloth" }, +{ itemId: 501151, className: "HAND01_151", name: "Veteran Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 2940, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 378, mDef: 378, material: "Leather" }, +{ itemId: 501152, className: "HAND01_152", name: "Knight Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 10913, sellPrice: 2940, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 504, mDef: 252, material: "Iron" }, +{ itemId: 501153, className: "HAND01_153", name: "Superior Grima Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 115, mDef: 230, material: "Cloth" }, +{ itemId: 501154, className: "HAND01_154", name: "Royal Mage Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 324, mDef: 648, material: "Cloth" }, +{ itemId: 501155, className: "HAND01_155", name: "Bandit Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 486, mDef: 486, material: "Leather" }, +{ itemId: 501156, className: "HAND01_156", name: "Royal Guard Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 648, mDef: 324, material: "Iron" }, +{ itemId: 501157, className: "HAND01_157", name: "Superior Royal Mage Gauntlets", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 324, mDef: 648, material: "Cloth" }, +{ itemId: 501158, className: "HAND01_158", name: "Superior Bandit Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 486, mDef: 486, material: "Leather" }, +{ itemId: 501159, className: "HAND01_159", name: "Superior Royal Guard Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 648, mDef: 324, material: "Iron" }, +{ itemId: 501201, className: "HAND01_201", name: "Smash Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 648, mDef: 324, material: "Iron" }, +{ itemId: 501202, className: "HAND01_202", name: "Slash Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 648, mDef: 324, material: "Iron" }, +{ itemId: 501203, className: "HAND01_203", name: "Blint Greaves", type: "Equip", group: "Armor", weight: 18, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 396, mDef: 792, material: "Cloth" }, +{ itemId: 501204, className: "HAND01_204", name: "Blint Leather Greaves", type: "Equip", group: "Armor", weight: 27, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 594, mDef: 594, material: "Leather" }, +{ itemId: 501205, className: "HAND01_205", name: "Blint Plate Gauntlets", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 792, mDef: 396, material: "Iron" }, +{ itemId: 501206, className: "HAND01_206", name: "(Faded) Replica Kalinis Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 396, mDef: 792, material: "Cloth" }, +{ itemId: 501207, className: "HAND01_207", name: "(Faded) Replica Albinosas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 594, mDef: 594, material: "Leather" }, +{ itemId: 501208, className: "HAND01_208", name: "(Faded) Replica Tajtanas Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 792, mDef: 396, material: "Iron" }, +{ itemId: 501209, className: "HAND01_209", name: "(Faded) Replica Oksinis Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 460, mDef: 921, material: "Cloth" }, +{ itemId: 501210, className: "HAND01_210", name: "(Faded) Replica Kaulas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 691, mDef: 691, material: "Leather" }, +{ itemId: 501211, className: "HAND01_211", name: "(Faded) Replica Krisius Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 921, mDef: 460, material: "Iron" }, +{ itemId: 501999, className: "HAND01_999", name: "Finger", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Gloves", minLevel: 1, equipExpGroup: "Equip", def: 12, mDef: 12, material: "Leather" }, +{ itemId: 502101, className: "HAND02_101", name: "Carpenter Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 502104, className: "HAND02_104", name: "Zalia Leather Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 453, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 502105, className: "HAND02_105", name: "Prova Gloves", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", addMAtk: 5, def: 72, mDef: 144, material: "Cloth" }, +{ itemId: 502106, className: "HAND02_106", name: "Studded Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", pAtk: 5, def: 108, mDef: 108, material: "Leather" }, +{ itemId: 502107, className: "HAND02_107", name: "Insect Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 144, mDef: 72, material: "Iron" }, +{ itemId: 502109, className: "HAND02_109", name: "Red Veris Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 502111, className: "HAND02_111", name: "Magnus Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 786, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", addMAtk: 8, def: 128, mDef: 256, material: "Cloth" }, +{ itemId: 502113, className: "HAND02_113", name: "Drake Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Leather" }, +{ itemId: 502114, className: "HAND02_114", name: "Silver Plate Gauntlets", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 3862, sellPrice: 772, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 256, mDef: 128, material: "Iron", darkRes: 10 }, +{ itemId: 502115, className: "HAND02_115", name: "Wild Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 110, equipType1: "Gloves", minLevel: 1, equipExpGroup: "Equip", def: 14, mDef: 14, material: "Leather" }, +{ itemId: 502116, className: "FOOT02_115", name: "Superior Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 180, sellPrice: 259, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 14, mDef: 14, material: "Leather" }, +{ itemId: 502117, className: "HAND02_117", name: "Capria Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 502121, className: "HAND02_121", name: "Archon Hands", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 502122, className: "HAND02_122", name: "Nepenthes Gloves", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 32, mDef: 64, material: "Cloth" }, +{ itemId: 502123, className: "HAND02_123", name: "Cafrisun Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 502124, className: "HAND02_124", name: "Dio Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 180, sellPrice: 110, equipType1: "Gloves", minLevel: 1, equipExpGroup: "Equip", addMAtk: 1, def: 9, mDef: 19, material: "Cloth" }, +{ itemId: 502125, className: "HAND02_125", name: "Dio Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 110, equipType1: "Gloves", minLevel: 1, equipExpGroup: "Equip", def: 14, mDef: 14, material: "Leather" }, +{ itemId: 502126, className: "HAND02_126", name: "Dio Chain Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 180, sellPrice: 55, equipType1: "Gloves", minLevel: 1, equipExpGroup: "Equip", def: 19, mDef: 9, material: "Iron" }, +{ itemId: 502127, className: "HAND02_127", name: "Thresh Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", addMAtk: 2, def: 32, mDef: 64, material: "Cloth" }, +{ itemId: 502128, className: "HAND02_128", name: "Thresh Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 502129, className: "HAND02_129", name: "Thresh Chain Gloves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 32, material: "Iron" }, +{ itemId: 502130, className: "HAND02_130", name: "Sestas Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", addMAtk: 3, def: 32, mDef: 64, material: "Cloth" }, +{ itemId: 502131, className: "HAND02_131", name: "Sestas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 502132, className: "HAND02_132", name: "Sestas Chain Gloves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 32, material: "Iron" }, +{ itemId: 502133, className: "HAND02_133", name: "Dratt Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", addMAtk: 5, def: 72, mDef: 144, material: "Cloth" }, +{ itemId: 502134, className: "HAND02_134", name: "Dratt Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 502135, className: "HAND02_135", name: "Dratt Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 144, mDef: 72, material: "Iron" }, +{ itemId: 502136, className: "HAND02_136", name: "Aston Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", addMAtk: 6, def: 72, mDef: 144, material: "Cloth" }, +{ itemId: 502137, className: "HAND02_137", name: "Aston Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 502138, className: "HAND02_138", name: "Aston Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 144, mDef: 72, material: "Iron" }, +{ itemId: 502139, className: "HAND02_139", name: "Devi Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", addMAtk: 8, def: 128, mDef: 256, material: "Cloth" }, +{ itemId: 502140, className: "HAND02_140", name: "Devi Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Leather" }, +{ itemId: 502141, className: "HAND02_141", name: "Devi Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 826, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 256, mDef: 128, material: "Iron" }, +{ itemId: 502142, className: "HAND02_142", name: "Prima Gloves", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 3862, sellPrice: 1228, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", addMAtk: 11, def: 128, mDef: 256, material: "Cloth" }, +{ itemId: 502143, className: "HAND02_143", name: "Prima Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 1228, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Leather" }, +{ itemId: 502144, className: "HAND02_144", name: "Prima Gauntlets", type: "Equip", group: "Armor", weight: 66, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 256, mDef: 128, material: "Iron" }, +{ itemId: 502145, className: "HAND02_145", name: "Tomb Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", addMAtk: 10, def: 128, mDef: 256, material: "Cloth" }, +{ itemId: 502146, className: "HAND02_146", name: "Tomb Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Leather" }, +{ itemId: 502147, className: "HAND02_147", name: "Tomb Gauntlets", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 256, mDef: 128, material: "Iron" }, +{ itemId: 502153, className: "HAND02_153", name: "Watcher Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 327, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 502154, className: "HAND02_154", name: "Earth Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 1638, sellPrice: 772, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", addMAtk: 6, def: 72, mDef: 144, material: "Cloth" }, +{ itemId: 502155, className: "HAND02_155", name: "Leather Earth Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 772, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", addMinAtk: 4, def: 108, mDef: 108, material: "Leather" }, +{ itemId: 502156, className: "HAND02_156", name: "Earth Plate Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 772, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 144, mDef: 72, material: "Iron" }, +{ itemId: 502157, className: "HAND02_157", name: "Legwyn Family Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 200, mDef: 400, material: "Cloth" }, +{ itemId: 502158, className: "HAND02_158", name: "Legwyn Family Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 300, material: "Leather" }, +{ itemId: 502159, className: "HAND02_159", name: "Legwyn Family Plate Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", pAtk: 5, def: 400, mDef: 200, material: "Iron" }, +{ itemId: 502160, className: "HAND02_160", name: "Ogva Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 32, mDef: 64, material: "Cloth" }, +{ itemId: 502161, className: "HAND02_161", name: "Ogva Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 502162, className: "HAND02_162", name: "Ogva Chain Gloves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 32, material: "Iron" }, +{ itemId: 502163, className: "HAND02_163", name: "Partis Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 32, mDef: 64, material: "Cloth" }, +{ itemId: 502164, className: "HAND02_164", name: "Partis Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 502165, className: "HAND02_165", name: "Partis Ring Gloves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 32, material: "Iron" }, +{ itemId: 502166, className: "HAND02_166", name: "Sirdgela Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 72, mDef: 144, material: "Cloth" }, +{ itemId: 502167, className: "HAND02_167", name: "Sirdgela Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 502168, className: "HAND02_168", name: "Sirdgela Scale Gloves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 144, mDef: 72, material: "Iron" }, +{ itemId: 502169, className: "HAND02_169", name: "Philis Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 72, mDef: 144, material: "Cloth" }, +{ itemId: 502170, className: "HAND02_170", name: "Philis Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 502171, className: "HAND02_171", name: "Philis Scale Gloves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 144, mDef: 72, material: "Iron" }, +{ itemId: 502172, className: "HAND02_172", name: "Allerno Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 128, mDef: 256, material: "Cloth" }, +{ itemId: 502173, className: "HAND02_173", name: "Allerno Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Leather" }, +{ itemId: 502174, className: "HAND02_174", name: "Allerno Plate Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 256, mDef: 128, material: "Iron" }, +{ itemId: 502175, className: "HAND02_175", name: "Perelin Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 128, mDef: 256, material: "Cloth" }, +{ itemId: 502176, className: "HAND02_176", name: "Perelin Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Leather" }, +{ itemId: 502177, className: "HAND02_177", name: "Perelin Plate Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 256, mDef: 128, material: "Iron" }, +{ itemId: 502178, className: "HAND02_178", name: "Turn Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1215, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 200, mDef: 400, material: "Cloth" }, +{ itemId: 502179, className: "HAND02_179", name: "Turn Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 6984, sellPrice: 1215, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 300, material: "Leather" }, +{ itemId: 502180, className: "HAND02_180", name: "Turn Plate Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 6984, sellPrice: 1215, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 400, mDef: 200, material: "Iron" }, +{ itemId: 502181, className: "HAND02_181", name: "Shaton Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1228, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 200, mDef: 400, material: "Cloth" }, +{ itemId: 502182, className: "HAND02_182", name: "Shaton Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 6984, sellPrice: 1228, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 300, material: "Leather" }, +{ itemId: 502183, className: "HAND02_183", name: "Shaton Plate Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 6984, sellPrice: 1228, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 400, mDef: 200, material: "Iron" }, +{ itemId: 502184, className: "HAND02_184", name: "Tyla Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 10913, sellPrice: 1937, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 280, mDef: 560, material: "Cloth" }, +{ itemId: 502185, className: "HAND02_185", name: "Tyla Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 10913, sellPrice: 1937, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 420, mDef: 420, material: "Leather" }, +{ itemId: 502186, className: "HAND02_186", name: "Tyla Plate Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 10913, sellPrice: 1937, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 560, mDef: 280, material: "Iron" }, +{ itemId: 502188, className: "HAND02_188", name: "Elkosh Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 360, mDef: 720, material: "Cloth" }, +{ itemId: 502189, className: "HAND02_189", name: "Ibre Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 540, mDef: 540, material: "Leather" }, +{ itemId: 502190, className: "HAND02_190", name: "Grynas Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 720, mDef: 360, material: "Iron" }, +{ itemId: 502200, className: "HAND02_200", name: "Valtas Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 360, mDef: 720, material: "Cloth" }, +{ itemId: 502201, className: "HAND02_201", name: "Valtas Leather Gloves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 540, mDef: 540, material: "Leather" }, +{ itemId: 502202, className: "HAND02_202", name: "Valtas Plate Gauntlents", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 720, mDef: 360, material: "Iron" }, +{ itemId: 502203, className: "HAND02_203", name: "Oghma Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 720, mDef: 360, material: "Iron" }, +{ itemId: 502204, className: "HAND02_204", name: "Demonas Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 720, mDef: 360, material: "Iron" }, +{ itemId: 502205, className: "HAND02_205", name: "Hasta Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 440, mDef: 880, material: "Cloth" }, +{ itemId: 502206, className: "HAND02_206", name: "Hasta Leather Gloves", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 660, mDef: 660, material: "Leather" }, +{ itemId: 502207, className: "HAND02_207", name: "Hasta Plate Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 880, mDef: 440, material: "Iron" }, +{ itemId: 502208, className: "HAND02_208", name: "Manahas Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 660, mDef: 660, material: "Leather", iceRes: 15 }, +{ itemId: 502209, className: "HAND02_209", name: "(Faded) Kalinis Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 440, mDef: 880, material: "Cloth" }, +{ itemId: 502210, className: "HAND02_210", name: "(Faded) Albinosas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 660, mDef: 660, material: "Leather" }, +{ itemId: 502211, className: "HAND02_211", name: "(Faded) Tajtanas Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 880, mDef: 440, material: "Iron" }, +{ itemId: 502212, className: "HAND02_212", name: "(Faded) Oksinis Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 512, mDef: 1024, material: "Cloth" }, +{ itemId: 502213, className: "HAND02_213", name: "(Faded) Kaulas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 768, mDef: 768, material: "Leather" }, +{ itemId: 502214, className: "HAND02_214", name: "(Faded) Krisius Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 1024, mDef: 512, material: "Iron" }, +{ itemId: 502215, className: "HAND02_215", name: "Alpra Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 200, mDef: 400, material: "Cloth" }, +{ itemId: 502216, className: "HAND02_216", name: "Eastern Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 300, material: "Leather" }, +{ itemId: 502217, className: "HAND02_217", name: "Pangle Plate Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 400, mDef: 200, material: "Iron" }, +{ itemId: 502218, className: "HAND02_218", name: "War Mage Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 280, mDef: 560, material: "Cloth" }, +{ itemId: 502219, className: "HAND02_219", name: "Eaglestar Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 420, mDef: 420, material: "Leather" }, +{ itemId: 502220, className: "HAND02_220", name: "Nyx Knight Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 560, mDef: 280, material: "Iron" }, +{ itemId: 502221, className: "HAND02_221", name: "Marone Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 128, mDef: 256, material: "Cloth" }, +{ itemId: 502222, className: "HAND02_222", name: "Prakeh Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 360, mDef: 720, material: "Cloth" }, +{ itemId: 502223, className: "HAND02_223", name: "Razna Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Leather" }, +{ itemId: 502224, className: "HAND02_224", name: "Keyarc Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 540, mDef: 540, material: "Leather" }, +{ itemId: 502225, className: "HAND02_225", name: "Barghar Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 256, mDef: 128, material: "Iron" }, +{ itemId: 502226, className: "HAND02_226", name: "Suurit Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 720, mDef: 360, material: "Iron" }, +{ itemId: 502227, className: "HAND02_227", name: "Kalinis Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 440, mDef: 880, material: "Cloth" }, +{ itemId: 502228, className: "HAND02_228", name: "Albinosas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 660, mDef: 660, material: "Leather" }, +{ itemId: 502229, className: "HAND02_229", name: "Tajtanas Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 880, mDef: 440, material: "Iron" }, +{ itemId: 502230, className: "HAND02_230", name: "Oksinis Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 512, mDef: 1024, material: "Cloth" }, +{ itemId: 502231, className: "HAND02_231", name: "Kaulas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 768, mDef: 768, material: "Leather" }, +{ itemId: 502232, className: "HAND02_232", name: "Krisius Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 1024, mDef: 512, material: "Iron" }, +{ itemId: 502233, className: "HAND02_233", name: "Irellis Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", def: 568, mDef: 1136, material: "Cloth" }, +{ itemId: 502234, className: "HAND02_234", name: "Jevenellis Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", def: 852, mDef: 852, material: "Leather" }, +{ itemId: 502235, className: "HAND02_235", name: "Basticle Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", def: 1136, mDef: 568, material: "Iron" }, +{ itemId: 502236, className: "HAND02_236", name: "Planeta Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 616, mDef: 1232, material: "Cloth" }, +{ itemId: 502237, className: "HAND02_237", name: "Ukas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 924, mDef: 924, material: "Leather" }, +{ itemId: 502238, className: "HAND02_238", name: "Galaktikos Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 1232, mDef: 616, material: "Iron" }, +{ itemId: 502239, className: "HAND02_239", name: "Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 648, mDef: 1296, material: "Cloth" }, +{ itemId: 502240, className: "HAND02_240", name: "Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 972, mDef: 972, material: "Leather" }, +{ itemId: 502241, className: "HAND02_241", name: "Akmo Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1296, mDef: 648, material: "Iron" }, +{ itemId: 503101, className: "HAND03_101", name: "Vubbe Fighter Gauntlets", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Gloves", minLevel: 15, equipExpGroup: "Equip", def: 52, mDef: 52, material: "Leather" }, +{ itemId: 503102, className: "HAND03_102", name: "Shield Crasher", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Gloves", minLevel: 40, equipExpGroup: "Equip", def: 118, mDef: 118, material: "Leather" }, +{ itemId: 503103, className: "HAND03_103", name: "Vine Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 786, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 140, mDef: 281, material: "Cloth" }, +{ itemId: 503105, className: "HAND03_105", name: "Soul Chaser Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 3862, sellPrice: 1203, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", addMinAtk: 16, def: 211, mDef: 211, material: "Leather" }, +{ itemId: 503106, className: "HAND03_106", name: "Bone Gauntlets", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 281, mDef: 140, material: "Iron" }, +{ itemId: 503107, className: "HAND03_107", name: "Shade Hands", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 211, mDef: 211, material: "Leather", holyRes: -26 }, +{ itemId: 503111, className: "HAND03_111", name: "Roxona Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", pAtk: 5, def: 308, mDef: 616, material: "Cloth" }, +{ itemId: 503112, className: "HAND03_112", name: "Roxona Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 462, mDef: 462, material: "Leather" }, +{ itemId: 503113, className: "HAND03_113", name: "Roxona Plate Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 616, mDef: 308, material: "Iron" }, +{ itemId: 503114, className: "HAND03_114", name: "Virtov Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 396, mDef: 792, material: "Cloth" }, +{ itemId: 503115, className: "HAND03_115", name: "Virtov Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", pAtk: 19, def: 594, mDef: 594, material: "Leather" }, +{ itemId: 503116, className: "HAND03_116", name: "Virtov Plate Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 792, mDef: 396, material: "Iron" }, +{ itemId: 503130, className: "HAND03_130", name: "Newt Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 484, mDef: 968, material: "Cloth" }, +{ itemId: 503131, className: "HAND03_131", name: "Newt Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", pAtk: 19, def: 726, mDef: 726, material: "Leather" }, +{ itemId: 503132, className: "HAND03_132", name: "Newt Plate Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 968, mDef: 484, material: "Iron" }, +{ itemId: 503201, className: "HAND03_201", name: "Swift Oghma Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 18000, sellPrice: 3672, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 968, mDef: 484, material: "Iron" }, +{ itemId: 503202, className: "HAND03_202", name: "Dehvlin Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 18000, sellPrice: 3672, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 968, mDef: 484, material: "Iron" }, +{ itemId: 503301, className: "HAND03_301", name: "(Faded) Alpra Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 220, mDef: 440, material: "Cloth" }, +{ itemId: 503302, className: "HAND03_302", name: "(Faded) Eastern Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", addMinAtk: 27, addMaxAtk: 52, def: 330, mDef: 330, material: "Leather" }, +{ itemId: 503303, className: "HAND03_303", name: "(Faded) Pangle Plate Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", addMinAtk: 20, addMaxAtk: 43, def: 440, mDef: 220, material: "Iron" }, +{ itemId: 503304, className: "HAND03_304", name: "(Faded) War Mage Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 308, mDef: 616, material: "Cloth" }, +{ itemId: 503305, className: "HAND03_305", name: "(Faded) Eaglestar Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 462, mDef: 462, material: "Leather" }, +{ itemId: 503306, className: "HAND03_306", name: "(Faded) Nyx Knight Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 616, mDef: 308, material: "Iron" }, +{ itemId: 503307, className: "HAND03_307", name: "(Faded) Marone Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 140, mDef: 281, material: "Cloth" }, +{ itemId: 503308, className: "HAND03_308", name: "(Faded) Prakeh Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 396, mDef: 792, material: "Cloth" }, +{ itemId: 503309, className: "HAND03_309", name: "(Faded) Razna Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 211, mDef: 211, material: "Leather", darkRes: 20 }, +{ itemId: 503310, className: "HAND03_310", name: "(Faded) Keyarc Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 594, mDef: 594, material: "Leather" }, +{ itemId: 503311, className: "HAND03_311", name: "(Faded) Barghar Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 281, mDef: 140, material: "Iron" }, +{ itemId: 503312, className: "HAND03_312", name: "(Faded) Suurit Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 792, mDef: 396, material: "Iron" }, +{ itemId: 503313, className: "HAND03_313", name: "(Faded) Vienti Kalinis Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 484, mDef: 968, material: "Cloth" }, +{ itemId: 503314, className: "HAND03_314", name: "(Faded) Vienti Albinosas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 726, mDef: 726, material: "Leather" }, +{ itemId: 503315, className: "HAND03_315", name: "(Faded) Vienti Tajtanas Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 968, mDef: 484, material: "Iron" }, +{ itemId: 503316, className: "HAND03_316", name: "(Faded) Vienti Oksinis Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 563, mDef: 1126, material: "Cloth" }, +{ itemId: 503317, className: "HAND03_317", name: "(Faded) Vienti Kaulas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 844, mDef: 844, material: "Leather" }, +{ itemId: 503318, className: "HAND03_318", name: "(Faded) Vienti Krisius Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 1126, mDef: 563, material: "Iron" }, +{ itemId: 503319, className: "HAND03_319", name: "Berthas Alpra Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 220, mDef: 440, material: "Cloth" }, +{ itemId: 503320, className: "HAND03_320", name: "Berthas Eastern Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 330, mDef: 330, material: "Leather" }, +{ itemId: 503321, className: "HAND03_321", name: "Berthas Pangle Plate Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 440, mDef: 220, material: "Iron" }, +{ itemId: 503322, className: "HAND03_322", name: "Berthas Warmage Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 308, mDef: 616, material: "Cloth" }, +{ itemId: 503323, className: "HAND03_323", name: "Berthas Eaglestar Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 462, mDef: 462, material: "Leather" }, +{ itemId: 503324, className: "HAND03_324", name: "Berthas Nyx Knight Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 616, mDef: 308, material: "Iron" }, +{ itemId: 503325, className: "HAND03_325", name: "Berthas Marone Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 140, mDef: 281, material: "Cloth" }, +{ itemId: 503326, className: "HAND03_326", name: "Berthas Prakeh Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 396, mDef: 792, material: "Cloth" }, +{ itemId: 503327, className: "HAND03_327", name: "Berthas Razna Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 211, mDef: 211, material: "Leather" }, +{ itemId: 503328, className: "HAND03_328", name: "Berthas Keyarc Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 594, mDef: 594, material: "Leather" }, +{ itemId: 503329, className: "HAND03_329", name: "Berthas Barghar Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 281, mDef: 140, material: "Iron" }, +{ itemId: 503330, className: "HAND03_330", name: "Berthas Suurit Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 792, mDef: 396, material: "Iron" }, +{ itemId: 503331, className: "HAND03_331", name: "Berthas Kalinis Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 484, mDef: 968, material: "Cloth" }, +{ itemId: 503332, className: "HAND03_332", name: "Berthas Albinosas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 726, mDef: 726, material: "Leather" }, +{ itemId: 503333, className: "HAND03_333", name: "Berthas Tajtanas Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 968, mDef: 484, material: "Iron" }, +{ itemId: 503334, className: "HAND03_334", name: "Berthas Oksinis Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 563, mDef: 1126, material: "Cloth" }, +{ itemId: 503335, className: "HAND03_335", name: "Berthas Kaulas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 844, mDef: 844, material: "Leather" }, +{ itemId: 503336, className: "HAND03_336", name: "Berthas Krisius Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 1126, mDef: 563, material: "Iron" }, +{ itemId: 503337, className: "HAND03_337", name: "Berthas Irellis Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", def: 624, mDef: 1249, material: "Cloth" }, +{ itemId: 503338, className: "HAND03_338", name: "Berthas Jevenellis Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", def: 937, mDef: 937, material: "Leather" }, +{ itemId: 503339, className: "HAND03_339", name: "Berthas Basticle Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", def: 1249, mDef: 624, material: "Iron" }, +{ itemId: 503340, className: "HAND03_340", name: "Berthas Planeta Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 677, mDef: 1355, material: "Cloth" }, +{ itemId: 503341, className: "HAND03_341", name: "Berthas Ukas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 1016, mDef: 1016, material: "Leather" }, +{ itemId: 503342, className: "HAND03_342", name: "Berthas Galaktikos Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 1355, mDef: 677, material: "Iron" }, +{ itemId: 503343, className: "HAND03_343", name: "Berthas Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 712, mDef: 1425, material: "Cloth" }, +{ itemId: 503344, className: "HAND03_344", name: "Berthas Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1069, mDef: 1069, material: "Leather" }, +{ itemId: 503345, className: "HAND03_345", name: "Berthas Akmo Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1425, mDef: 712, material: "Iron" }, +{ itemId: 503346, className: "HAND03_346", name: "Berthas Dysnai Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, equipExpGroup: "Equip", def: 765, mDef: 1531, material: "Cloth" }, +{ itemId: 503347, className: "HAND03_347", name: "Berthas Dysnai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, equipExpGroup: "Equip", def: 1148, mDef: 1148, material: "Leather" }, +{ itemId: 503348, className: "HAND03_348", name: "Berthas Dysnai Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, equipExpGroup: "Equip", def: 1531, mDef: 765, material: "Iron" }, +{ itemId: 504106, className: "HAND04_106", name: "Lolopanther Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", addMAtk: 24, def: 704, mDef: 1408, material: "Cloth" }, +{ itemId: 504107, className: "HAND04_107", name: "Lolopanther Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 1056, mDef: 1056, material: "Leather" }, +{ itemId: 504108, className: "HAND04_108", name: "Lolopanther Plate Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", pAtk: 21, def: 1408, mDef: 704, material: "Iron" }, +{ itemId: 504109, className: "HAND04_109", name: "Solmiki Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 5828, equipType1: "Gloves", minLevel: 330, equipExpGroup: "Equip", addMAtk: 36, def: 857, mDef: 1715, material: "Cloth" }, +{ itemId: 504110, className: "HAND04_110", name: "Solmiki Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 5828, equipType1: "Gloves", minLevel: 330, equipExpGroup: "Equip", def: 1286, mDef: 1286, material: "Leather" }, +{ itemId: 504111, className: "HAND04_111", name: "Solmiki Plate Gauntlets", type: "Equip", group: "Armor", weight: 65, maxStack: 1, price: 21960, sellPrice: 5828, equipType1: "Gloves", minLevel: 330, equipExpGroup: "Equip", pAtk: 31, def: 1715, mDef: 857, material: "Iron" }, +{ itemId: 504112, className: "HAND04_112", name: "Sausis Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", pAtk: 57, def: 1420, mDef: 710, material: "Iron" }, +{ itemId: 504113, className: "HAND04_113", name: "Primus Alpra Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 250, mDef: 500, material: "Cloth" }, +{ itemId: 504114, className: "HAND04_114", name: "Primus Eastern Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 375, mDef: 375, material: "Leather" }, +{ itemId: 504115, className: "HAND04_115", name: "Primus Pangle Plate Gloves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 500, mDef: 250, material: "Iron" }, +{ itemId: 504116, className: "HAND04_116", name: "Primus Warmage Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 350, mDef: 700, material: "Cloth" }, +{ itemId: 504117, className: "HAND03_117", name: "Intasurta Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 396, mDef: 792, material: "Cloth", holyRes: -144 }, +{ itemId: 504118, className: "HAND04_118", name: "Primus Nyx Knight Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 700, mDef: 350, material: "Iron" }, +{ itemId: 504119, className: "HAND04_119", name: "Primus Marone Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 160, mDef: 320, material: "Cloth" }, +{ itemId: 504120, className: "HAND04_120", name: "Primus Prakeh Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 450, mDef: 900, material: "Cloth" }, +{ itemId: 504121, className: "HAND04_121", name: "Primus Razna Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 240, mDef: 240, material: "Leather" }, +{ itemId: 504122, className: "HAND04_122", name: "Primus Keyarc Leather Gloves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 675, mDef: 675, material: "Leather" }, +{ itemId: 504123, className: "HAND04_123", name: "Primus Barghar Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Gloves", minLevel: 75, equipExpGroup: "Equip", def: 320, mDef: 160, material: "Iron" }, +{ itemId: 504124, className: "HAND04_124", name: "Primus Suurit Plate Gauntlets", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, equipExpGroup: "Equip", def: 900, mDef: 450, material: "Iron" }, +{ itemId: 504125, className: "HAND04_125", name: "Primus Kalinis Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 550, mDef: 1100, material: "Cloth" }, +{ itemId: 504126, className: "HAND04_126", name: "Primus Albinosas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 825, mDef: 825, material: "Leather" }, +{ itemId: 504127, className: "HAND04_127", name: "Primus Tajtanas Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 1100, mDef: 550, material: "Iron" }, +{ itemId: 504128, className: "HAND04_128", name: "Primus Oksinis Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 640, mDef: 1280, material: "Cloth" }, +{ itemId: 504129, className: "HAND04_129", name: "Primus Kaulas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 960, mDef: 960, material: "Leather" }, +{ itemId: 504130, className: "HAND04_130", name: "Primus Krisius Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 1280, mDef: 640, material: "Iron" }, +{ itemId: 504131, className: "HAND04_131", name: "Primus Irellis Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", def: 710, mDef: 1420, material: "Cloth" }, +{ itemId: 504132, className: "HAND04_132", name: "Primus Jevenellis Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", def: 1065, mDef: 1065, material: "Leather" }, +{ itemId: 504133, className: "HAND04_133", name: "Primus Basticle Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", def: 1420, mDef: 710, material: "Iron" }, +{ itemId: 504134, className: "HAND04_134", name: "Laitas Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", addMAtk: 78, def: 710, mDef: 1420, material: "Cloth" }, +{ itemId: 504135, className: "HAND04_135", name: "Fietas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", def: 1065, mDef: 1065, material: "Leather" }, +{ itemId: 504136, className: "HAND04_136", name: "Ausura Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", def: 1420, mDef: 710, material: "Iron" }, +{ itemId: 504137, className: "HAND04_117", name: "Primus Eaglestar Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Gloves", minLevel: 170, equipExpGroup: "Equip", def: 525, mDef: 525, material: "Leather" }, +{ itemId: 504138, className: "HAND04_137", name: "Primus Planeta Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 770, mDef: 1540, material: "Cloth" }, +{ itemId: 504139, className: "HAND04_138", name: "Primus Ukas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 1155, material: "Leather" }, +{ itemId: 504140, className: "HAND04_139", name: "Primus Galaktikos Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 1540, mDef: 770, material: "Iron" }, +{ itemId: 504141, className: "HAND04_140", name: "Ignas Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 770, mDef: 1540, material: "Cloth" }, +{ itemId: 504142, className: "HAND04_141", name: "Ignas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 1155, material: "Leather" }, +{ itemId: 504143, className: "HAND04_142", name: "Ignas Plate Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 1540, mDef: 770, material: "Iron" }, +{ itemId: 504144, className: "HAND04_144", name: "Primus Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 810, mDef: 1620, material: "Cloth" }, +{ itemId: 504145, className: "HAND04_145", name: "Primus Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 1215, material: "Leather" }, +{ itemId: 504146, className: "HAND04_146", name: "Primus Akmo Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1620, mDef: 810, material: "Iron" }, +{ itemId: 504147, className: "HAND04_147", name: "Skiaclipse Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", addMAtk: 145, def: 810, mDef: 1620, material: "Cloth" }, +{ itemId: 504148, className: "HAND04_148", name: "Skiaclipse Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 1215, material: "Leather" }, +{ itemId: 504149, className: "HAND04_149", name: "Skiaclipse Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1620, mDef: 810, material: "Iron", slashDef: 596 }, +{ itemId: 504150, className: "HAND04_150", name: "Skiaclipse Gloves - Compassion", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 810, mDef: 1620, addMDef: 160, material: "Cloth" }, +{ itemId: 504151, className: "HAND04_151", name: "Skiaclipse Leather Gloves - Assault", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", pAtk: 145, addMAtk: 145, def: 1215, mDef: 1215, material: "Leather" }, +{ itemId: 504152, className: "HAND04_152", name: "Skiaclipse Plate Gauntlet - Iron Wall", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1620, mDef: 810, material: "Iron" }, +{ itemId: 504153, className: "HAND04_153", name: "Moringponia Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1620, mDef: 810, material: "Iron" }, +{ itemId: 504154, className: "HAND04_154", name: "Moringponia Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 810, mDef: 1620, material: "Cloth" }, +{ itemId: 504155, className: "HAND04_155", name: "Moringponia Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 1215, material: "Leather" }, +{ itemId: 504156, className: "HAND04_156", name: "Misrus Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1620, mDef: 810, material: "Iron" }, +{ itemId: 504157, className: "HAND04_157", name: "Misrus Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 810, mDef: 1620, material: "Cloth" }, +{ itemId: 504158, className: "HAND04_158", name: "Misrus Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 1215, material: "Leather" }, +{ itemId: 504159, className: "HAND04_159", name: "Primus Dysnai Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, equipExpGroup: "Equip", def: 870, mDef: 1740, material: "Cloth" }, +{ itemId: 504160, className: "HAND04_160", name: "Primus Dysnai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, equipExpGroup: "Equip", def: 1305, mDef: 1305, material: "Leather" }, +{ itemId: 504161, className: "HAND04_161", name: "Primus Dysnai Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, equipExpGroup: "Equip", def: 1740, mDef: 870, material: "Iron" }, +{ itemId: 505101, className: "HAND05_101", name: "Velcoffer Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 360, equipExpGroup: "Equip", def: 934, mDef: 1868, material: "Cloth" }, +{ itemId: 505102, className: "HAND05_102", name: "Velcoffer Leather Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 360, equipExpGroup: "Equip", def: 1401, mDef: 1401, material: "Leather" }, +{ itemId: 505103, className: "HAND05_103", name: "Velcoffer Plate Gauntlets", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 360, equipExpGroup: "Equip", def: 1868, mDef: 934, material: "Iron" }, +{ itemId: 505104, className: "HAND05_104", name: "Velcoffer Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 360, equipExpGroup: "Equip", def: 934, mDef: 1868, material: "Cloth" }, +{ itemId: 505105, className: "HAND05_105", name: "Velcoffer Leather Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 360, equipExpGroup: "Equip", def: 1401, mDef: 1401, material: "Leather" }, +{ itemId: 505106, className: "HAND05_106", name: "Velcoffer Plate Gauntlets", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 360, equipExpGroup: "Equip", def: 1868, mDef: 934, material: "Iron" }, +{ itemId: 505107, className: "HAND05_107", name: "Savinose Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth" }, +{ itemId: 505108, className: "HAND05_108", name: "Savinose Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather" }, +{ itemId: 505109, className: "HAND05_109", name: "Savinose Akmo Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron" }, +{ itemId: 505110, className: "HAND05_110", name: "Skiaclipse Varna Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron" }, +{ itemId: 505111, className: "HAND05_111", name: "Skiaclipse Varna Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather" }, +{ itemId: 505112, className: "HAND05_112", name: "Skiaclipse Varna Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth" }, +{ itemId: 511101, className: "FOOT01_101", name: "Light Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 12, mDef: 12, material: "Leather" }, +{ itemId: 511102, className: "FOOT01_102", name: "Quilted Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 12, mDef: 12, material: "Leather" }, +{ itemId: 511103, className: "FOOT01_103", name: "Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 110, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 12, mDef: 12, material: "Leather" }, +{ itemId: 511104, className: "FOOT01_104", name: "Hard Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 43, mDef: 43, material: "Leather" }, +{ itemId: 511105, className: "FOOT01_105", name: "Chain Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 57, mDef: 28, material: "Iron" }, +{ itemId: 511106, className: "FOOT01_106", name: "Mark Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 453, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 97, mDef: 97, material: "Leather" }, +{ itemId: 511107, className: "FOOT01_107", name: "Forest Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 97, mDef: 97, material: "Leather" }, +{ itemId: 511108, className: "FOOT01_108", name: "Grima Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 64, mDef: 129, material: "Cloth" }, +{ itemId: 511109, className: "FOOT01_109", name: "Veris Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 97, mDef: 97, material: "Leather" }, +{ itemId: 511110, className: "FOOT01_110", name: "Scale Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 129, mDef: 64, material: "Iron" }, +{ itemId: 511111, className: "FOOT01_111", name: "Forest Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 64, mDef: 129, material: "Cloth" }, +{ itemId: 511112, className: "FOOT01_112", name: "Klaida Greaves", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 129, mDef: 64, material: "Iron" }, +{ itemId: 511113, className: "FOOT01_113", name: "Hard Veris Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 3862, sellPrice: 786, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 172, mDef: 172, material: "Leather" }, +{ itemId: 511114, className: "FOOT01_114", name: "Superior Scale Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 786, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 230, mDef: 115, material: "Iron" }, +{ itemId: 511115, className: "FOOT01_115", name: "Regal Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 115, mDef: 230, material: "Cloth" }, +{ itemId: 511117, className: "FOOT01_117", name: "Miner's Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 12, mDef: 12, material: "Leather" }, +{ itemId: 511118, className: "FOOT01_118", name: "Old Hard Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 43, mDef: 43, material: "Leather" }, +{ itemId: 511119, className: "FOOT01_119", name: "Old Chain Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 57, mDef: 28, material: "Iron" }, +{ itemId: 511120, className: "FOOT01_120", name: "Old Steel Chain Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 270, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 129, mDef: 64, material: "Iron" }, +{ itemId: 511121, className: "FOOT01_121", name: "Brigandine Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 172, mDef: 172, material: "Leather" }, +{ itemId: 511122, className: "FOOT01_122", name: "Plate Greaves", type: "Equip", group: "Armor", weight: 66, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 230, mDef: 115, material: "Iron" }, +{ itemId: 511126, className: "FOOT01_126", name: "Acolyte Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 453, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 64, mDef: 129, material: "Cloth" }, +{ itemId: 511127, className: "FOOT01_127", name: "Steel Chain Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 453, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 129, mDef: 64, material: "Iron" }, { itemId: 511129, className: "FOOT01_129", name: "Dunkel Quilted Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Boots", minLevel: 1, def: 12, mDef: 12, material: "Leather" }, { itemId: 511130, className: "FOOT01_130", name: "Dunkel Cotton Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 28, mDef: 57, material: "Cloth" }, { itemId: 511131, className: "FOOT01_131", name: "Dunkel Hard Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 43, mDef: 43, material: "Leather" }, { itemId: 511132, className: "FOOT01_132", name: "Dunkel Ring Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 57, mDef: 28, material: "Iron" }, -{ itemId: 511133, className: "FOOT01_133", name: "Cotton Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 28, mDef: 57, material: "Cloth" }, -{ itemId: 511134, className: "FOOT01_134", name: "Ring Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 57, mDef: 28, material: "Iron" }, -{ itemId: 511135, className: "FOOT01_135", name: "Superior Regal Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, def: 115, mDef: 230, material: "Cloth" }, -{ itemId: 511136, className: "FOOT01_136", name: "Superior Brigandine Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, def: 172, mDef: 172, material: "Leather" }, -{ itemId: 511137, className: "FOOT01_137", name: "Full Plate Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, def: 230, mDef: 115, material: "Iron" }, -{ itemId: 511138, className: "FOOT01_138", name: "Fedimian Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Boots", minLevel: 120, def: 180, mDef: 360, material: "Cloth" }, -{ itemId: 511139, className: "FOOT01_139", name: "Fedimian Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Boots", minLevel: 120, def: 270, mDef: 270, material: "Leather" }, -{ itemId: 511140, className: "FOOT01_140", name: "Fedimian Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Boots", minLevel: 120, def: 360, mDef: 180, material: "Iron" }, -{ itemId: 511141, className: "FOOT01_141", name: "Magician Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1396, equipType1: "Boots", minLevel: 120, def: 180, mDef: 360, material: "Cloth" }, -{ itemId: 511142, className: "FOOT01_142", name: "Hunting Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Boots", minLevel: 120, def: 270, mDef: 270, material: "Leather" }, -{ itemId: 511143, className: "FOOT01_143", name: "Guard Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1396, equipType1: "Boots", minLevel: 120, def: 360, mDef: 180, material: "Iron" }, -{ itemId: 511144, className: "FOOT01_144", name: "Mage Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Boots", minLevel: 120, def: 180, mDef: 360, material: "Cloth" }, -{ itemId: 511145, className: "FOOT01_145", name: "Skirmisher Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Boots", minLevel: 120, def: 270, mDef: 270, material: "Leather" }, -{ itemId: 511146, className: "FOOT01_146", name: "Infantry Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Boots", minLevel: 120, def: 360, mDef: 180, material: "Iron" }, -{ itemId: 511147, className: "FOOT01_147", name: "Archmage Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 10913, sellPrice: 2213, equipType1: "Boots", minLevel: 170, def: 252, mDef: 504, material: "Cloth" }, -{ itemId: 511148, className: "FOOT01_148", name: "Superior Skirmisher Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 10913, sellPrice: 2213, equipType1: "Boots", minLevel: 170, def: 378, mDef: 378, material: "Leather" }, -{ itemId: 511149, className: "FOOT01_149", name: "Superior Infantry Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 10913, sellPrice: 2213, equipType1: "Boots", minLevel: 170, def: 504, mDef: 252, material: "Iron" }, -{ itemId: 511150, className: "FOOT01_150", name: "Librarian Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 2940, equipType1: "Boots", minLevel: 170, def: 252, mDef: 504, material: "Cloth" }, -{ itemId: 511151, className: "FOOT01_151", name: "Veteran Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 2940, equipType1: "Boots", minLevel: 170, def: 378, mDef: 378, material: "Leather" }, -{ itemId: 511152, className: "FOOT01_152", name: "Knight Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 10913, sellPrice: 2940, equipType1: "Boots", minLevel: 170, def: 504, mDef: 252, material: "Iron" }, -{ itemId: 511153, className: "FOOT01_153", name: "Superior Grima Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 3862, sellPrice: 786, equipType1: "Boots", minLevel: 75, def: 115, mDef: 230, material: "Cloth" }, -{ itemId: 511154, className: "FOOT01_154", name: "Royal Mage Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, def: 324, mDef: 648, material: "Cloth" }, -{ itemId: 511155, className: "FOOT01_155", name: "Bandit Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, def: 486, mDef: 486, material: "Leather" }, -{ itemId: 511156, className: "FOOT01_156", name: "Royal Guard Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, def: 648, mDef: 324, material: "Iron" }, -{ itemId: 511157, className: "FOOT01_157", name: "Superior Royal Mage Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, def: 324, mDef: 648, material: "Cloth" }, -{ itemId: 511158, className: "FOOT01_158", name: "Superior Bandit Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, def: 486, mDef: 486, material: "Leather" }, -{ itemId: 511159, className: "FOOT01_159", name: "Superior Royal Guard Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, def: 648, mDef: 324, material: "Iron" }, -{ itemId: 511201, className: "FOOT01_201", name: "Greytis Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 10913, sellPrice: 1950, equipType1: "Boots", minLevel: 170, def: 504, mDef: 252, material: "Iron" }, -{ itemId: 511202, className: "FOOT01_202", name: "Kovos Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 10913, sellPrice: 1950, equipType1: "Boots", minLevel: 170, def: 504, mDef: 252, material: "Iron" }, -{ itemId: 511203, className: "FOOT01_203", name: "Blint Shoes", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 396, mDef: 792, material: "Cloth" }, -{ itemId: 511204, className: "FOOT01_204", name: "Blint Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 594, mDef: 594, material: "Leather" }, -{ itemId: 511205, className: "FOOT01_205", name: "Blint Plate Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 792, mDef: 396, material: "Iron" }, -{ itemId: 511206, className: "FOOT01_206", name: "(Faded) Replica Kalinis Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, def: 396, mDef: 792, material: "Cloth" }, -{ itemId: 511207, className: "FOOT01_207", name: "(Faded) Replica Albinosas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, def: 594, mDef: 594, material: "Leather" }, -{ itemId: 511208, className: "FOOT01_208", name: "(Faded) Replica Tajtanas Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, def: 792, mDef: 396, material: "Iron" }, -{ itemId: 511209, className: "FOOT01_209", name: "(Faded) Replica Oksinis Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Boots", minLevel: 315, def: 460, mDef: 921, material: "Cloth" }, -{ itemId: 511210, className: "FOOT01_210", name: "(Faded) Replica Kaulas Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Boots", minLevel: 315, def: 691, mDef: 691, material: "Leather" }, -{ itemId: 511211, className: "FOOT01_211", name: "(Faded) Replica Krisius Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Boots", minLevel: 315, def: 921, mDef: 460, material: "Iron" }, -{ itemId: 512101, className: "FOOT02_101", name: "Kabra Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 180, sellPrice: 259, equipType1: "Boots", minLevel: 1, def: 14, mDef: 14, material: "Leather" }, -{ itemId: 512104, className: "FOOT02_104", name: "Zalia Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 512106, className: "FOOT02_106", name: "Studded Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 512107, className: "FOOT02_107", name: "Insect Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 144, mDef: 72, material: "Iron" }, -{ itemId: 512108, className: "FOOT02_108", name: "Protas Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 72, mDef: 144, material: "Cloth" }, -{ itemId: 512111, className: "FOOT02_111", name: "Magnus Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 853, equipType1: "Boots", minLevel: 75, def: 128, mDef: 256, material: "Cloth" }, -{ itemId: 512113, className: "FOOT02_113", name: "Drake Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, def: 192, mDef: 192, material: "Leather" }, -{ itemId: 512114, className: "FOOT02_114", name: "Silver Plate Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 3862, sellPrice: 826, equipType1: "Boots", minLevel: 75, def: 256, mDef: 128, material: "Iron", darkRes: 13 }, -{ itemId: 512119, className: "FOOT02_119", name: "Veyo Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 453, equipType1: "Boots", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 512120, className: "FOOT02_120", name: "Mien Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 512121, className: "FOOT02_121", name: "Ravinepede Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 72, mDef: 144, material: "Cloth" }, -{ itemId: 512122, className: "FOOT02_122", name: "Shnayim Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, def: 256, mDef: 128, material: "Iron", lightningRes: 18, earthRes: -14 }, -{ itemId: 512123, className: "FOOT02_123", name: "Cafrisun Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 512124, className: "FOOT02_124", name: "Dio Sandals", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 180, sellPrice: 55, equipType1: "Boots", minLevel: 1, addMAtk: 1, def: 9, mDef: 19, material: "Cloth" }, -{ itemId: 512125, className: "FOOT02_125", name: "Dio Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 110, equipType1: "Boots", minLevel: 1, def: 14, mDef: 14, material: "Leather" }, -{ itemId: 512126, className: "FOOT02_126", name: "Dio Chain Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 180, sellPrice: 55, equipType1: "Boots", minLevel: 1, def: 19, mDef: 9, material: "Iron" }, -{ itemId: 512127, className: "FOOT02_127", name: "Thresh Sandals", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, addMAtk: 2, def: 32, mDef: 64, material: "Cloth" }, -{ itemId: 512128, className: "FOOT02_128", name: "Thresh Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 512129, className: "FOOT02_129", name: "Thresh Chain Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 64, mDef: 32, material: "Iron" }, -{ itemId: 512130, className: "FOOT02_130", name: "Sestas Sandals", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, addMAtk: 3, def: 32, mDef: 64, material: "Cloth" }, -{ itemId: 512131, className: "FOOT02_131", name: "Sestas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 512132, className: "FOOT02_132", name: "Sestas Chain Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 64, mDef: 32, material: "Iron" }, -{ itemId: 512133, className: "FOOT02_133", name: "Dratt Sandals", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, addMAtk: 5, def: 72, mDef: 144, material: "Cloth" }, -{ itemId: 512134, className: "FOOT02_134", name: "Dratt Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 512135, className: "FOOT02_135", name: "Dratt Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 144, mDef: 72, material: "Iron" }, -{ itemId: 512136, className: "FOOT02_136", name: "Aston Sandals", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, addMAtk: 6, def: 72, mDef: 144, material: "Cloth" }, -{ itemId: 512137, className: "FOOT02_137", name: "Aston Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 512138, className: "FOOT02_138", name: "Aston Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 144, mDef: 72, material: "Iron" }, -{ itemId: 512139, className: "FOOT02_139", name: "Devi Sandals", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 3862, sellPrice: 826, equipType1: "Boots", minLevel: 75, addMAtk: 8, def: 128, mDef: 256, material: "Cloth" }, -{ itemId: 512140, className: "FOOT02_140", name: "Devi Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, def: 192, mDef: 192, material: "Leather" }, -{ itemId: 512141, className: "FOOT02_141", name: "Devi Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 826, equipType1: "Boots", minLevel: 75, def: 256, mDef: 128, material: "Iron" }, -{ itemId: 512142, className: "FOOT02_142", name: "Prima Sandals", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, addMAtk: 11, def: 128, mDef: 256, material: "Cloth" }, -{ itemId: 512143, className: "FOOT02_143", name: "Prima Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 1228, equipType1: "Boots", minLevel: 75, def: 192, mDef: 192, material: "Leather" }, -{ itemId: 512144, className: "FOOT02_144", name: "Prima Greaves", type: "Equip", group: "Armor", weight: 66, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, def: 256, mDef: 128, material: "Iron" }, -{ itemId: 512148, className: "FOOT02_148", name: "Walker", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 180, sellPrice: 110, equipType1: "Boots", minLevel: 1, def: 9, mDef: 19, material: "Cloth" }, -{ itemId: 512153, className: "FOOT02_153", name: "Watcher Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 327, equipType1: "Boots", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 512154, className: "FOOT02_154", name: "Earth Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 1638, sellPrice: 772, equipType1: "Boots", minLevel: 40, def: 72, mDef: 144, material: "Cloth" }, -{ itemId: 512155, className: "FOOT02_155", name: "Leather Earth Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 772, equipType1: "Boots", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 512156, className: "FOOT02_156", name: "Earth Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 772, equipType1: "Boots", minLevel: 40, def: 144, mDef: 72, material: "Iron" }, -{ itemId: 512157, className: "FOOT02_157", name: "Legwyn Family Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Boots", minLevel: 120, def: 200, mDef: 400, material: "Cloth" }, -{ itemId: 512158, className: "FOOT02_158", name: "Legwyn Family Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Boots", minLevel: 120, def: 300, mDef: 300, material: "Leather" }, -{ itemId: 512159, className: "FOOT02_159", name: "Legwyn Family Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Boots", minLevel: 120, def: 400, mDef: 200, material: "Iron" }, -{ itemId: 512160, className: "FOOT02_160", name: "Ogva Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 32, mDef: 64, material: "Cloth" }, -{ itemId: 512161, className: "FOOT02_161", name: "Ogva Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 512162, className: "FOOT02_162", name: "Ogva Chain Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 64, mDef: 32, material: "Iron" }, -{ itemId: 512163, className: "FOOT02_163", name: "Partis Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 32, mDef: 64, material: "Cloth" }, -{ itemId: 512164, className: "FOOT02_164", name: "Partis Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 48, mDef: 48, material: "Leather" }, -{ itemId: 512165, className: "FOOT02_165", name: "Partis Ring Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, def: 64, mDef: 32, material: "Iron" }, -{ itemId: 512166, className: "FOOT02_166", name: "Sirdgela Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 72, mDef: 144, material: "Cloth" }, -{ itemId: 512167, className: "FOOT02_167", name: "Sirdgela Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 512168, className: "FOOT02_168", name: "Sirdgela Scale Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 144, mDef: 72, material: "Iron" }, -{ itemId: 512169, className: "FOOT02_169", name: "Philis Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 72, mDef: 144, material: "Cloth" }, -{ itemId: 512170, className: "FOOT02_170", name: "Philis Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 108, mDef: 108, material: "Leather" }, -{ itemId: 512171, className: "FOOT02_171", name: "Philis Scale Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, def: 144, mDef: 72, material: "Iron" }, -{ itemId: 512172, className: "FOOT02_172", name: "Allerno Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 772, equipType1: "Boots", minLevel: 75, def: 128, mDef: 256, material: "Cloth" }, -{ itemId: 512173, className: "FOOT02_173", name: "Allerno Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 3862, sellPrice: 772, equipType1: "Boots", minLevel: 75, def: 192, mDef: 192, material: "Leather" }, -{ itemId: 512174, className: "FOOT02_174", name: "Allerno Plate Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 772, equipType1: "Boots", minLevel: 75, def: 256, mDef: 128, material: "Iron" }, -{ itemId: 512175, className: "FOOT02_175", name: "Perelin Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 772, equipType1: "Boots", minLevel: 75, def: 128, mDef: 256, material: "Cloth" }, -{ itemId: 512176, className: "FOOT02_176", name: "Perelin Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 3862, sellPrice: 772, equipType1: "Boots", minLevel: 75, def: 192, mDef: 192, material: "Leather" }, -{ itemId: 512177, className: "FOOT02_177", name: "Perelin Plate Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 772, equipType1: "Boots", minLevel: 75, def: 256, mDef: 128, material: "Iron" }, -{ itemId: 512178, className: "FOOT02_178", name: "Turn Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1215, equipType1: "Boots", minLevel: 120, def: 200, mDef: 400, material: "Cloth" }, -{ itemId: 512179, className: "FOOT02_179", name: "Turn Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 6984, sellPrice: 1215, equipType1: "Boots", minLevel: 120, def: 300, mDef: 300, material: "Leather" }, -{ itemId: 512180, className: "FOOT02_180", name: "Turn Plate Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 6984, sellPrice: 1215, equipType1: "Boots", minLevel: 120, def: 400, mDef: 200, material: "Iron" }, -{ itemId: 512181, className: "FOOT02_181", name: "Shaton Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1228, equipType1: "Boots", minLevel: 120, def: 200, mDef: 400, material: "Cloth" }, -{ itemId: 512182, className: "FOOT02_182", name: "Shaton Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 6984, sellPrice: 1228, equipType1: "Boots", minLevel: 120, def: 300, mDef: 300, material: "Leather" }, -{ itemId: 512183, className: "FOOT02_183", name: "Shaton Plate Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 6984, sellPrice: 1228, equipType1: "Boots", minLevel: 120, def: 400, mDef: 200, material: "Iron" }, -{ itemId: 512184, className: "FOOT02_184", name: "Tyla Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 10913, sellPrice: 1950, equipType1: "Boots", minLevel: 170, def: 280, mDef: 560, material: "Cloth" }, -{ itemId: 512185, className: "FOOT02_185", name: "Tyla Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 10913, sellPrice: 1950, equipType1: "Boots", minLevel: 170, def: 420, mDef: 420, material: "Leather" }, -{ itemId: 512186, className: "FOOT02_186", name: "Tyla Plate Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 10913, sellPrice: 1950, equipType1: "Boots", minLevel: 170, def: 560, mDef: 280, material: "Iron" }, -{ itemId: 512188, className: "FOOT02_188", name: "Elkosh Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, def: 360, mDef: 720, material: "Cloth" }, -{ itemId: 512189, className: "FOOT02_189", name: "Ibre Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, def: 540, mDef: 540, material: "Leather", iceRes: 11 }, -{ itemId: 512190, className: "FOOT02_190", name: "Grynas Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, def: 720, mDef: 360, material: "Iron" }, -{ itemId: 512200, className: "FOOT02_200", name: "Valtas Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, def: 360, mDef: 720, material: "Cloth" }, -{ itemId: 512201, className: "FOOT02_201", name: "Valtas Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, def: 540, mDef: 540, material: "Leather" }, -{ itemId: 512202, className: "FOOT02_202", name: "Valtas Plate Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, def: 720, mDef: 360, material: "Iron" }, -{ itemId: 512203, className: "FOOT02_203", name: "Superior Greytis Greaves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, def: 720, mDef: 360, material: "Iron" }, -{ itemId: 512204, className: "FOOT02_204", name: "Superior Kovos Greaves", type: "Equip", group: "Armor", weight: 65, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, def: 720, mDef: 360, material: "Iron", fireRes: 5 }, -{ itemId: 512205, className: "FOOT02_205", name: "Hasta Shoes", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 440, mDef: 880, material: "Cloth" }, -{ itemId: 512206, className: "FOOT02_206", name: "Hasta Leather Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 660, mDef: 660, material: "Leather" }, -{ itemId: 512207, className: "FOOT02_207", name: "Hasta Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 880, mDef: 440, material: "Iron" }, -{ itemId: 512208, className: "FOOT02_208", name: "Manahas Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 660, mDef: 660, material: "Leather", iceRes: 15 }, -{ itemId: 512209, className: "FOOT02_209", name: "(Faded) Kalinis Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, def: 440, mDef: 880, material: "Cloth" }, -{ itemId: 512210, className: "FOOT02_210", name: "(Faded) Albinosas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, def: 660, mDef: 660, material: "Leather" }, -{ itemId: 512211, className: "FOOT02_211", name: "(Faded) Tajtanas Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, def: 880, mDef: 440, material: "Iron" }, -{ itemId: 512212, className: "FOOT02_212", name: "(Faded) Oksinis Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Boots", minLevel: 315, def: 512, mDef: 1024, material: "Cloth" }, -{ itemId: 512213, className: "FOOT02_213", name: "(Faded) Kaulas Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Boots", minLevel: 315, def: 768, mDef: 768, material: "Leather" }, -{ itemId: 512214, className: "FOOT02_214", name: "(Faded) Krisius Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Boots", minLevel: 315, def: 1024, mDef: 512, material: "Iron" }, -{ itemId: 512215, className: "FOOT02_215", name: "Alpra Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, def: 200, mDef: 400, material: "Cloth" }, -{ itemId: 512216, className: "FOOT02_216", name: "Eastern Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, def: 300, mDef: 300, material: "Leather" }, -{ itemId: 512217, className: "FOOT02_217", name: "Pangle Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, def: 400, mDef: 200, material: "Iron" }, -{ itemId: 512218, className: "FOOT02_218", name: "War Mage Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, def: 280, mDef: 560, material: "Cloth" }, -{ itemId: 512219, className: "FOOT02_219", name: "Eaglestar Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, def: 420, mDef: 420, material: "Leather" }, -{ itemId: 512220, className: "FOOT02_220", name: "Nyx Knight Greaves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, def: 560, mDef: 280, material: "Iron" }, -{ itemId: 512221, className: "FOOT02_221", name: "Marone Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, def: 128, mDef: 256, material: "Cloth" }, -{ itemId: 512222, className: "FOOT02_222", name: "Prakeh Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, def: 360, mDef: 720, material: "Cloth" }, -{ itemId: 512223, className: "FOOT02_223", name: "Razna Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, def: 192, mDef: 192, material: "Leather" }, -{ itemId: 512224, className: "FOOT02_224", name: "Keyarc Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, def: 540, mDef: 540, material: "Leather" }, -{ itemId: 512225, className: "FOOT02_225", name: "Barghar Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, def: 256, mDef: 128, material: "Iron" }, -{ itemId: 512226, className: "FOOT02_226", name: "Suurit Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, def: 720, mDef: 360, material: "Iron" }, -{ itemId: 512227, className: "FOOT02_227", name: "Kalinis Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, def: 440, mDef: 880, material: "Cloth" }, -{ itemId: 512228, className: "FOOT02_228", name: "Albinosas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, def: 660, mDef: 660, material: "Leather" }, -{ itemId: 512229, className: "FOOT02_229", name: "Tajtanas Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, def: 880, mDef: 440, material: "Iron" }, -{ itemId: 512230, className: "FOOT02_230", name: "Oksinis Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 512, mDef: 1024, material: "Cloth" }, -{ itemId: 512231, className: "FOOT02_231", name: "Kaulas Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 768, mDef: 768, material: "Leather" }, -{ itemId: 512232, className: "FOOT02_232", name: "Krisius Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 1024, mDef: 512, material: "Iron" }, -{ itemId: 512233, className: "FOOT02_233", name: "Irellis Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 568, mDef: 1136, material: "Cloth" }, -{ itemId: 512234, className: "FOOT02_234", name: "Jevenellis Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 852, mDef: 852, material: "Leather" }, -{ itemId: 512235, className: "FOOT02_235", name: "Basticle Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 1136, mDef: 568, material: "Iron" }, -{ itemId: 512236, className: "FOOT02_236", name: "Planeta Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 616, mDef: 1232, material: "Cloth" }, -{ itemId: 512237, className: "FOOT02_237", name: "Ukas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 924, mDef: 924, material: "Leather" }, -{ itemId: 512238, className: "FOOT02_238", name: "Galaktikos Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 1232, mDef: 616, material: "Iron" }, -{ itemId: 512239, className: "FOOT02_239", name: "Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 648, mDef: 1296, material: "Cloth" }, -{ itemId: 512240, className: "FOOT02_240", name: "Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 972, mDef: 972, material: "Leather" }, -{ itemId: 512241, className: "FOOT02_241", name: "Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1296, mDef: 648, material: "Iron" }, -{ itemId: 513103, className: "FOOT03_103", name: "Vine Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 853, equipType1: "Boots", minLevel: 75, def: 140, mDef: 281, material: "Cloth" }, -{ itemId: 513105, className: "FOOT03_105", name: "Soul Chaser Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, def: 211, mDef: 211, material: "Leather" }, -{ itemId: 513106, className: "FOOT03_106", name: "Bone Greaves", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 3862, sellPrice: 786, equipType1: "Boots", minLevel: 75, def: 281, mDef: 140, material: "Iron" }, -{ itemId: 513107, className: "FOOT03_107", name: "Shade Runner", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 3862, sellPrice: 1228, equipType1: "Boots", minLevel: 75, def: 211, mDef: 211, material: "Leather" }, -{ itemId: 513111, className: "FOOT03_111", name: "Roxona Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Boots", minLevel: 170, def: 308, mDef: 616, material: "Cloth" }, -{ itemId: 513112, className: "FOOT03_112", name: "Roxona Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Boots", minLevel: 170, def: 462, mDef: 462, material: "Leather" }, -{ itemId: 513113, className: "FOOT03_113", name: "Roxona Plate Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Boots", minLevel: 170, def: 616, mDef: 308, material: "Iron" }, -{ itemId: 513114, className: "FOOT03_114", name: "Virtov Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, def: 396, mDef: 792, material: "Cloth" }, -{ itemId: 513115, className: "FOOT03_115", name: "Virtov Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, def: 594, mDef: 594, material: "Leather" }, -{ itemId: 513116, className: "FOOT03_116", name: "Virtov Plate Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, def: 792, mDef: 396, material: "Iron" }, -{ itemId: 513130, className: "FOOT03_130", name: "Newt Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 484, mDef: 968, material: "Cloth" }, -{ itemId: 513131, className: "FOOT03_131", name: "Newt Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 726, mDef: 726, material: "Leather" }, -{ itemId: 513132, className: "FOOT03_132", name: "Newt Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 968, mDef: 484, material: "Iron" }, -{ itemId: 513201, className: "FOOT03_201", name: "Cylli Plate Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 3672, equipType1: "Boots", minLevel: 270, def: 968, mDef: 484, material: "Iron" }, -{ itemId: 513202, className: "FOOT03_202", name: "Shade Greaves", type: "Equip", group: "Armor", weight: 65, maxStack: 1, price: 18000, sellPrice: 3672, equipType1: "Boots", minLevel: 270, def: 968, mDef: 484, material: "Iron", fireRes: 5 }, -{ itemId: 513301, className: "FOOT03_301", name: "(Faded) Alpra Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Boots", minLevel: 120, def: 220, mDef: 440, material: "Cloth", darkRes: -20 }, -{ itemId: 513302, className: "FOOT03_302", name: "(Faded) Eastern Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Boots", minLevel: 120, def: 330, mDef: 330, material: "Leather" }, -{ itemId: 513303, className: "FOOT03_303", name: "(Faded) Pangle Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Boots", minLevel: 120, addMaxAtk: 7, def: 440, mDef: 220, material: "Iron" }, -{ itemId: 513304, className: "FOOT03_304", name: "(Faded) War Mage Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Boots", minLevel: 170, def: 308, mDef: 616, material: "Cloth", earthRes: -32 }, -{ itemId: 513305, className: "FOOT03_305", name: "(Faded) Eaglestar Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Boots", minLevel: 170, addMinAtk: 28, def: 462, mDef: 462, material: "Leather" }, -{ itemId: 513306, className: "FOOT03_306", name: "(Faded) Nyx Knight Greaves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Boots", minLevel: 170, def: 616, mDef: 308, material: "Iron" }, -{ itemId: 513307, className: "FOOT03_307", name: "(Faded) Marone Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Boots", minLevel: 75, def: 140, mDef: 281, material: "Cloth", strikeDef: 23 }, -{ itemId: 513308, className: "FOOT03_308", name: "(Faded) Prakeh Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, def: 396, mDef: 792, material: "Cloth", fireRes: 80 }, -{ itemId: 513309, className: "FOOT03_309", name: "(Faded) Razna Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Boots", minLevel: 75, def: 211, mDef: 211, material: "Leather", strikeDef: 10 }, -{ itemId: 513310, className: "FOOT03_310", name: "(Faded) Keyarc Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, def: 594, mDef: 594, material: "Leather" }, -{ itemId: 513311, className: "FOOT03_311", name: "(Faded) Barghar Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Boots", minLevel: 75, def: 281, mDef: 140, material: "Iron", slashDef: 30 }, -{ itemId: 513312, className: "FOOT03_312", name: "(Faded) Suurit Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, def: 792, mDef: 396, material: "Iron", slashDef: 113 }, -{ itemId: 513313, className: "FOOT03_313", name: "(Faded) Vienti Kalinis Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, def: 484, mDef: 968, material: "Cloth" }, -{ itemId: 513314, className: "FOOT03_314", name: "(Faded) Vienti Albinosas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, def: 726, mDef: 726, material: "Leather" }, -{ itemId: 513315, className: "FOOT03_315", name: "(Faded) Vienti Tajtanas Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, def: 968, mDef: 484, material: "Iron" }, -{ itemId: 513316, className: "FOOT03_316", name: "(Faded) Vienti Oksinis Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Boots", minLevel: 315, def: 563, mDef: 1126, material: "Cloth" }, -{ itemId: 513317, className: "FOOT03_317", name: "(Faded) Vienti Kaulas Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Boots", minLevel: 315, def: 844, mDef: 844, material: "Leather" }, -{ itemId: 513318, className: "FOOT03_318", name: "(Faded) Vienti Krisius Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Boots", minLevel: 315, def: 1126, mDef: 563, material: "Iron" }, -{ itemId: 513319, className: "FOOT03_319", name: "Sausis Leather Boots", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 24959, sellPrice: 47, equipType1: "Boots", minLevel: 350, def: 1065, mDef: 1065, material: "Leather" }, -{ itemId: 513320, className: "FOOT03_320", name: "Berthas Alpra Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, def: 220, mDef: 440, material: "Cloth" }, -{ itemId: 513321, className: "FOOT03_321", name: "Berthas Eastern Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, def: 330, mDef: 330, material: "Leather" }, -{ itemId: 513322, className: "FOOT03_322", name: "Berthas Pangle Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, def: 440, mDef: 220, material: "Iron" }, -{ itemId: 513323, className: "FOOT03_323", name: "Berthas Warmage Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, def: 308, mDef: 616, material: "Cloth" }, -{ itemId: 513324, className: "FOOT03_324", name: "Berthas Eaglestar Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, def: 462, mDef: 462, material: "Leather" }, -{ itemId: 513325, className: "FOOT03_325", name: "Berthas Nyx Knight Greaves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, def: 616, mDef: 308, material: "Iron" }, -{ itemId: 513326, className: "FOOT03_326", name: "Berthas Marone Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, def: 140, mDef: 281, material: "Cloth" }, -{ itemId: 513327, className: "FOOT03_327", name: "Berthas Prakeh Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, def: 396, mDef: 792, material: "Cloth" }, -{ itemId: 513328, className: "FOOT03_328", name: "Berthas Razna Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, def: 211, mDef: 211, material: "Leather" }, -{ itemId: 513329, className: "FOOT03_329", name: "Berthas Keyarc Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, def: 594, mDef: 594, material: "Leather" }, -{ itemId: 513330, className: "FOOT03_330", name: "Berthas Barghar Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, def: 281, mDef: 140, material: "Iron" }, -{ itemId: 513331, className: "FOOT03_331", name: "Berthas Suurit Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, def: 792, mDef: 396, material: "Iron" }, -{ itemId: 513332, className: "FOOT03_332", name: "Berthas Kalinis Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, def: 484, mDef: 968, material: "Cloth" }, -{ itemId: 513333, className: "FOOT03_333", name: "Berthas Albinosas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, def: 726, mDef: 726, material: "Leather" }, -{ itemId: 513334, className: "FOOT03_334", name: "Berthas Tajtanas Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, def: 968, mDef: 484, material: "Iron" }, -{ itemId: 513335, className: "FOOT03_335", name: "Berthas Oksinis Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 563, mDef: 1126, material: "Cloth" }, -{ itemId: 513336, className: "FOOT03_336", name: "Berthas Kaulas Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 844, mDef: 844, material: "Leather" }, -{ itemId: 513337, className: "FOOT03_337", name: "Berthas Krisius Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 1126, mDef: 563, material: "Iron" }, -{ itemId: 513338, className: "FOOT03_338", name: "Berthas Irellis Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 624, mDef: 1249, material: "Cloth" }, -{ itemId: 513339, className: "FOOT03_339", name: "Berthas Jevenellis Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 937, mDef: 937, material: "Leather" }, -{ itemId: 513340, className: "FOOT03_340", name: "Berthas Basticle Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 1249, mDef: 624, material: "Iron" }, -{ itemId: 513341, className: "FOOT03_341", name: "Berthas Planeta Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 677, mDef: 1355, material: "Cloth" }, -{ itemId: 513342, className: "FOOT03_342", name: "Berthas Ukas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 1016, mDef: 1016, material: "Leather" }, -{ itemId: 513343, className: "FOOT03_343", name: "Berthas Galaktikos Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 1355, mDef: 677, material: "Iron" }, -{ itemId: 513344, className: "FOOT03_344", name: "Berthas Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 712, mDef: 1425, material: "Cloth" }, -{ itemId: 513345, className: "FOOT03_345", name: "Berthas Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1069, mDef: 1069, material: "Leather" }, -{ itemId: 513346, className: "FOOT03_346", name: "Berthas Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1425, mDef: 712, material: "Iron" }, -{ itemId: 513347, className: "FOOT03_347", name: "Berthas Dysnai Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, def: 765, mDef: 1531, material: "Cloth" }, -{ itemId: 513348, className: "FOOT03_348", name: "Berthas Dysnai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, def: 1148, mDef: 1148, material: "Leather" }, -{ itemId: 513349, className: "FOOT03_349", name: "Berthas Dysnai Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, def: 1531, mDef: 765, material: "Iron" }, -{ itemId: 514101, className: "FOOT04_101", name: "Wind Runner", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 3862, sellPrice: 47, equipType1: "Boots", minLevel: 75, def: 240, mDef: 240, material: "Leather" }, -{ itemId: 514105, className: "FOOT04_105", name: "GM Boots", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Boots", minLevel: 1, def: 18, mDef: 18, material: "Leather" }, -{ itemId: 514106, className: "FOOT04_106", name: "Lolopanther Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, addMAtk: 24, def: 704, mDef: 1408, material: "Cloth" }, -{ itemId: 514107, className: "FOOT04_107", name: "Lolopanther Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 1056, mDef: 1056, material: "Leather" }, -{ itemId: 514108, className: "FOOT04_108", name: "Lolopanther Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 1408, mDef: 704, material: "Iron" }, -{ itemId: 514109, className: "FOOT04_109", name: "Solmiki Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 5828, equipType1: "Boots", minLevel: 330, addMAtk: 36, def: 857, mDef: 1715, material: "Cloth" }, -{ itemId: 514110, className: "FOOT04_110", name: "Solmiki Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 5828, equipType1: "Boots", minLevel: 330, def: 1286, mDef: 1286, material: "Leather" }, -{ itemId: 514111, className: "FOOT04_111", name: "Solmiki Plate Greaves", type: "Equip", group: "Armor", weight: 65, maxStack: 1, price: 21960, sellPrice: 5828, equipType1: "Boots", minLevel: 330, def: 1715, mDef: 857, material: "Iron" }, -{ itemId: 514112, className: "FOOT04_112", name: "Primus Alpra Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, def: 250, mDef: 500, material: "Cloth" }, -{ itemId: 514113, className: "FOOT04_113", name: "Primus Eastern Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, def: 375, mDef: 375, material: "Leather" }, -{ itemId: 514114, className: "FOOT04_114", name: "Primus Pangle Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, def: 500, mDef: 250, material: "Iron" }, -{ itemId: 514115, className: "FOOT04_115", name: "Primus Warmage Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, def: 350, mDef: 700, material: "Cloth" }, -{ itemId: 514116, className: "FOOT04_116", name: "Primus Eaglestar Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, def: 525, mDef: 525, material: "Leather" }, -{ itemId: 514117, className: "FOOT04_117", name: "Primus Nyx Knight Greaves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, def: 700, mDef: 350, material: "Iron" }, -{ itemId: 514118, className: "FOOT04_118", name: "Primus Marone Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, def: 160, mDef: 320, material: "Cloth" }, -{ itemId: 514119, className: "FOOT04_119", name: "Primus Prakeh Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, def: 450, mDef: 900, material: "Cloth" }, -{ itemId: 514120, className: "FOOT04_120", name: "Primus Razna Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, def: 240, mDef: 240, material: "Leather" }, -{ itemId: 514121, className: "FOOT04_121", name: "Primus Keyarc Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, def: 675, mDef: 675, material: "Leather" }, -{ itemId: 514122, className: "FOOT04_122", name: "Primus Barghar Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, def: 320, mDef: 160, material: "Iron" }, -{ itemId: 514123, className: "FOOT04_123", name: "Primus Suurit Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, def: 900, mDef: 450, material: "Iron" }, -{ itemId: 514124, className: "FOOT04_124", name: "Primus Kalinis Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, def: 550, mDef: 1100, material: "Cloth" }, -{ itemId: 514125, className: "FOOT04_125", name: "Primus Albinosas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, def: 825, mDef: 825, material: "Leather" }, -{ itemId: 514126, className: "FOOT04_126", name: "Primus Tajtanas Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, def: 1100, mDef: 550, material: "Iron" }, -{ itemId: 514127, className: "FOOT04_127", name: "Primus Oksinis Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 640, mDef: 1280, material: "Cloth" }, -{ itemId: 514128, className: "FOOT04_128", name: "Primus Kaulas Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 960, mDef: 960, material: "Leather" }, -{ itemId: 514129, className: "FOOT04_129", name: "Primus Krisius Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 1280, mDef: 640, material: "Iron" }, -{ itemId: 514130, className: "FOOT04_130", name: "Primus Irellis Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 710, mDef: 1420, material: "Cloth" }, -{ itemId: 514131, className: "FOOT04_131", name: "Primus Jevenellis Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 1065, mDef: 1065, material: "Leather" }, -{ itemId: 514132, className: "FOOT04_132", name: "Primus Basticle Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 1420, mDef: 710, material: "Iron" }, -{ itemId: 514133, className: "FOOT04_133", name: "Primus Planeta Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 770, mDef: 1540, material: "Cloth" }, -{ itemId: 514134, className: "FOOT04_134", name: "Primus Ukas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 1155, mDef: 1155, material: "Leather" }, -{ itemId: 514135, className: "FOOT04_135", name: "Primus Galaktikos Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 1540, mDef: 770, material: "Iron" }, -{ itemId: 514136, className: "FOOT04_136", name: "Laitas Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 710, mDef: 1420, material: "Cloth" }, -{ itemId: 514137, className: "FOOT04_137", name: "Fietas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 1065, mDef: 1065, material: "Leather" }, -{ itemId: 514138, className: "FOOT04_138", name: "Ausura Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 1420, mDef: 710, material: "Iron" }, -{ itemId: 514139, className: "FOOT04_139", name: "Ignas Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 770, mDef: 1540, material: "Cloth" }, -{ itemId: 514140, className: "FOOT04_140", name: "Ignas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 1155, mDef: 1155, material: "Leather" }, -{ itemId: 514141, className: "FOOT04_141", name: "Ignas Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 1540, mDef: 770, material: "Iron" }, -{ itemId: 514142, className: "FOOT04_142", name: "Primus Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 810, mDef: 1620, material: "Cloth" }, -{ itemId: 514143, className: "FOOT04_143", name: "Primus Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1215, mDef: 1215, material: "Leather" }, -{ itemId: 514144, className: "FOOT04_144", name: "Primus Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1620, mDef: 810, material: "Iron" }, -{ itemId: 514145, className: "FOOT04_145", name: "Skiaclipse Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 810, mDef: 1620, material: "Cloth" }, -{ itemId: 514146, className: "FOOT04_146", name: "Skiaclipse Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1215, mDef: 1215, material: "Leather", ariesDef: 605 }, -{ itemId: 514147, className: "FOOT04_147", name: "Skiaclipse Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1620, mDef: 810, material: "Iron" }, -{ itemId: 514148, className: "FOOT04_148", name: "Skiaclipse Boots - Compassion", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 810, mDef: 1620, addMDef: 160, material: "Cloth" }, -{ itemId: 514149, className: "FOOT04_149", name: "Skiaclipse Leather Boots - Assault", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1215, mDef: 1215, material: "Leather" }, -{ itemId: 514150, className: "FOOT04_150", name: "Skiaclipse Greaves - Iron Wall", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1620, mDef: 810, material: "Iron" }, -{ itemId: 514151, className: "FOOT04_151", name: "Moringponia Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1620, mDef: 810, material: "Iron" }, -{ itemId: 514152, className: "FOOT04_152", name: "Moringponia Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 810, mDef: 1620, material: "Cloth" }, -{ itemId: 514153, className: "FOOT04_153", name: "Moringponia Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1215, mDef: 1215, material: "Leather" }, -{ itemId: 514154, className: "FOOT04_154", name: "Misrus Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1620, mDef: 810, material: "Iron" }, -{ itemId: 514155, className: "FOOT04_155", name: "Misrus Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 810, mDef: 1620, material: "Cloth" }, -{ itemId: 514156, className: "FOOT04_156", name: "Misrus Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1215, mDef: 1215, material: "Leather" }, -{ itemId: 514157, className: "FOOT04_157", name: "Primus Dysnai Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, def: 870, mDef: 1740, material: "Cloth" }, -{ itemId: 514158, className: "FOOT04_158", name: "Primus Dysnai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, def: 1305, mDef: 1305, material: "Leather" }, -{ itemId: 514159, className: "FOOT04_159", name: "Primus Dysnai Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, def: 1740, mDef: 870, material: "Iron" }, -{ itemId: 515101, className: "FOOT05_101", name: "Velcoffer Boots", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 360, def: 934, mDef: 1868, material: "Cloth" }, -{ itemId: 515102, className: "FOOT05_102", name: "Velcoffer Leather Boots", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 360, def: 1401, mDef: 1401, material: "Leather" }, -{ itemId: 515103, className: "FOOT05_103", name: "Velcoffer Greaves", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 360, def: 1868, mDef: 934, material: "Iron" }, -{ itemId: 515104, className: "FOOT05_104", name: "Velcoffer Boots", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 360, def: 934, mDef: 1868, material: "Cloth" }, -{ itemId: 515105, className: "FOOT05_105", name: "Velcoffer Leather Boots", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 360, def: 1401, mDef: 1401, material: "Leather" }, -{ itemId: 515106, className: "FOOT05_106", name: "Velcoffer Greaves", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 360, def: 1868, mDef: 934, material: "Iron" }, -{ itemId: 515107, className: "FOOT05_107", name: "Savinose Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1036, mDef: 2073, material: "Cloth" }, -{ itemId: 515108, className: "FOOT05_108", name: "Savinose Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1555, mDef: 1555, material: "Leather" }, -{ itemId: 515109, className: "FOOT05_109", name: "Savinose Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 2073, mDef: 1036, material: "Iron" }, -{ itemId: 515110, className: "FOOT05_110", name: "Skiaclipse Varna Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 2073, mDef: 1036, material: "Iron" }, -{ itemId: 515111, className: "FOOT05_111", name: "Skiaclipse Varna Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1555, mDef: 1555, material: "Leather" }, -{ itemId: 515112, className: "FOOT05_112", name: "Skiaclipse Varna Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1036, mDef: 2073, material: "Cloth" }, -{ itemId: 521101, className: "LEG01_101", name: "Light Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 360, sellPrice: 72, equipType1: "Pants", minLevel: 1, def: 19, mDef: 19, material: "Leather" }, -{ itemId: 521102, className: "LEG01_102", name: "Quilted Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 360, sellPrice: 72, equipType1: "Pants", minLevel: 1, def: 19, mDef: 19, material: "Leather" }, -{ itemId: 521103, className: "LEG01_103", name: "Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Pants", minLevel: 1, def: 19, mDef: 19, material: "Leather" }, -{ itemId: 521104, className: "LEG01_104", name: "Hard Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 64, mDef: 64, material: "Leather" }, -{ itemId: 521105, className: "LEG01_105", name: "Chain Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 86, mDef: 43, material: "Iron" }, -{ itemId: 521106, className: "LEG01_106", name: "Mark Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 145, mDef: 145, material: "Leather" }, -{ itemId: 521107, className: "LEG01_107", name: "Forest Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 145, mDef: 145, material: "Leather" }, -{ itemId: 521108, className: "LEG01_108", name: "Grima Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 97, mDef: 194, material: "Cloth" }, -{ itemId: 521109, className: "LEG01_109", name: "Veris Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 145, mDef: 145, material: "Leather" }, -{ itemId: 521110, className: "LEG01_110", name: "Scale Leggings", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 194, mDef: 97, material: "Iron" }, -{ itemId: 521111, className: "LEG01_111", name: "Forest Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 97, mDef: 194, material: "Cloth" }, -{ itemId: 521112, className: "LEG01_112", name: "Klaida Skirt", type: "Equip", group: "Armor", weight: 135, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 194, mDef: 97, material: "Iron" }, -{ itemId: 521113, className: "LEG01_113", name: "Hard Veris Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 7724, sellPrice: 1707, equipType1: "Pants", minLevel: 75, def: 259, mDef: 259, material: "Leather" }, -{ itemId: 521114, className: "LEG01_114", name: "Superior Scale Leggings", type: "Equip", group: "Armor", weight: 240, maxStack: 1, price: 7724, sellPrice: 1707, equipType1: "Pants", minLevel: 75, def: 345, mDef: 172, material: "Iron" }, -{ itemId: 521115, className: "LEG01_115", name: "Regal Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 172, mDef: 345, material: "Cloth" }, -{ itemId: 521116, className: "LEG01_116", name: "Rag Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 72, equipType1: "Pants", minLevel: 1, def: 21, mDef: 21, material: "Leather" }, -{ itemId: 521117, className: "LEG01_117", name: "Miner's Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 95, equipType1: "Pants", minLevel: 1, def: 19, mDef: 19, material: "Leather", poisonRes: 2 }, -{ itemId: 521118, className: "LEG01_118", name: "Old Hard Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 64, mDef: 64, material: "Leather" }, -{ itemId: 521119, className: "LEG01_119", name: "Old Chain Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 86, mDef: 43, material: "Iron" }, -{ itemId: 521120, className: "LEG01_120", name: "Old Steel Chain Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 705, equipType1: "Pants", minLevel: 40, def: 194, mDef: 97, material: "Iron" }, -{ itemId: 521121, className: "LEG01_121", name: "Brigandine Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 259, mDef: 259, material: "Leather" }, -{ itemId: 521122, className: "LEG01_122", name: "Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 345, mDef: 172, material: "Iron" }, -{ itemId: 521123, className: "LEG01_123", name: "Superior Quilted Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 360, sellPrice: 154, equipType1: "Pants", minLevel: 1, def: 19, mDef: 19, material: "Leather" }, -{ itemId: 521124, className: "LEG01_124", name: "Vubbe Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 64, mDef: 64, material: "Leather" }, -{ itemId: 521125, className: "LEG01_125", name: "Panto Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 64, mDef: 64, material: "Leather" }, -{ itemId: 521126, className: "LEG01_126", name: "Acolyte Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 97, mDef: 194, material: "Cloth" }, -{ itemId: 521127, className: "LEG01_127", name: "Steel Chain Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 194, mDef: 97, material: "Iron" }, +{ itemId: 511133, className: "FOOT01_133", name: "Cotton Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 28, mDef: 57, material: "Cloth" }, +{ itemId: 511134, className: "FOOT01_134", name: "Ring Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 57, mDef: 28, material: "Iron" }, +{ itemId: 511135, className: "FOOT01_135", name: "Superior Regal Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 115, mDef: 230, material: "Cloth" }, +{ itemId: 511136, className: "FOOT01_136", name: "Superior Brigandine Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 172, mDef: 172, material: "Leather" }, +{ itemId: 511137, className: "FOOT01_137", name: "Full Plate Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 230, mDef: 115, material: "Iron" }, +{ itemId: 511138, className: "FOOT01_138", name: "Fedimian Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 180, mDef: 360, material: "Cloth" }, +{ itemId: 511139, className: "FOOT01_139", name: "Fedimian Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 270, mDef: 270, material: "Leather" }, +{ itemId: 511140, className: "FOOT01_140", name: "Fedimian Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 360, mDef: 180, material: "Iron" }, +{ itemId: 511141, className: "FOOT01_141", name: "Magician Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1396, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 180, mDef: 360, material: "Cloth" }, +{ itemId: 511142, className: "FOOT01_142", name: "Hunting Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 270, mDef: 270, material: "Leather" }, +{ itemId: 511143, className: "FOOT01_143", name: "Guard Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1396, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 360, mDef: 180, material: "Iron" }, +{ itemId: 511144, className: "FOOT01_144", name: "Mage Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 180, mDef: 360, material: "Cloth" }, +{ itemId: 511145, className: "FOOT01_145", name: "Skirmisher Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 270, mDef: 270, material: "Leather" }, +{ itemId: 511146, className: "FOOT01_146", name: "Infantry Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 360, mDef: 180, material: "Iron" }, +{ itemId: 511147, className: "FOOT01_147", name: "Archmage Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 10913, sellPrice: 2213, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 252, mDef: 504, material: "Cloth" }, +{ itemId: 511148, className: "FOOT01_148", name: "Superior Skirmisher Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 10913, sellPrice: 2213, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 378, mDef: 378, material: "Leather" }, +{ itemId: 511149, className: "FOOT01_149", name: "Superior Infantry Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 10913, sellPrice: 2213, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 504, mDef: 252, material: "Iron" }, +{ itemId: 511150, className: "FOOT01_150", name: "Librarian Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 2940, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 252, mDef: 504, material: "Cloth" }, +{ itemId: 511151, className: "FOOT01_151", name: "Veteran Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 2940, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 378, mDef: 378, material: "Leather" }, +{ itemId: 511152, className: "FOOT01_152", name: "Knight Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 10913, sellPrice: 2940, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 504, mDef: 252, material: "Iron" }, +{ itemId: 511153, className: "FOOT01_153", name: "Superior Grima Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 3862, sellPrice: 786, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 115, mDef: 230, material: "Cloth" }, +{ itemId: 511154, className: "FOOT01_154", name: "Royal Mage Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 324, mDef: 648, material: "Cloth" }, +{ itemId: 511155, className: "FOOT01_155", name: "Bandit Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 486, mDef: 486, material: "Leather" }, +{ itemId: 511156, className: "FOOT01_156", name: "Royal Guard Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 648, mDef: 324, material: "Iron" }, +{ itemId: 511157, className: "FOOT01_157", name: "Superior Royal Mage Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 324, mDef: 648, material: "Cloth" }, +{ itemId: 511158, className: "FOOT01_158", name: "Superior Bandit Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 486, mDef: 486, material: "Leather" }, +{ itemId: 511159, className: "FOOT01_159", name: "Superior Royal Guard Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 648, mDef: 324, material: "Iron" }, +{ itemId: 511201, className: "FOOT01_201", name: "Greytis Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 10913, sellPrice: 1950, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 504, mDef: 252, material: "Iron" }, +{ itemId: 511202, className: "FOOT01_202", name: "Kovos Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 10913, sellPrice: 1950, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 504, mDef: 252, material: "Iron" }, +{ itemId: 511203, className: "FOOT01_203", name: "Blint Shoes", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 396, mDef: 792, material: "Cloth" }, +{ itemId: 511204, className: "FOOT01_204", name: "Blint Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 594, mDef: 594, material: "Leather" }, +{ itemId: 511205, className: "FOOT01_205", name: "Blint Plate Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 792, mDef: 396, material: "Iron" }, +{ itemId: 511206, className: "FOOT01_206", name: "(Faded) Replica Kalinis Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 396, mDef: 792, material: "Cloth" }, +{ itemId: 511207, className: "FOOT01_207", name: "(Faded) Replica Albinosas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 594, mDef: 594, material: "Leather" }, +{ itemId: 511208, className: "FOOT01_208", name: "(Faded) Replica Tajtanas Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 792, mDef: 396, material: "Iron" }, +{ itemId: 511209, className: "FOOT01_209", name: "(Faded) Replica Oksinis Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 460, mDef: 921, material: "Cloth" }, +{ itemId: 511210, className: "FOOT01_210", name: "(Faded) Replica Kaulas Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 691, mDef: 691, material: "Leather" }, +{ itemId: 511211, className: "FOOT01_211", name: "(Faded) Replica Krisius Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 921, mDef: 460, material: "Iron" }, +{ itemId: 512101, className: "FOOT02_101", name: "Kabra Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 180, sellPrice: 259, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 14, mDef: 14, material: "Leather" }, +{ itemId: 512104, className: "FOOT02_104", name: "Zalia Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 512106, className: "FOOT02_106", name: "Studded Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 512107, className: "FOOT02_107", name: "Insect Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 144, mDef: 72, material: "Iron" }, +{ itemId: 512108, className: "FOOT02_108", name: "Protas Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 72, mDef: 144, material: "Cloth" }, +{ itemId: 512111, className: "FOOT02_111", name: "Magnus Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 853, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 128, mDef: 256, material: "Cloth" }, +{ itemId: 512113, className: "FOOT02_113", name: "Drake Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Leather" }, +{ itemId: 512114, className: "FOOT02_114", name: "Silver Plate Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 3862, sellPrice: 826, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 256, mDef: 128, material: "Iron", darkRes: 13 }, +{ itemId: 512119, className: "FOOT02_119", name: "Veyo Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 453, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 512120, className: "FOOT02_120", name: "Mien Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 512121, className: "FOOT02_121", name: "Ravinepede Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 72, mDef: 144, material: "Cloth" }, +{ itemId: 512122, className: "FOOT02_122", name: "Shnayim Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 256, mDef: 128, material: "Iron", lightningRes: 18, earthRes: -14 }, +{ itemId: 512123, className: "FOOT02_123", name: "Cafrisun Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 512124, className: "FOOT02_124", name: "Dio Sandals", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 180, sellPrice: 55, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", addMAtk: 1, def: 9, mDef: 19, material: "Cloth" }, +{ itemId: 512125, className: "FOOT02_125", name: "Dio Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 110, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 14, mDef: 14, material: "Leather" }, +{ itemId: 512126, className: "FOOT02_126", name: "Dio Chain Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 180, sellPrice: 55, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 19, mDef: 9, material: "Iron" }, +{ itemId: 512127, className: "FOOT02_127", name: "Thresh Sandals", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", addMAtk: 2, def: 32, mDef: 64, material: "Cloth" }, +{ itemId: 512128, className: "FOOT02_128", name: "Thresh Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 512129, className: "FOOT02_129", name: "Thresh Chain Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 32, material: "Iron" }, +{ itemId: 512130, className: "FOOT02_130", name: "Sestas Sandals", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", addMAtk: 3, def: 32, mDef: 64, material: "Cloth" }, +{ itemId: 512131, className: "FOOT02_131", name: "Sestas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 512132, className: "FOOT02_132", name: "Sestas Chain Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 32, material: "Iron" }, +{ itemId: 512133, className: "FOOT02_133", name: "Dratt Sandals", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", addMAtk: 5, def: 72, mDef: 144, material: "Cloth" }, +{ itemId: 512134, className: "FOOT02_134", name: "Dratt Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 512135, className: "FOOT02_135", name: "Dratt Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 144, mDef: 72, material: "Iron" }, +{ itemId: 512136, className: "FOOT02_136", name: "Aston Sandals", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", addMAtk: 6, def: 72, mDef: 144, material: "Cloth" }, +{ itemId: 512137, className: "FOOT02_137", name: "Aston Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 512138, className: "FOOT02_138", name: "Aston Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 144, mDef: 72, material: "Iron" }, +{ itemId: 512139, className: "FOOT02_139", name: "Devi Sandals", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 3862, sellPrice: 826, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", addMAtk: 8, def: 128, mDef: 256, material: "Cloth" }, +{ itemId: 512140, className: "FOOT02_140", name: "Devi Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Leather" }, +{ itemId: 512141, className: "FOOT02_141", name: "Devi Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 826, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 256, mDef: 128, material: "Iron" }, +{ itemId: 512142, className: "FOOT02_142", name: "Prima Sandals", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", addMAtk: 11, def: 128, mDef: 256, material: "Cloth" }, +{ itemId: 512143, className: "FOOT02_143", name: "Prima Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 1228, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Leather" }, +{ itemId: 512144, className: "FOOT02_144", name: "Prima Greaves", type: "Equip", group: "Armor", weight: 66, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 256, mDef: 128, material: "Iron" }, +{ itemId: 512148, className: "FOOT02_148", name: "Walker", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 180, sellPrice: 110, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 9, mDef: 19, material: "Cloth" }, +{ itemId: 512153, className: "FOOT02_153", name: "Watcher Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 327, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 512154, className: "FOOT02_154", name: "Earth Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 1638, sellPrice: 772, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 72, mDef: 144, material: "Cloth" }, +{ itemId: 512155, className: "FOOT02_155", name: "Leather Earth Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1638, sellPrice: 772, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 512156, className: "FOOT02_156", name: "Earth Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1638, sellPrice: 772, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 144, mDef: 72, material: "Iron" }, +{ itemId: 512157, className: "FOOT02_157", name: "Legwyn Family Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 200, mDef: 400, material: "Cloth" }, +{ itemId: 512158, className: "FOOT02_158", name: "Legwyn Family Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 300, material: "Leather" }, +{ itemId: 512159, className: "FOOT02_159", name: "Legwyn Family Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1937, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 400, mDef: 200, material: "Iron" }, +{ itemId: 512160, className: "FOOT02_160", name: "Ogva Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 32, mDef: 64, material: "Cloth" }, +{ itemId: 512161, className: "FOOT02_161", name: "Ogva Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 512162, className: "FOOT02_162", name: "Ogva Chain Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 32, material: "Iron" }, +{ itemId: 512163, className: "FOOT02_163", name: "Partis Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 32, mDef: 64, material: "Cloth" }, +{ itemId: 512164, className: "FOOT02_164", name: "Partis Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 48, material: "Leather" }, +{ itemId: 512165, className: "FOOT02_165", name: "Partis Ring Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1296, sellPrice: 259, equipType1: "Boots", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 32, material: "Iron" }, +{ itemId: 512166, className: "FOOT02_166", name: "Sirdgela Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 72, mDef: 144, material: "Cloth" }, +{ itemId: 512167, className: "FOOT02_167", name: "Sirdgela Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 512168, className: "FOOT02_168", name: "Sirdgela Scale Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 144, mDef: 72, material: "Iron" }, +{ itemId: 512169, className: "FOOT02_169", name: "Philis Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 72, mDef: 144, material: "Cloth" }, +{ itemId: 512170, className: "FOOT02_170", name: "Philis Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 108, material: "Leather" }, +{ itemId: 512171, className: "FOOT02_171", name: "Philis Scale Boots", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 1638, sellPrice: 680, equipType1: "Boots", minLevel: 40, equipExpGroup: "Equip", def: 144, mDef: 72, material: "Iron" }, +{ itemId: 512172, className: "FOOT02_172", name: "Allerno Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 772, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 128, mDef: 256, material: "Cloth" }, +{ itemId: 512173, className: "FOOT02_173", name: "Allerno Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 3862, sellPrice: 772, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Leather" }, +{ itemId: 512174, className: "FOOT02_174", name: "Allerno Plate Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 772, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 256, mDef: 128, material: "Iron" }, +{ itemId: 512175, className: "FOOT02_175", name: "Perelin Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 772, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 128, mDef: 256, material: "Cloth" }, +{ itemId: 512176, className: "FOOT02_176", name: "Perelin Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 3862, sellPrice: 772, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Leather" }, +{ itemId: 512177, className: "FOOT02_177", name: "Perelin Plate Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 3862, sellPrice: 772, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 256, mDef: 128, material: "Iron" }, +{ itemId: 512178, className: "FOOT02_178", name: "Turn Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1215, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 200, mDef: 400, material: "Cloth" }, +{ itemId: 512179, className: "FOOT02_179", name: "Turn Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 6984, sellPrice: 1215, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 300, material: "Leather" }, +{ itemId: 512180, className: "FOOT02_180", name: "Turn Plate Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 6984, sellPrice: 1215, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 400, mDef: 200, material: "Iron" }, +{ itemId: 512181, className: "FOOT02_181", name: "Shaton Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 6984, sellPrice: 1228, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 200, mDef: 400, material: "Cloth" }, +{ itemId: 512182, className: "FOOT02_182", name: "Shaton Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 6984, sellPrice: 1228, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 300, material: "Leather" }, +{ itemId: 512183, className: "FOOT02_183", name: "Shaton Plate Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 6984, sellPrice: 1228, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 400, mDef: 200, material: "Iron" }, +{ itemId: 512184, className: "FOOT02_184", name: "Tyla Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 10913, sellPrice: 1950, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 280, mDef: 560, material: "Cloth" }, +{ itemId: 512185, className: "FOOT02_185", name: "Tyla Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 10913, sellPrice: 1950, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 420, mDef: 420, material: "Leather" }, +{ itemId: 512186, className: "FOOT02_186", name: "Tyla Plate Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 10913, sellPrice: 1950, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 560, mDef: 280, material: "Iron" }, +{ itemId: 512188, className: "FOOT02_188", name: "Elkosh Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 360, mDef: 720, material: "Cloth" }, +{ itemId: 512189, className: "FOOT02_189", name: "Ibre Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 540, mDef: 540, material: "Leather", iceRes: 11 }, +{ itemId: 512190, className: "FOOT02_190", name: "Grynas Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 720, mDef: 360, material: "Iron" }, +{ itemId: 512200, className: "FOOT02_200", name: "Valtas Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 360, mDef: 720, material: "Cloth" }, +{ itemId: 512201, className: "FOOT02_201", name: "Valtas Leather Boots", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 540, mDef: 540, material: "Leather" }, +{ itemId: 512202, className: "FOOT02_202", name: "Valtas Plate Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 720, mDef: 360, material: "Iron" }, +{ itemId: 512203, className: "FOOT02_203", name: "Superior Greytis Greaves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 720, mDef: 360, material: "Iron" }, +{ itemId: 512204, className: "FOOT02_204", name: "Superior Kovos Greaves", type: "Equip", group: "Armor", weight: 65, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 720, mDef: 360, material: "Iron", fireRes: 5 }, +{ itemId: 512205, className: "FOOT02_205", name: "Hasta Shoes", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 440, mDef: 880, material: "Cloth" }, +{ itemId: 512206, className: "FOOT02_206", name: "Hasta Leather Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 660, mDef: 660, material: "Leather" }, +{ itemId: 512207, className: "FOOT02_207", name: "Hasta Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 880, mDef: 440, material: "Iron" }, +{ itemId: 512208, className: "FOOT02_208", name: "Manahas Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 660, mDef: 660, material: "Leather", iceRes: 15 }, +{ itemId: 512209, className: "FOOT02_209", name: "(Faded) Kalinis Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 440, mDef: 880, material: "Cloth" }, +{ itemId: 512210, className: "FOOT02_210", name: "(Faded) Albinosas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 660, mDef: 660, material: "Leather" }, +{ itemId: 512211, className: "FOOT02_211", name: "(Faded) Tajtanas Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 880, mDef: 440, material: "Iron" }, +{ itemId: 512212, className: "FOOT02_212", name: "(Faded) Oksinis Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 512, mDef: 1024, material: "Cloth" }, +{ itemId: 512213, className: "FOOT02_213", name: "(Faded) Kaulas Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 768, mDef: 768, material: "Leather" }, +{ itemId: 512214, className: "FOOT02_214", name: "(Faded) Krisius Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 1024, mDef: 512, material: "Iron" }, +{ itemId: 512215, className: "FOOT02_215", name: "Alpra Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 200, mDef: 400, material: "Cloth" }, +{ itemId: 512216, className: "FOOT02_216", name: "Eastern Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 300, material: "Leather" }, +{ itemId: 512217, className: "FOOT02_217", name: "Pangle Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 400, mDef: 200, material: "Iron" }, +{ itemId: 512218, className: "FOOT02_218", name: "War Mage Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 280, mDef: 560, material: "Cloth" }, +{ itemId: 512219, className: "FOOT02_219", name: "Eaglestar Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 420, mDef: 420, material: "Leather" }, +{ itemId: 512220, className: "FOOT02_220", name: "Nyx Knight Greaves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 560, mDef: 280, material: "Iron" }, +{ itemId: 512221, className: "FOOT02_221", name: "Marone Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 128, mDef: 256, material: "Cloth" }, +{ itemId: 512222, className: "FOOT02_222", name: "Prakeh Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 360, mDef: 720, material: "Cloth" }, +{ itemId: 512223, className: "FOOT02_223", name: "Razna Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 192, material: "Leather" }, +{ itemId: 512224, className: "FOOT02_224", name: "Keyarc Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 540, mDef: 540, material: "Leather" }, +{ itemId: 512225, className: "FOOT02_225", name: "Barghar Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 256, mDef: 128, material: "Iron" }, +{ itemId: 512226, className: "FOOT02_226", name: "Suurit Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 720, mDef: 360, material: "Iron" }, +{ itemId: 512227, className: "FOOT02_227", name: "Kalinis Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 440, mDef: 880, material: "Cloth" }, +{ itemId: 512228, className: "FOOT02_228", name: "Albinosas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 660, mDef: 660, material: "Leather" }, +{ itemId: 512229, className: "FOOT02_229", name: "Tajtanas Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 880, mDef: 440, material: "Iron" }, +{ itemId: 512230, className: "FOOT02_230", name: "Oksinis Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 512, mDef: 1024, material: "Cloth" }, +{ itemId: 512231, className: "FOOT02_231", name: "Kaulas Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 768, mDef: 768, material: "Leather" }, +{ itemId: 512232, className: "FOOT02_232", name: "Krisius Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 1024, mDef: 512, material: "Iron" }, +{ itemId: 512233, className: "FOOT02_233", name: "Irellis Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 568, mDef: 1136, material: "Cloth" }, +{ itemId: 512234, className: "FOOT02_234", name: "Jevenellis Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 852, mDef: 852, material: "Leather" }, +{ itemId: 512235, className: "FOOT02_235", name: "Basticle Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 1136, mDef: 568, material: "Iron" }, +{ itemId: 512236, className: "FOOT02_236", name: "Planeta Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 616, mDef: 1232, material: "Cloth" }, +{ itemId: 512237, className: "FOOT02_237", name: "Ukas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 924, mDef: 924, material: "Leather" }, +{ itemId: 512238, className: "FOOT02_238", name: "Galaktikos Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 1232, mDef: 616, material: "Iron" }, +{ itemId: 512239, className: "FOOT02_239", name: "Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 648, mDef: 1296, material: "Cloth" }, +{ itemId: 512240, className: "FOOT02_240", name: "Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 972, mDef: 972, material: "Leather" }, +{ itemId: 512241, className: "FOOT02_241", name: "Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1296, mDef: 648, material: "Iron" }, +{ itemId: 513103, className: "FOOT03_103", name: "Vine Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 3862, sellPrice: 853, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 140, mDef: 281, material: "Cloth" }, +{ itemId: 513105, className: "FOOT03_105", name: "Soul Chaser Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 3862, sellPrice: 1215, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 211, mDef: 211, material: "Leather" }, +{ itemId: 513106, className: "FOOT03_106", name: "Bone Greaves", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 3862, sellPrice: 786, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 281, mDef: 140, material: "Iron" }, +{ itemId: 513107, className: "FOOT03_107", name: "Shade Runner", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 3862, sellPrice: 1228, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 211, mDef: 211, material: "Leather" }, +{ itemId: 513111, className: "FOOT03_111", name: "Roxona Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 308, mDef: 616, material: "Cloth" }, +{ itemId: 513112, className: "FOOT03_112", name: "Roxona Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 462, mDef: 462, material: "Leather" }, +{ itemId: 513113, className: "FOOT03_113", name: "Roxona Plate Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 616, mDef: 308, material: "Iron" }, +{ itemId: 513114, className: "FOOT03_114", name: "Virtov Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 396, mDef: 792, material: "Cloth" }, +{ itemId: 513115, className: "FOOT03_115", name: "Virtov Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 594, mDef: 594, material: "Leather" }, +{ itemId: 513116, className: "FOOT03_116", name: "Virtov Plate Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14702, sellPrice: 3571, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 792, mDef: 396, material: "Iron" }, +{ itemId: 513130, className: "FOOT03_130", name: "Newt Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 484, mDef: 968, material: "Cloth" }, +{ itemId: 513131, className: "FOOT03_131", name: "Newt Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 726, mDef: 726, material: "Leather" }, +{ itemId: 513132, className: "FOOT03_132", name: "Newt Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 968, mDef: 484, material: "Iron" }, +{ itemId: 513201, className: "FOOT03_201", name: "Cylli Plate Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 3672, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 968, mDef: 484, material: "Iron" }, +{ itemId: 513202, className: "FOOT03_202", name: "Shade Greaves", type: "Equip", group: "Armor", weight: 65, maxStack: 1, price: 18000, sellPrice: 3672, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 968, mDef: 484, material: "Iron", fireRes: 5 }, +{ itemId: 513301, className: "FOOT03_301", name: "(Faded) Alpra Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 220, mDef: 440, material: "Cloth", darkRes: -20 }, +{ itemId: 513302, className: "FOOT03_302", name: "(Faded) Eastern Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 330, mDef: 330, material: "Leather" }, +{ itemId: 513303, className: "FOOT03_303", name: "(Faded) Pangle Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 1425, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", addMaxAtk: 7, def: 440, mDef: 220, material: "Iron" }, +{ itemId: 513304, className: "FOOT03_304", name: "(Faded) War Mage Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 308, mDef: 616, material: "Cloth", earthRes: -32 }, +{ itemId: 513305, className: "FOOT03_305", name: "(Faded) Eaglestar Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", addMinAtk: 28, def: 462, mDef: 462, material: "Leather" }, +{ itemId: 513306, className: "FOOT03_306", name: "(Faded) Nyx Knight Greaves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 2243, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 616, mDef: 308, material: "Iron" }, +{ itemId: 513307, className: "FOOT03_307", name: "(Faded) Marone Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 140, mDef: 281, material: "Cloth", strikeDef: 23 }, +{ itemId: 513308, className: "FOOT03_308", name: "(Faded) Prakeh Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 396, mDef: 792, material: "Cloth", fireRes: 80 }, +{ itemId: 513309, className: "FOOT03_309", name: "(Faded) Razna Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 211, mDef: 211, material: "Leather", strikeDef: 10 }, +{ itemId: 513310, className: "FOOT03_310", name: "(Faded) Keyarc Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 594, mDef: 594, material: "Leather" }, +{ itemId: 513311, className: "FOOT03_311", name: "(Faded) Barghar Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 680, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 281, mDef: 140, material: "Iron", slashDef: 30 }, +{ itemId: 513312, className: "FOOT03_312", name: "(Faded) Suurit Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 2940, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 792, mDef: 396, material: "Iron", slashDef: 113 }, +{ itemId: 513313, className: "FOOT03_313", name: "(Faded) Vienti Kalinis Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 484, mDef: 968, material: "Cloth" }, +{ itemId: 513314, className: "FOOT03_314", name: "(Faded) Vienti Albinosas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 726, mDef: 726, material: "Leather" }, +{ itemId: 513315, className: "FOOT03_315", name: "(Faded) Vienti Tajtanas Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 18000, sellPrice: 5000, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 968, mDef: 484, material: "Iron" }, +{ itemId: 513316, className: "FOOT03_316", name: "(Faded) Vienti Oksinis Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 563, mDef: 1126, material: "Cloth" }, +{ itemId: 513317, className: "FOOT03_317", name: "(Faded) Vienti Kaulas Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 844, mDef: 844, material: "Leather" }, +{ itemId: 513318, className: "FOOT03_318", name: "(Faded) Vienti Krisius Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 21960, sellPrice: 5000, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 1126, mDef: 563, material: "Iron" }, +{ itemId: 513319, className: "FOOT03_319", name: "Sausis Leather Boots", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 24959, sellPrice: 47, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 1065, mDef: 1065, material: "Leather" }, +{ itemId: 513320, className: "FOOT03_320", name: "Berthas Alpra Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 220, mDef: 440, material: "Cloth" }, +{ itemId: 513321, className: "FOOT03_321", name: "Berthas Eastern Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 330, mDef: 330, material: "Leather" }, +{ itemId: 513322, className: "FOOT03_322", name: "Berthas Pangle Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 440, mDef: 220, material: "Iron" }, +{ itemId: 513323, className: "FOOT03_323", name: "Berthas Warmage Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 308, mDef: 616, material: "Cloth" }, +{ itemId: 513324, className: "FOOT03_324", name: "Berthas Eaglestar Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 462, mDef: 462, material: "Leather" }, +{ itemId: 513325, className: "FOOT03_325", name: "Berthas Nyx Knight Greaves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 616, mDef: 308, material: "Iron" }, +{ itemId: 513326, className: "FOOT03_326", name: "Berthas Marone Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 140, mDef: 281, material: "Cloth" }, +{ itemId: 513327, className: "FOOT03_327", name: "Berthas Prakeh Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 396, mDef: 792, material: "Cloth" }, +{ itemId: 513328, className: "FOOT03_328", name: "Berthas Razna Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 211, mDef: 211, material: "Leather" }, +{ itemId: 513329, className: "FOOT03_329", name: "Berthas Keyarc Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 594, mDef: 594, material: "Leather" }, +{ itemId: 513330, className: "FOOT03_330", name: "Berthas Barghar Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 281, mDef: 140, material: "Iron" }, +{ itemId: 513331, className: "FOOT03_331", name: "Berthas Suurit Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 792, mDef: 396, material: "Iron" }, +{ itemId: 513332, className: "FOOT03_332", name: "Berthas Kalinis Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 484, mDef: 968, material: "Cloth" }, +{ itemId: 513333, className: "FOOT03_333", name: "Berthas Albinosas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 726, mDef: 726, material: "Leather" }, +{ itemId: 513334, className: "FOOT03_334", name: "Berthas Tajtanas Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 968, mDef: 484, material: "Iron" }, +{ itemId: 513335, className: "FOOT03_335", name: "Berthas Oksinis Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 563, mDef: 1126, material: "Cloth" }, +{ itemId: 513336, className: "FOOT03_336", name: "Berthas Kaulas Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 844, mDef: 844, material: "Leather" }, +{ itemId: 513337, className: "FOOT03_337", name: "Berthas Krisius Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 1126, mDef: 563, material: "Iron" }, +{ itemId: 513338, className: "FOOT03_338", name: "Berthas Irellis Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 624, mDef: 1249, material: "Cloth" }, +{ itemId: 513339, className: "FOOT03_339", name: "Berthas Jevenellis Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 937, mDef: 937, material: "Leather" }, +{ itemId: 513340, className: "FOOT03_340", name: "Berthas Basticle Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 1249, mDef: 624, material: "Iron" }, +{ itemId: 513341, className: "FOOT03_341", name: "Berthas Planeta Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 677, mDef: 1355, material: "Cloth" }, +{ itemId: 513342, className: "FOOT03_342", name: "Berthas Ukas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 1016, mDef: 1016, material: "Leather" }, +{ itemId: 513343, className: "FOOT03_343", name: "Berthas Galaktikos Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 1355, mDef: 677, material: "Iron" }, +{ itemId: 513344, className: "FOOT03_344", name: "Berthas Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 712, mDef: 1425, material: "Cloth" }, +{ itemId: 513345, className: "FOOT03_345", name: "Berthas Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1069, mDef: 1069, material: "Leather" }, +{ itemId: 513346, className: "FOOT03_346", name: "Berthas Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1425, mDef: 712, material: "Iron" }, +{ itemId: 513347, className: "FOOT03_347", name: "Berthas Dysnai Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, equipExpGroup: "Equip", def: 765, mDef: 1531, material: "Cloth" }, +{ itemId: 513348, className: "FOOT03_348", name: "Berthas Dysnai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, equipExpGroup: "Equip", def: 1148, mDef: 1148, material: "Leather" }, +{ itemId: 513349, className: "FOOT03_349", name: "Berthas Dysnai Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, equipExpGroup: "Equip", def: 1531, mDef: 765, material: "Iron" }, +{ itemId: 514101, className: "FOOT04_101", name: "Wind Runner", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 3862, sellPrice: 47, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 240, mDef: 240, material: "Leather" }, +{ itemId: 514105, className: "FOOT04_105", name: "GM Boots", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 36, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 18, mDef: 18, material: "Leather" }, +{ itemId: 514106, className: "FOOT04_106", name: "Lolopanther Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", addMAtk: 24, def: 704, mDef: 1408, material: "Cloth" }, +{ itemId: 514107, className: "FOOT04_107", name: "Lolopanther Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 1056, mDef: 1056, material: "Leather" }, +{ itemId: 514108, className: "FOOT04_108", name: "Lolopanther Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 1408, mDef: 704, material: "Iron" }, +{ itemId: 514109, className: "FOOT04_109", name: "Solmiki Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 5828, equipType1: "Boots", minLevel: 330, equipExpGroup: "Equip", addMAtk: 36, def: 857, mDef: 1715, material: "Cloth" }, +{ itemId: 514110, className: "FOOT04_110", name: "Solmiki Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 5828, equipType1: "Boots", minLevel: 330, equipExpGroup: "Equip", def: 1286, mDef: 1286, material: "Leather" }, +{ itemId: 514111, className: "FOOT04_111", name: "Solmiki Plate Greaves", type: "Equip", group: "Armor", weight: 65, maxStack: 1, price: 21960, sellPrice: 5828, equipType1: "Boots", minLevel: 330, equipExpGroup: "Equip", def: 1715, mDef: 857, material: "Iron" }, +{ itemId: 514112, className: "FOOT04_112", name: "Primus Alpra Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 250, mDef: 500, material: "Cloth" }, +{ itemId: 514113, className: "FOOT04_113", name: "Primus Eastern Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 375, mDef: 375, material: "Leather" }, +{ itemId: 514114, className: "FOOT04_114", name: "Primus Pangle Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 500, mDef: 250, material: "Iron" }, +{ itemId: 514115, className: "FOOT04_115", name: "Primus Warmage Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 350, mDef: 700, material: "Cloth" }, +{ itemId: 514116, className: "FOOT04_116", name: "Primus Eaglestar Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 525, mDef: 525, material: "Leather" }, +{ itemId: 514117, className: "FOOT04_117", name: "Primus Nyx Knight Greaves", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 10913, sellPrice: 0, equipType1: "Boots", minLevel: 170, equipExpGroup: "Equip", def: 700, mDef: 350, material: "Iron" }, +{ itemId: 514118, className: "FOOT04_118", name: "Primus Marone Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 160, mDef: 320, material: "Cloth" }, +{ itemId: 514119, className: "FOOT04_119", name: "Primus Prakeh Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 450, mDef: 900, material: "Cloth" }, +{ itemId: 514120, className: "FOOT04_120", name: "Primus Razna Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 240, mDef: 240, material: "Leather" }, +{ itemId: 514121, className: "FOOT04_121", name: "Primus Keyarc Leather Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 675, mDef: 675, material: "Leather" }, +{ itemId: 514122, className: "FOOT04_122", name: "Primus Barghar Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 3862, sellPrice: 0, equipType1: "Boots", minLevel: 75, equipExpGroup: "Equip", def: 320, mDef: 160, material: "Iron" }, +{ itemId: 514123, className: "FOOT04_123", name: "Primus Suurit Plate Boots", type: "Equip", group: "Armor", weight: 55, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, equipExpGroup: "Equip", def: 900, mDef: 450, material: "Iron" }, +{ itemId: 514124, className: "FOOT04_124", name: "Primus Kalinis Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 550, mDef: 1100, material: "Cloth" }, +{ itemId: 514125, className: "FOOT04_125", name: "Primus Albinosas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 825, mDef: 825, material: "Leather" }, +{ itemId: 514126, className: "FOOT04_126", name: "Primus Tajtanas Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 1100, mDef: 550, material: "Iron" }, +{ itemId: 514127, className: "FOOT04_127", name: "Primus Oksinis Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 640, mDef: 1280, material: "Cloth" }, +{ itemId: 514128, className: "FOOT04_128", name: "Primus Kaulas Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 960, mDef: 960, material: "Leather" }, +{ itemId: 514129, className: "FOOT04_129", name: "Primus Krisius Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 1280, mDef: 640, material: "Iron" }, +{ itemId: 514130, className: "FOOT04_130", name: "Primus Irellis Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 710, mDef: 1420, material: "Cloth" }, +{ itemId: 514131, className: "FOOT04_131", name: "Primus Jevenellis Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 1065, mDef: 1065, material: "Leather" }, +{ itemId: 514132, className: "FOOT04_132", name: "Primus Basticle Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 1420, mDef: 710, material: "Iron" }, +{ itemId: 514133, className: "FOOT04_133", name: "Primus Planeta Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 770, mDef: 1540, material: "Cloth" }, +{ itemId: 514134, className: "FOOT04_134", name: "Primus Ukas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 1155, material: "Leather" }, +{ itemId: 514135, className: "FOOT04_135", name: "Primus Galaktikos Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 1540, mDef: 770, material: "Iron" }, +{ itemId: 514136, className: "FOOT04_136", name: "Laitas Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 710, mDef: 1420, material: "Cloth" }, +{ itemId: 514137, className: "FOOT04_137", name: "Fietas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 1065, mDef: 1065, material: "Leather" }, +{ itemId: 514138, className: "FOOT04_138", name: "Ausura Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 1420, mDef: 710, material: "Iron" }, +{ itemId: 514139, className: "FOOT04_139", name: "Ignas Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 770, mDef: 1540, material: "Cloth" }, +{ itemId: 514140, className: "FOOT04_140", name: "Ignas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 1155, material: "Leather" }, +{ itemId: 514141, className: "FOOT04_141", name: "Ignas Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 1540, mDef: 770, material: "Iron" }, +{ itemId: 514142, className: "FOOT04_142", name: "Primus Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 810, mDef: 1620, material: "Cloth" }, +{ itemId: 514143, className: "FOOT04_143", name: "Primus Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 1215, material: "Leather" }, +{ itemId: 514144, className: "FOOT04_144", name: "Primus Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1620, mDef: 810, material: "Iron" }, +{ itemId: 514145, className: "FOOT04_145", name: "Skiaclipse Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 810, mDef: 1620, material: "Cloth" }, +{ itemId: 514146, className: "FOOT04_146", name: "Skiaclipse Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 1215, material: "Leather", ariesDef: 605 }, +{ itemId: 514147, className: "FOOT04_147", name: "Skiaclipse Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1620, mDef: 810, material: "Iron" }, +{ itemId: 514148, className: "FOOT04_148", name: "Skiaclipse Boots - Compassion", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 810, mDef: 1620, addMDef: 160, material: "Cloth" }, +{ itemId: 514149, className: "FOOT04_149", name: "Skiaclipse Leather Boots - Assault", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 1215, material: "Leather" }, +{ itemId: 514150, className: "FOOT04_150", name: "Skiaclipse Greaves - Iron Wall", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1620, mDef: 810, material: "Iron" }, +{ itemId: 514151, className: "FOOT04_151", name: "Moringponia Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1620, mDef: 810, material: "Iron" }, +{ itemId: 514152, className: "FOOT04_152", name: "Moringponia Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 810, mDef: 1620, material: "Cloth" }, +{ itemId: 514153, className: "FOOT04_153", name: "Moringponia Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 1215, material: "Leather" }, +{ itemId: 514154, className: "FOOT04_154", name: "Misrus Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1620, mDef: 810, material: "Iron" }, +{ itemId: 514155, className: "FOOT04_155", name: "Misrus Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 810, mDef: 1620, material: "Cloth" }, +{ itemId: 514156, className: "FOOT04_156", name: "Misrus Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 1215, material: "Leather" }, +{ itemId: 514157, className: "FOOT04_157", name: "Primus Dysnai Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, equipExpGroup: "Equip", def: 870, mDef: 1740, material: "Cloth" }, +{ itemId: 514158, className: "FOOT04_158", name: "Primus Dysnai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, equipExpGroup: "Equip", def: 1305, mDef: 1305, material: "Leather" }, +{ itemId: 514159, className: "FOOT04_159", name: "Primus Dysnai Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, equipExpGroup: "Equip", def: 1740, mDef: 870, material: "Iron" }, +{ itemId: 515101, className: "FOOT05_101", name: "Velcoffer Boots", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 360, equipExpGroup: "Equip", def: 934, mDef: 1868, material: "Cloth" }, +{ itemId: 515102, className: "FOOT05_102", name: "Velcoffer Leather Boots", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 360, equipExpGroup: "Equip", def: 1401, mDef: 1401, material: "Leather" }, +{ itemId: 515103, className: "FOOT05_103", name: "Velcoffer Greaves", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 360, equipExpGroup: "Equip", def: 1868, mDef: 934, material: "Iron" }, +{ itemId: 515104, className: "FOOT05_104", name: "Velcoffer Boots", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 360, equipExpGroup: "Equip", def: 934, mDef: 1868, material: "Cloth" }, +{ itemId: 515105, className: "FOOT05_105", name: "Velcoffer Leather Boots", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 360, equipExpGroup: "Equip", def: 1401, mDef: 1401, material: "Leather" }, +{ itemId: 515106, className: "FOOT05_106", name: "Velcoffer Greaves", type: "Equip", group: "Armor", weight: 15, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 360, equipExpGroup: "Equip", def: 1868, mDef: 934, material: "Iron" }, +{ itemId: 515107, className: "FOOT05_107", name: "Savinose Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth" }, +{ itemId: 515108, className: "FOOT05_108", name: "Savinose Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather" }, +{ itemId: 515109, className: "FOOT05_109", name: "Savinose Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron" }, +{ itemId: 515110, className: "FOOT05_110", name: "Skiaclipse Varna Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron" }, +{ itemId: 515111, className: "FOOT05_111", name: "Skiaclipse Varna Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather" }, +{ itemId: 515112, className: "FOOT05_112", name: "Skiaclipse Varna Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth" }, +{ itemId: 521101, className: "LEG01_101", name: "Light Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 360, sellPrice: 72, equipType1: "Pants", minLevel: 1, equipExpGroup: "Equip", def: 19, mDef: 19, material: "Leather" }, +{ itemId: 521102, className: "LEG01_102", name: "Quilted Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 360, sellPrice: 72, equipType1: "Pants", minLevel: 1, equipExpGroup: "Equip", def: 19, mDef: 19, material: "Leather" }, +{ itemId: 521103, className: "LEG01_103", name: "Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Pants", minLevel: 1, equipExpGroup: "Equip", def: 19, mDef: 19, material: "Leather" }, +{ itemId: 521104, className: "LEG01_104", name: "Hard Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 64, material: "Leather" }, +{ itemId: 521105, className: "LEG01_105", name: "Chain Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 86, mDef: 43, material: "Iron" }, +{ itemId: 521106, className: "LEG01_106", name: "Mark Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 145, mDef: 145, material: "Leather" }, +{ itemId: 521107, className: "LEG01_107", name: "Forest Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 145, mDef: 145, material: "Leather" }, +{ itemId: 521108, className: "LEG01_108", name: "Grima Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 97, mDef: 194, material: "Cloth" }, +{ itemId: 521109, className: "LEG01_109", name: "Veris Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 145, mDef: 145, material: "Leather" }, +{ itemId: 521110, className: "LEG01_110", name: "Scale Leggings", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 194, mDef: 97, material: "Iron" }, +{ itemId: 521111, className: "LEG01_111", name: "Forest Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 97, mDef: 194, material: "Cloth" }, +{ itemId: 521112, className: "LEG01_112", name: "Klaida Skirt", type: "Equip", group: "Armor", weight: 135, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 194, mDef: 97, material: "Iron" }, +{ itemId: 521113, className: "LEG01_113", name: "Hard Veris Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 7724, sellPrice: 1707, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 259, mDef: 259, material: "Leather" }, +{ itemId: 521114, className: "LEG01_114", name: "Superior Scale Leggings", type: "Equip", group: "Armor", weight: 240, maxStack: 1, price: 7724, sellPrice: 1707, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 345, mDef: 172, material: "Iron" }, +{ itemId: 521115, className: "LEG01_115", name: "Regal Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 172, mDef: 345, material: "Cloth" }, +{ itemId: 521116, className: "LEG01_116", name: "Rag Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 72, equipType1: "Pants", minLevel: 1, equipExpGroup: "Equip", def: 21, mDef: 21, material: "Leather" }, +{ itemId: 521117, className: "LEG01_117", name: "Miner's Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 95, equipType1: "Pants", minLevel: 1, equipExpGroup: "Equip", def: 19, mDef: 19, material: "Leather", poisonRes: 2 }, +{ itemId: 521118, className: "LEG01_118", name: "Old Hard Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 64, material: "Leather" }, +{ itemId: 521119, className: "LEG01_119", name: "Old Chain Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 86, mDef: 43, material: "Iron" }, +{ itemId: 521120, className: "LEG01_120", name: "Old Steel Chain Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 705, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 194, mDef: 97, material: "Iron" }, +{ itemId: 521121, className: "LEG01_121", name: "Brigandine Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 259, mDef: 259, material: "Leather" }, +{ itemId: 521122, className: "LEG01_122", name: "Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 345, mDef: 172, material: "Iron" }, +{ itemId: 521123, className: "LEG01_123", name: "Superior Quilted Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 360, sellPrice: 154, equipType1: "Pants", minLevel: 1, equipExpGroup: "Equip", def: 19, mDef: 19, material: "Leather" }, +{ itemId: 521124, className: "LEG01_124", name: "Vubbe Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 64, material: "Leather" }, +{ itemId: 521125, className: "LEG01_125", name: "Panto Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 64, material: "Leather" }, +{ itemId: 521126, className: "LEG01_126", name: "Acolyte Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 97, mDef: 194, material: "Cloth" }, +{ itemId: 521127, className: "LEG01_127", name: "Steel Chain Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 194, mDef: 97, material: "Iron" }, { itemId: 521129, className: "LEG01_129", name: "Dunkel Quilted Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 72, equipType1: "Pants", minLevel: 1, def: 19, mDef: 19, material: "Leather" }, { itemId: 521130, className: "LEG01_130", name: "Dunkel Cotton Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 43, mDef: 86, material: "Cloth" }, { itemId: 521131, className: "LEG01_131", name: "Dunkel Hard Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 64, mDef: 64, material: "Leather" }, { itemId: 521132, className: "LEG01_132", name: "Dunkel Ring Pants", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 86, mDef: 43, material: "Iron" }, -{ itemId: 521133, className: "LEG01_133", name: "Cotton Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 43, mDef: 86, material: "Cloth" }, -{ itemId: 521134, className: "LEG01_134", name: "Ring Pants", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 86, mDef: 43, material: "Iron" }, -{ itemId: 521135, className: "LEG01_135", name: "Superior Regal Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 172, mDef: 345, material: "Cloth" }, -{ itemId: 521136, className: "LEG01_136", name: "Superior Brigandine Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2457, equipType1: "Pants", minLevel: 75, def: 259, mDef: 259, material: "Leather" }, -{ itemId: 521137, className: "LEG01_137", name: "Full Plate Leggings", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 2483, equipType1: "Pants", minLevel: 75, def: 345, mDef: 172, material: "Iron" }, -{ itemId: 521138, className: "LEG01_138", name: "Fedimian Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Pants", minLevel: 120, def: 270, mDef: 540, material: "Cloth" }, -{ itemId: 521139, className: "LEG01_139", name: "Fedimian Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Pants", minLevel: 120, def: 405, mDef: 405, material: "Leather" }, -{ itemId: 521140, className: "LEG01_140", name: "Fedimian Leggings", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Pants", minLevel: 120, def: 540, mDef: 270, material: "Iron" }, -{ itemId: 521141, className: "LEG01_141", name: "Magician Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Pants", minLevel: 120, def: 270, mDef: 540, material: "Cloth" }, -{ itemId: 521142, className: "LEG01_142", name: "Hunting Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 13968, sellPrice: 3874, equipType1: "Pants", minLevel: 120, def: 405, mDef: 405, material: "Leather" }, -{ itemId: 521143, className: "LEG01_143", name: "Guard Leggings", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Pants", minLevel: 120, def: 540, mDef: 270, material: "Iron" }, -{ itemId: 521144, className: "LEG01_144", name: "Mage Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Pants", minLevel: 120, def: 270, mDef: 540, material: "Cloth" }, -{ itemId: 521145, className: "LEG01_145", name: "Skirmisher Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Pants", minLevel: 120, def: 405, mDef: 405, material: "Leather" }, -{ itemId: 521146, className: "LEG01_146", name: "Infantry Leggings", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Pants", minLevel: 120, def: 540, mDef: 270, material: "Iron" }, -{ itemId: 521147, className: "LEG01_147", name: "Archmage Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 21826, sellPrice: 4516, equipType1: "Pants", minLevel: 170, def: 378, mDef: 756, material: "Cloth" }, -{ itemId: 521148, className: "LEG01_148", name: "Superior Skirmisher Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 21826, sellPrice: 4516, equipType1: "Pants", minLevel: 170, def: 567, mDef: 567, material: "Leather" }, -{ itemId: 521149, className: "LEG01_149", name: "Superior Infantry Leggings", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 21826, sellPrice: 4516, equipType1: "Pants", minLevel: 170, def: 756, mDef: 378, material: "Iron" }, -{ itemId: 521150, className: "LEG01_150", name: "Librarian Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 5881, equipType1: "Pants", minLevel: 170, def: 378, mDef: 756, material: "Cloth" }, -{ itemId: 521151, className: "LEG01_151", name: "Veteran Pants", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 21826, sellPrice: 5881, equipType1: "Pants", minLevel: 170, def: 567, mDef: 567, material: "Leather" }, -{ itemId: 521152, className: "LEG01_152", name: "Knight Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 21826, sellPrice: 5881, equipType1: "Pants", minLevel: 170, def: 756, mDef: 378, material: "Iron" }, -{ itemId: 521153, className: "LEG01_153", name: "Superior Grima Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 1707, equipType1: "Pants", minLevel: 75, def: 172, mDef: 345, material: "Cloth" }, -{ itemId: 521154, className: "LEG01_154", name: "Royal Mage Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, def: 486, mDef: 972, material: "Cloth" }, -{ itemId: 521155, className: "LEG01_155", name: "Bandit Pants", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, def: 729, mDef: 729, material: "Leather" }, -{ itemId: 521156, className: "LEG01_156", name: "Royal Guard Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, def: 972, mDef: 486, material: "Iron" }, -{ itemId: 521157, className: "LEG01_157", name: "Superior Royal Mage Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, def: 486, mDef: 972, material: "Cloth" }, -{ itemId: 521158, className: "LEG01_158", name: "Superior Bandit Pants", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, def: 729, mDef: 729, material: "Leather" }, -{ itemId: 521159, className: "LEG01_159", name: "Superior Royal Guard Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, def: 972, mDef: 486, material: "Iron" }, -{ itemId: 521203, className: "LEG01_203", name: "Blint Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 594, mDef: 1188, material: "Cloth" }, -{ itemId: 521204, className: "LEG01_204", name: "Blint Leather Pants", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 891, mDef: 891, material: "Leather" }, -{ itemId: 521205, className: "LEG01_205", name: "Blint Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 1188, mDef: 594, material: "Iron" }, -{ itemId: 521206, className: "LEG01_206", name: "(Faded) Replica Kalinis Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, def: 594, mDef: 1188, material: "Cloth" }, -{ itemId: 521207, className: "LEG01_207", name: "(Faded) Replica Albinosas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, def: 891, mDef: 891, material: "Leather" }, -{ itemId: 521208, className: "LEG01_208", name: "(Faded) Replica Tajtanas Plate Pants", type: "Equip", group: "Armor", weight: 220, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, def: 1188, mDef: 594, material: "Iron" }, -{ itemId: 521209, className: "LEG01_209", name: "(Faded) Replica Oksinis Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Pants", minLevel: 315, def: 691, mDef: 1382, material: "Cloth" }, -{ itemId: 521210, className: "LEG01_210", name: "(Faded) Replica Kaulas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Pants", minLevel: 315, def: 1036, mDef: 1036, material: "Leather" }, -{ itemId: 521211, className: "LEG01_211", name: "(Faded) Replica Krisius Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Pants", minLevel: 315, def: 1382, mDef: 691, material: "Iron" }, -{ itemId: 522103, className: "LEG02_103", name: "Tenet Chain Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 655, equipType1: "Pants", minLevel: 15, def: 96, mDef: 48, material: "Iron" }, -{ itemId: 522104, className: "LEG02_104", name: "Zalia Leather Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 162, mDef: 162, material: "Leather" }, -{ itemId: 522106, className: "LEG02_106", name: "Studded Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 162, mDef: 162, material: "Leather", poisonRes: 16 }, -{ itemId: 522107, className: "LEG02_107", name: "Insect Skirt", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 216, mDef: 108, material: "Iron", poisonRes: 6 }, -{ itemId: 522108, className: "LEG02_108", name: "Protas Trousers", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 108, mDef: 216, material: "Cloth" }, -{ itemId: 522110, className: "LEG02_110", name: "Light Plate Leggings", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 3276, sellPrice: 1653, equipType1: "Pants", minLevel: 40, def: 216, mDef: 108, material: "Iron" }, -{ itemId: 522112, className: "LEG02_112", name: "Pokubon Leather Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 288, mDef: 288, material: "Leather" }, -{ itemId: 522113, className: "LEG02_113", name: "Drake Leather Leggings", type: "Equip", group: "Armor", weight: 165, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 288, mDef: 288, material: "Leather" }, -{ itemId: 522114, className: "LEG02_114", name: "Silver Plate Leggings", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 384, mDef: 192, material: "Iron" }, -{ itemId: 522123, className: "LEG02_123", name: "Cafrisun Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 72, mDef: 72, material: "Leather" }, -{ itemId: 522124, className: "LEG02_124", name: "Dio Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 360, sellPrice: 154, equipType1: "Pants", minLevel: 1, def: 14, mDef: 28, material: "Cloth", earthRes: 4 }, -{ itemId: 522125, className: "LEG02_125", name: "Dio Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 411, equipType1: "Pants", minLevel: 1, def: 21, mDef: 21, material: "Leather", poisonRes: 4 }, -{ itemId: 522126, className: "LEG02_126", name: "Dio Chain Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Pants", minLevel: 1, def: 28, mDef: 14, material: "Iron", darkRes: 4 }, -{ itemId: 522127, className: "LEG02_127", name: "Thresh Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 48, mDef: 96, material: "Cloth", darkRes: 5 }, -{ itemId: 522128, className: "LEG02_128", name: "Thresh Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 72, mDef: 72, material: "Leather", lightningRes: 5 }, -{ itemId: 522129, className: "LEG02_129", name: "Thresh Chain Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 96, mDef: 48, material: "Iron", darkRes: 5 }, -{ itemId: 522130, className: "LEG02_130", name: "Sestas Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 48, mDef: 96, material: "Cloth", lightningRes: 6 }, -{ itemId: 522131, className: "LEG02_131", name: "Sestas Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 72, mDef: 72, material: "Leather", poisonRes: 6 }, -{ itemId: 522132, className: "LEG02_132", name: "Sestas Chain Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 2592, sellPrice: 655, equipType1: "Pants", minLevel: 15, def: 96, mDef: 48, material: "Iron", earthRes: 6 }, -{ itemId: 522133, className: "LEG02_133", name: "Dratt Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 108, mDef: 216, material: "Cloth", iceRes: 7 }, -{ itemId: 522134, className: "LEG02_134", name: "Dratt Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 162, mDef: 162, material: "Leather", darkRes: 7 }, -{ itemId: 522135, className: "LEG02_135", name: "Dratt Plate Leggings", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 216, mDef: 108, material: "Iron", lightningRes: 7 }, -{ itemId: 522136, className: "LEG02_136", name: "Aston Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 108, mDef: 216, material: "Cloth", darkRes: 8 }, -{ itemId: 522137, className: "LEG02_137", name: "Aston Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 162, mDef: 162, material: "Leather", poisonRes: 8 }, -{ itemId: 522138, className: "LEG02_138", name: "Aston Plate Leggings", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 3276, sellPrice: 1572, equipType1: "Pants", minLevel: 40, def: 216, mDef: 108, material: "Iron", earthRes: 8 }, -{ itemId: 522139, className: "LEG02_139", name: "Devi Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 1868, equipType1: "Pants", minLevel: 75, def: 192, mDef: 384, material: "Cloth", lightningRes: 9 }, -{ itemId: 522140, className: "LEG02_140", name: "Devi Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 288, mDef: 288, material: "Leather", poisonRes: 9 }, -{ itemId: 522141, className: "LEG02_141", name: "Devi Plate Leggings", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 384, mDef: 192, material: "Iron", iceRes: 9 }, -{ itemId: 522142, className: "LEG02_142", name: "Prima Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 192, mDef: 384, material: "Cloth", darkRes: 10 }, -{ itemId: 522143, className: "LEG02_143", name: "Prima Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2457, equipType1: "Pants", minLevel: 75, def: 288, mDef: 288, material: "Leather", iceRes: 10 }, -{ itemId: 522144, className: "LEG02_144", name: "Prima Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 7724, sellPrice: 2851, equipType1: "Pants", minLevel: 75, def: 384, mDef: 192, material: "Iron", fireRes: 10 }, -{ itemId: 522150, className: "LEG02_150", name: "Riena Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 192, mDef: 384, material: "Cloth" }, -{ itemId: 522151, className: "LEG02_151", name: "Riena Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 288, mDef: 288, material: "Leather", poisonRes: 8 }, -{ itemId: 522152, className: "LEG02_152", name: "Riena Plate Leggings", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 7724, sellPrice: 2457, equipType1: "Pants", minLevel: 75, def: 384, mDef: 192, material: "Iron" }, -{ itemId: 522153, className: "LEG02_153", name: "Watcher Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 655, equipType1: "Pants", minLevel: 15, def: 72, mDef: 72, material: "Leather" }, -{ itemId: 522154, className: "LEG02_154", name: "Earth Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1653, equipType1: "Pants", minLevel: 40, def: 108, mDef: 216, material: "Cloth" }, -{ itemId: 522155, className: "LEG02_155", name: "Leather Earth Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1653, equipType1: "Pants", minLevel: 40, def: 162, mDef: 162, material: "Leather", earthRes: 4 }, -{ itemId: 522156, className: "LEG02_156", name: "Earth Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 3276, sellPrice: 1653, equipType1: "Pants", minLevel: 40, def: 216, mDef: 108, material: "Iron" }, -{ itemId: 522157, className: "LEG02_157", name: "Legwyn Family Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Pants", minLevel: 120, def: 300, mDef: 600, material: "Cloth" }, -{ itemId: 522158, className: "LEG02_158", name: "Legwyn Family Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Pants", minLevel: 120, def: 450, mDef: 450, material: "Leather" }, -{ itemId: 522159, className: "LEG02_159", name: "Legwyn Family Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Pants", minLevel: 120, def: 600, mDef: 300, material: "Iron" }, -{ itemId: 522160, className: "LEG02_160", name: "Ogva Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 48, mDef: 96, material: "Cloth", fireRes: 3 }, -{ itemId: 522161, className: "LEG02_161", name: "Ogva Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 72, mDef: 72, material: "Leather", darkRes: 3 }, -{ itemId: 522162, className: "LEG02_162", name: "Ogva Chain Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 96, mDef: 48, material: "Iron", poisonRes: 3 }, -{ itemId: 522163, className: "LEG02_163", name: "Partis Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 48, mDef: 96, material: "Cloth" }, -{ itemId: 522164, className: "LEG02_164", name: "Partis Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 72, mDef: 72, material: "Leather" }, -{ itemId: 522165, className: "LEG02_165", name: "Partis Ring Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 96, mDef: 48, material: "Iron" }, -{ itemId: 522166, className: "LEG02_166", name: "Sirdgela Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 108, mDef: 216, material: "Cloth", poisonRes: 6 }, -{ itemId: 522167, className: "LEG02_167", name: "Sirdgela Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 162, mDef: 162, material: "Leather", earthRes: 6 }, -{ itemId: 522168, className: "LEG02_168", name: "Sirdgela Scale Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 216, mDef: 108, material: "Iron", iceRes: 6 }, -{ itemId: 522169, className: "LEG02_169", name: "Philis Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 108, mDef: 216, material: "Cloth", lightningRes: 6 }, -{ itemId: 522170, className: "LEG02_170", name: "Philis Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 162, mDef: 162, material: "Leather", poisonRes: 6 }, -{ itemId: 522171, className: "LEG02_171", name: "Philis Scale Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 216, mDef: 108, material: "Iron", fireRes: 6 }, -{ itemId: 522172, className: "LEG02_172", name: "Allerno Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 1653, equipType1: "Pants", minLevel: 75, def: 192, mDef: 384, material: "Cloth", darkRes: 10 }, -{ itemId: 522173, className: "LEG02_173", name: "Allerno Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 7724, sellPrice: 1653, equipType1: "Pants", minLevel: 75, def: 288, mDef: 288, material: "Leather", iceRes: 10 }, -{ itemId: 522174, className: "LEG02_174", name: "Allerno Plate Leggings", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 7724, sellPrice: 1653, equipType1: "Pants", minLevel: 75, def: 384, mDef: 192, material: "Iron", earthRes: 10 }, -{ itemId: 522175, className: "LEG02_175", name: "Perelin Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 1653, equipType1: "Pants", minLevel: 75, def: 192, mDef: 384, material: "Cloth" }, -{ itemId: 522176, className: "LEG02_176", name: "Perelin Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 7724, sellPrice: 1653, equipType1: "Pants", minLevel: 75, def: 288, mDef: 288, material: "Leather" }, -{ itemId: 522177, className: "LEG02_177", name: "Perelin Plate Leggings", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 7724, sellPrice: 1653, equipType1: "Pants", minLevel: 75, def: 384, mDef: 192, material: "Iron" }, -{ itemId: 522178, className: "LEG02_178", name: "Turn Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 2431, equipType1: "Pants", minLevel: 120, def: 300, mDef: 600, material: "Cloth", poisonRes: 14 }, -{ itemId: 522179, className: "LEG02_179", name: "Turn Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 13968, sellPrice: 2431, equipType1: "Pants", minLevel: 120, def: 450, mDef: 450, material: "Leather", lightningRes: 14 }, -{ itemId: 522180, className: "LEG02_180", name: "Turn Plate Leggings", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 13968, sellPrice: 2431, equipType1: "Pants", minLevel: 120, def: 600, mDef: 300, material: "Iron", iceRes: 14 }, -{ itemId: 522181, className: "LEG02_181", name: "Shaton Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 2793, equipType1: "Pants", minLevel: 120, def: 300, mDef: 600, material: "Cloth", darkRes: 16 }, -{ itemId: 522182, className: "LEG02_182", name: "Shaton Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 13968, sellPrice: 2793, equipType1: "Pants", minLevel: 120, def: 450, mDef: 450, material: "Leather", fireRes: 16 }, -{ itemId: 522183, className: "LEG02_183", name: "Shaton Plate Leggings", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 13968, sellPrice: 2793, equipType1: "Pants", minLevel: 120, def: 600, mDef: 300, material: "Iron", darkRes: 16 }, -{ itemId: 522184, className: "LEG02_184", name: "Tyla Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 21826, sellPrice: 3901, equipType1: "Pants", minLevel: 170, def: 420, mDef: 840, material: "Cloth", darkRes: 21 }, -{ itemId: 522185, className: "LEG02_185", name: "Tyla Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 21826, sellPrice: 3901, equipType1: "Pants", minLevel: 170, def: 630, mDef: 630, material: "Leather", iceRes: 21 }, -{ itemId: 522186, className: "LEG02_186", name: "Tyla Plate Leggings", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 21826, sellPrice: 3901, equipType1: "Pants", minLevel: 170, def: 840, mDef: 420, material: "Iron", poisonRes: 21 }, -{ itemId: 522187, className: "LEG02_187", name: "Velnia Monkey Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, def: 162, mDef: 162, material: "Leather", lightningRes: 3 }, -{ itemId: 522188, className: "LEG02_188", name: "Elkosh Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, def: 540, mDef: 1080, material: "Cloth" }, -{ itemId: 522189, className: "LEG02_189", name: "Ibre Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, def: 810, mDef: 810, material: "Leather" }, -{ itemId: 522190, className: "LEG02_190", name: "Grynas Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, def: 1080, mDef: 540, material: "Iron" }, -{ itemId: 522200, className: "LEG02_200", name: "Valtas Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, def: 540, mDef: 1080, material: "Cloth", darkRes: 30 }, -{ itemId: 522201, className: "LEG02_201", name: "Valtas Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, def: 810, mDef: 810, material: "Leather", iceRes: 30 }, -{ itemId: 522202, className: "LEG02_202", name: "Valtas Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, def: 1080, mDef: 540, material: "Iron", poisonRes: 30 }, -{ itemId: 522203, className: "LEG02_203", name: "Hasta Pants", type: "Equip", group: "Armor", weight: 105, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 660, mDef: 1320, material: "Cloth" }, -{ itemId: 522204, className: "LEG02_204", name: "Hasta Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 990, mDef: 990, material: "Leather" }, -{ itemId: 522205, className: "LEG02_205", name: "Hasta Plate Pants", type: "Equip", group: "Armor", weight: 195, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 1320, mDef: 660, material: "Iron" }, -{ itemId: 522208, className: "LEG02_208", name: "Manahas Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 990, mDef: 990, material: "Leather", iceRes: 15 }, -{ itemId: 522209, className: "LEG02_209", name: "(Faded) Kalinis Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, def: 660, mDef: 1320, material: "Cloth" }, -{ itemId: 522210, className: "LEG02_210", name: "(Faded) Albinosas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, def: 990, mDef: 990, material: "Leather" }, -{ itemId: 522211, className: "LEG02_211", name: "(Faded) Tajtanas Plate Pants", type: "Equip", group: "Armor", weight: 220, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, def: 1320, mDef: 660, material: "Iron" }, -{ itemId: 522212, className: "LEG02_212", name: "(Faded) Oksinis Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Pants", minLevel: 315, def: 768, mDef: 1536, material: "Cloth" }, -{ itemId: 522213, className: "LEG02_213", name: "(Faded) Kaulas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Pants", minLevel: 315, def: 1152, mDef: 1152, material: "Leather" }, -{ itemId: 522214, className: "LEG02_214", name: "(Faded) Krisius Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Pants", minLevel: 315, def: 1536, mDef: 768, material: "Iron" }, -{ itemId: 522215, className: "LEG02_215", name: "Alpra Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, def: 300, mDef: 600, material: "Cloth" }, -{ itemId: 522216, className: "LEG02_216", name: "Eastern Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, def: 450, mDef: 450, material: "Leather" }, -{ itemId: 522217, className: "LEG02_217", name: "Pangle Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, def: 600, mDef: 300, material: "Iron" }, -{ itemId: 522218, className: "LEG02_218", name: "War Mage Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, def: 420, mDef: 840, material: "Cloth" }, -{ itemId: 522219, className: "LEG02_219", name: "Eaglestar Leather Pants", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, def: 630, mDef: 630, material: "Leather" }, -{ itemId: 522220, className: "LEG02_220", name: "Nyx Knight Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, def: 840, mDef: 420, material: "Iron" }, -{ itemId: 522221, className: "LEG02_221", name: "Marone Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, def: 192, mDef: 384, material: "Cloth" }, -{ itemId: 522222, className: "LEG02_222", name: "Prakeh Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, def: 540, mDef: 1080, material: "Cloth" }, -{ itemId: 522223, className: "LEG02_223", name: "Razna Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, def: 288, mDef: 288, material: "Leather" }, -{ itemId: 522224, className: "LEG02_224", name: "Keyarc Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, def: 810, mDef: 810, material: "Leather" }, -{ itemId: 522225, className: "LEG02_225", name: "Barghar Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, def: 384, mDef: 192, material: "Iron" }, -{ itemId: 522226, className: "LEG02_226", name: "Suurit Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, def: 1080, mDef: 540, material: "Iron" }, -{ itemId: 522227, className: "LEG02_227", name: "Kalinis Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, def: 660, mDef: 1320, material: "Cloth" }, -{ itemId: 522228, className: "LEG02_228", name: "Albinosas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, def: 990, mDef: 990, material: "Leather" }, -{ itemId: 522229, className: "LEG02_229", name: "Tajtanas Plate Pants", type: "Equip", group: "Armor", weight: 220, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, def: 1320, mDef: 660, material: "Iron" }, -{ itemId: 522230, className: "LEG02_230", name: "Oksinis Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 768, mDef: 1536, material: "Cloth" }, -{ itemId: 522231, className: "LEG02_231", name: "Kaulas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 1152, mDef: 1152, material: "Leather" }, -{ itemId: 522232, className: "LEG02_232", name: "Krisius Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 1536, mDef: 768, material: "Iron" }, -{ itemId: 522233, className: "LEG02_233", name: "Irellis Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 852, mDef: 1704, material: "Cloth" }, -{ itemId: 522234, className: "LEG02_234", name: "Jevenellis Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 1278, mDef: 1278, material: "Leather" }, -{ itemId: 522235, className: "LEG02_235", name: "Basticle Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 1704, mDef: 852, material: "Iron" }, -{ itemId: 522236, className: "LEG02_236", name: "Planeta Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 924, mDef: 1848, material: "Cloth" }, -{ itemId: 522237, className: "LEG02_237", name: "Ukas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 1386, mDef: 1386, material: "Leather" }, -{ itemId: 522238, className: "LEG02_238", name: "Galaktikos Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 1848, mDef: 924, material: "Iron" }, -{ itemId: 522239, className: "LEG02_239", name: "Pilgriste Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 972, mDef: 1944, material: "Cloth" }, -{ itemId: 522240, className: "LEG02_240", name: "Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1458, mDef: 1458, material: "Leather" }, -{ itemId: 522241, className: "LEG02_241", name: "Akmo Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1944, mDef: 972, material: "Iron" }, -{ itemId: 523103, className: "LEG03_103", name: "Vine Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 211, mDef: 422, material: "Cloth", fireRes: -14, poisonRes: 24 }, -{ itemId: 523105, className: "LEG03_105", name: "Soul Chaser Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 316, mDef: 316, material: "Leather", holyRes: 40 }, -{ itemId: 523106, className: "LEG03_106", name: "Bone Skirt", type: "Equip", group: "Armor", weight: 240, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 422, mDef: 211, material: "Iron", lightningRes: 31, darkRes: 26 }, -{ itemId: 523107, className: "LEG03_107", name: "Shade Skirt", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 72, equipType1: "Pants", minLevel: 75, def: 316, mDef: 316, material: "Leather", darkRes: 28 }, -{ itemId: 523111, className: "LEG03_111", name: "Roxona Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Pants", minLevel: 170, def: 462, mDef: 924, material: "Cloth", lightningRes: 9 }, -{ itemId: 523112, className: "LEG03_112", name: "Roxona Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Pants", minLevel: 170, def: 693, mDef: 693, material: "Leather", ariesDef: 7, darkRes: 8 }, -{ itemId: 523113, className: "LEG03_113", name: "Roxona Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Pants", minLevel: 170, def: 924, mDef: 462, material: "Iron", iceRes: 6 }, -{ itemId: 523114, className: "LEG03_114", name: "Virtov Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, def: 594, mDef: 1188, material: "Cloth" }, -{ itemId: 523115, className: "LEG03_115", name: "Virtov Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, def: 891, mDef: 891, material: "Leather" }, -{ itemId: 523116, className: "LEG03_116", name: "Virtov Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, def: 1188, mDef: 594, material: "Iron", fireRes: 21 }, -{ itemId: 523130, className: "LEG03_130", name: "Newt Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 726, mDef: 1452, material: "Cloth" }, -{ itemId: 523131, className: "LEG03_131", name: "Newt Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 1089, mDef: 1089, material: "Leather" }, -{ itemId: 523132, className: "LEG03_132", name: "Newt Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 1452, mDef: 726, material: "Iron", fireRes: 21 }, -{ itemId: 523301, className: "LEG03_301", name: "(Faded) Alpra Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Pants", minLevel: 120, addMAtk: 7, def: 330, mDef: 660, material: "Cloth" }, -{ itemId: 523302, className: "LEG03_302", name: "(Faded) Eastern Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Pants", minLevel: 120, def: 495, mDef: 495, material: "Leather" }, -{ itemId: 523303, className: "LEG03_303", name: "(Faded) Pangle Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Pants", minLevel: 120, def: 660, mDef: 330, material: "Iron" }, -{ itemId: 523304, className: "LEG03_304", name: "(Faded) War Mage Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 4789, equipType1: "Pants", minLevel: 170, def: 462, mDef: 924, material: "Cloth" }, -{ itemId: 523305, className: "LEG03_305", name: "(Faded) Eaglestar Leather Pants", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 4789, equipType1: "Pants", minLevel: 170, def: 693, mDef: 693, material: "Leather", iceRes: 18 }, -{ itemId: 523306, className: "LEG03_306", name: "(Faded) Nyx Knight Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 4789, equipType1: "Pants", minLevel: 170, def: 924, mDef: 462, material: "Iron", fireRes: 8 }, -{ itemId: 523307, className: "LEG03_307", name: "(Faded) Marone Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 1360, equipType1: "Pants", minLevel: 75, def: 211, mDef: 422, material: "Cloth" }, -{ itemId: 523308, className: "LEG03_308", name: "(Faded) Prakeh Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, def: 594, mDef: 1188, material: "Cloth" }, -{ itemId: 523309, className: "LEG03_309", name: "(Faded) Razna Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 1360, equipType1: "Pants", minLevel: 75, def: 316, mDef: 316, material: "Leather", soulRes: 15 }, -{ itemId: 523310, className: "LEG03_310", name: "(Faded) Keyarc Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, def: 891, mDef: 891, material: "Leather", slashDef: 103 }, -{ itemId: 523311, className: "LEG03_311", name: "(Faded) Barghar Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 1360, equipType1: "Pants", minLevel: 75, def: 422, mDef: 211, material: "Iron", soulRes: 12 }, -{ itemId: 523312, className: "LEG03_312", name: "(Faded) Suurit Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, def: 1188, mDef: 594, material: "Iron", iceRes: 40 }, -{ itemId: 523313, className: "LEG03_313", name: "(Faded) Vienti Kalinis?Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, def: 726, mDef: 1452, material: "Cloth" }, -{ itemId: 523314, className: "LEG03_314", name: "(Faded) Vienti Albinosas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, def: 1089, mDef: 1089, material: "Leather" }, -{ itemId: 523315, className: "LEG03_315", name: "(Faded) Vienti Tajtanas Plate Pants", type: "Equip", group: "Armor", weight: 220, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, def: 1452, mDef: 726, material: "Iron" }, -{ itemId: 523316, className: "LEG03_316", name: "(Faded) Vienti Oksinis Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Pants", minLevel: 315, def: 844, mDef: 1689, material: "Cloth" }, -{ itemId: 523317, className: "LEG03_317", name: "(Faded) Vienti Kaulas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Pants", minLevel: 315, def: 1267, mDef: 1267, material: "Leather" }, -{ itemId: 523318, className: "LEG03_318", name: "(Faded) Vienti Krisius Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Pants", minLevel: 315, def: 1689, mDef: 844, material: "Iron" }, -{ itemId: 523319, className: "LEG03_319", name: "Berthas Alpra Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, def: 330, mDef: 660, material: "Cloth" }, -{ itemId: 523320, className: "LEG03_320", name: "Berthas Eastern Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, def: 495, mDef: 495, material: "Leather" }, -{ itemId: 523321, className: "LEG03_321", name: "Berthas Pangle Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, def: 660, mDef: 330, material: "Iron" }, -{ itemId: 523322, className: "LEG03_322", name: "Berthas Warmage Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, def: 462, mDef: 924, material: "Cloth" }, -{ itemId: 523323, className: "LEG03_323", name: "Berthas Eaglestar Leather Pants", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, def: 693, mDef: 693, material: "Leather" }, -{ itemId: 523324, className: "LEG03_324", name: "Berthas Nyx Knight Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, def: 924, mDef: 462, material: "Iron" }, -{ itemId: 523325, className: "LEG03_325", name: "Berthas Marone Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, def: 211, mDef: 422, material: "Cloth" }, -{ itemId: 523326, className: "LEG03_326", name: "Berthas Prakeh Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, def: 594, mDef: 1188, material: "Cloth" }, -{ itemId: 523327, className: "LEG03_327", name: "Berthas Raszna Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, def: 316, mDef: 316, material: "Leather" }, -{ itemId: 523328, className: "LEG03_328", name: "Berthas Keyarc Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, def: 891, mDef: 891, material: "Leather" }, -{ itemId: 523329, className: "LEG03_329", name: "Berths Barghar Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, def: 422, mDef: 211, material: "Iron" }, -{ itemId: 523330, className: "LEG03_330", name: "Berthas Suurit Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, def: 1188, mDef: 594, material: "Iron" }, -{ itemId: 523331, className: "LEG03_331", name: "Berthas Kalinis Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, def: 726, mDef: 1452, material: "Cloth" }, -{ itemId: 523332, className: "LEG03_332", name: "Berthas Albinosas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, def: 1089, mDef: 1089, material: "Leather" }, -{ itemId: 523333, className: "LEG03_333", name: "Berthas Tajtanas Plate Pants", type: "Equip", group: "Armor", weight: 220, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, def: 1452, mDef: 726, material: "Iron" }, -{ itemId: 523334, className: "LEG03_334", name: "Berthas Oksinis Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 844, mDef: 1689, material: "Cloth" }, -{ itemId: 523335, className: "LEG03_335", name: "Berthas Kaulas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 1267, mDef: 1267, material: "Leather" }, -{ itemId: 523336, className: "LEG03_336", name: "Berthas Krisius Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 1689, mDef: 844, material: "Iron" }, -{ itemId: 523337, className: "LEG03_337", name: "Berthas Irellis Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 937, mDef: 1874, material: "Cloth" }, -{ itemId: 523338, className: "LEG03_338", name: "Berthas Jevenellis Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 1405, mDef: 1405, material: "Leather" }, -{ itemId: 523339, className: "LEG03_339", name: "Berthas Basticle Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 1874, mDef: 937, material: "Iron" }, -{ itemId: 523340, className: "LEG03_340", name: "Berthas Planeta Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 1016, mDef: 2032, material: "Cloth" }, -{ itemId: 523341, className: "LEG03_341", name: "Berthas Ukas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 1524, mDef: 1524, material: "Leather" }, -{ itemId: 523342, className: "LEG03_342", name: "Berthas Galaktikos Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 2032, mDef: 1016, material: "Iron" }, -{ itemId: 523343, className: "LEG03_343", name: "Berthas Pilgriste Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1069, mDef: 2138, material: "Cloth" }, -{ itemId: 523344, className: "LEG03_344", name: "Berthas Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1603, mDef: 1603, material: "Leather" }, -{ itemId: 523345, className: "LEG03_345", name: "Berthas Akmo Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 2138, mDef: 1069, material: "Iron" }, -{ itemId: 523346, className: "LEG03_346", name: "Berthas Dysnai Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, def: 1148, mDef: 2296, material: "Cloth" }, -{ itemId: 523347, className: "LEG03_347", name: "Berthas Dysnai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, def: 1722, mDef: 1722, material: "Leather" }, -{ itemId: 523348, className: "LEG03_348", name: "Berthas Dysnai Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, def: 2296, mDef: 1148, material: "Iron" }, -{ itemId: 524103, className: "LEG04_103", name: "Hydra Trousers", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, def: 360, mDef: 360, material: "Leather", poisonRes: 40 }, -{ itemId: 524106, className: "LEG04_106", name: "Lolopanther Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 1056, mDef: 2112, material: "Cloth", earthRes: 34 }, -{ itemId: 524107, className: "LEG04_107", name: "Lolopanther Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 1584, mDef: 1584, material: "Leather", ariesDef: 50, earthRes: 36 }, -{ itemId: 524108, className: "LEG04_108", name: "Lolopanther Plate Leggings", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 2112, mDef: 1056, material: "Iron", strikeDef: 48, earthRes: 40 }, -{ itemId: 524109, className: "LEG04_109", name: "Solmiki Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 11656, equipType1: "Pants", minLevel: 330, def: 1286, mDef: 2572, material: "Cloth", holyRes: 70 }, -{ itemId: 524110, className: "LEG04_110", name: "Solmiki Leather Pants", type: "Equip", group: "Armor", weight: 140, maxStack: 1, price: 43920, sellPrice: 11656, equipType1: "Pants", minLevel: 330, def: 1929, mDef: 1929, material: "Leather", ariesDef: 75, holyRes: 73 }, -{ itemId: 524111, className: "LEG04_111", name: "Solmiki Plate Leggings", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 11656, equipType1: "Pants", minLevel: 330, def: 2572, mDef: 1286, material: "Iron", strikeDef: 99, holyRes: 82 }, -{ itemId: 524112, className: "LEG04_112", name: "Primus Alpra Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, def: 375, mDef: 750, material: "Cloth" }, -{ itemId: 524113, className: "LEG04_113", name: "Primus Eastern Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, def: 562, mDef: 562, material: "Leather" }, -{ itemId: 524114, className: "LEG04_114", name: "Primus Pangle Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, def: 750, mDef: 375, material: "Iron" }, -{ itemId: 524115, className: "LEG04_115", name: "Primus Warmage Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, def: 525, mDef: 1050, material: "Cloth" }, -{ itemId: 524116, className: "LEG04_116", name: "Primus Eaglestar Leather Pants", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, def: 787, mDef: 787, material: "Leather" }, -{ itemId: 524117, className: "LEG04_117", name: "Primus Nyx Knight Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, def: 1050, mDef: 525, material: "Iron" }, -{ itemId: 524118, className: "LEG04_118", name: "Primus Marone Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, def: 240, mDef: 480, material: "Cloth" }, -{ itemId: 524119, className: "LEG04_119", name: "Primus Prakeh Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, def: 675, mDef: 1350, material: "Cloth" }, -{ itemId: 524120, className: "LEG04_120", name: "Primus Razna Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, def: 360, mDef: 360, material: "Leather" }, -{ itemId: 524121, className: "LEG04_121", name: "Primus Keyarc Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, def: 1012, mDef: 1012, material: "Leather" }, -{ itemId: 524122, className: "LEG04_122", name: "Primus Barghar Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, def: 480, mDef: 240, material: "Iron" }, -{ itemId: 524123, className: "LEG04_123", name: "Primus Suurit Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, def: 1350, mDef: 675, material: "Iron" }, -{ itemId: 524124, className: "LEG04_124", name: "Primus Kalinis Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, def: 825, mDef: 1650, material: "Cloth" }, -{ itemId: 524125, className: "LEG04_125", name: "Primus Albinosas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, def: 1237, mDef: 1237, material: "Leather" }, -{ itemId: 524126, className: "LEG04_126", name: "Primus Tajtanas Plate Pants", type: "Equip", group: "Armor", weight: 220, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, def: 1650, mDef: 825, material: "Iron" }, -{ itemId: 524127, className: "LEG04_127", name: "Primus Oksinis Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 960, mDef: 1920, material: "Cloth" }, -{ itemId: 524128, className: "LEG04_128", name: "Primus Kaulas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 1440, mDef: 1440, material: "Leather" }, -{ itemId: 524129, className: "LEG04_129", name: "Primus Krisius Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 1920, mDef: 960, material: "Iron" }, -{ itemId: 524130, className: "LEG04_130", name: "Primus Irellis Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 1065, mDef: 2130, material: "Cloth" }, -{ itemId: 524131, className: "LEG04_131", name: "Primus Jevenellis Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 1597, mDef: 1597, material: "Leather" }, -{ itemId: 524132, className: "LEG04_132", name: "Primus Basticle Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 2130, mDef: 1065, material: "Iron" }, -{ itemId: 524133, className: "LEG04_133", name: "Laitas Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 1065, mDef: 2130, addMDef: 288, material: "Cloth" }, -{ itemId: 524134, className: "LEG04_134", name: "Fietas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 1597, mDef: 1597, material: "Leather" }, -{ itemId: 524135, className: "LEG04_135", name: "Ausura Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 2130, mDef: 1065, addDef: 288, material: "Iron" }, -{ itemId: 524136, className: "LEG04_136", name: "Primus Planeta Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 1155, mDef: 2310, material: "Cloth" }, -{ itemId: 524137, className: "LEG04_137", name: "Primus Ukas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 1732, mDef: 1732, material: "Leather" }, -{ itemId: 524138, className: "LEG04_138", name: "Primus Galaktikos Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 2310, mDef: 1155, material: "Iron" }, -{ itemId: 524139, className: "LEG04_139", name: "Ignas Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 1155, mDef: 2310, material: "Cloth" }, -{ itemId: 524140, className: "LEG04_140", name: "Ignas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 1732, mDef: 1732, material: "Leather" }, -{ itemId: 524141, className: "LEG04_141", name: "Ignas Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 2310, mDef: 1155, material: "Iron" }, -{ itemId: 524142, className: "LEG04_142", name: "Primus Pilgriste Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1215, mDef: 2430, material: "Cloth" }, -{ itemId: 524143, className: "LEG04_143", name: "Primus Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1822, mDef: 1822, material: "Leather" }, -{ itemId: 524144, className: "LEG04_144", name: "Primus Akmo Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 2430, mDef: 1215, material: "Iron" }, -{ itemId: 524145, className: "LEG04_145", name: "Skiaclipse Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1215, mDef: 2430, addMDef: 387, material: "Cloth" }, -{ itemId: 524146, className: "LEG04_146", name: "Skiaclipse Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1822, mDef: 1822, material: "Leather" }, -{ itemId: 524147, className: "LEG04_147", name: "Skiaclipse Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, pAtk: 74, def: 2430, mDef: 1215, material: "Iron" }, -{ itemId: 524148, className: "LEG04_148", name: "Skiaclipse Pants - Compassion", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1215, mDef: 2430, addMDef: 160, material: "Cloth" }, -{ itemId: 524149, className: "LEG04_149", name: "Skiaclipse Leather Pants - Assault", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1822, mDef: 1822, material: "Leather" }, -{ itemId: 524150, className: "LEG04_150", name: "Skiaclipse Plate Pants - Iron Wall", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 2430, mDef: 1215, material: "Iron" }, -{ itemId: 524151, className: "LEG04_151", name: "Moringponia Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 2430, mDef: 1215, material: "Iron" }, -{ itemId: 524152, className: "LEG04_152", name: "Moringponia Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1215, mDef: 2430, material: "Cloth" }, -{ itemId: 524153, className: "LEG04_153", name: "Moringponia Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1822, mDef: 1822, material: "Leather" }, -{ itemId: 524154, className: "LEG04_154", name: "Misrus Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 2430, mDef: 1215, material: "Iron" }, -{ itemId: 524155, className: "LEG04_155", name: "Misrus Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1215, mDef: 2430, material: "Cloth" }, -{ itemId: 524156, className: "LEG04_156", name: "Misrus Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1822, mDef: 1822, material: "Leather" }, -{ itemId: 524157, className: "LEG04_157", name: "Primus Dysnai Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, def: 1305, mDef: 2610, material: "Cloth" }, -{ itemId: 524158, className: "LEG04_158", name: "Primus Dysnai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, def: 1957, mDef: 1957, material: "Leather" }, -{ itemId: 524159, className: "LEG04_159", name: "Primus Dysnai Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, def: 2610, mDef: 1305, material: "Iron" }, -{ itemId: 525101, className: "LEG05_101", name: "Velcoffer Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 360, def: 1401, mDef: 2803, material: "Cloth" }, -{ itemId: 525102, className: "LEG05_102", name: "Velcoffer Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 360, def: 2102, mDef: 2102, material: "Leather" }, -{ itemId: 525103, className: "LEG05_103", name: "Velcoffer Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 360, def: 2803, mDef: 1401, material: "Iron" }, -{ itemId: 525104, className: "LEG05_104", name: "Velcoffer Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 360, def: 1401, mDef: 2803, material: "Cloth" }, -{ itemId: 525105, className: "LEG05_105", name: "Velcoffer Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 360, def: 2102, mDef: 2102, material: "Leather" }, -{ itemId: 525106, className: "LEG05_106", name: "Velcoffer Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 360, def: 2803, mDef: 1401, material: "Iron" }, -{ itemId: 525107, className: "LEG05_107", name: "Savinose Pilgriste Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1555, mDef: 3110, material: "Cloth" }, -{ itemId: 525108, className: "LEG05_108", name: "Savinose Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 2332, mDef: 2332, material: "Leather" }, -{ itemId: 525109, className: "LEG05_109", name: "Savinose Akmo Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 3110, mDef: 1555, material: "Iron" }, -{ itemId: 525110, className: "LEG05_110", name: "Skiaclipse Varna Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 3110, mDef: 1555, material: "Iron" }, -{ itemId: 525111, className: "LEG05_111", name: "Skiaclipse Varna Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 2332, mDef: 2332, material: "Leather" }, -{ itemId: 525112, className: "LEG05_112", name: "Skiaclipse Varna Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1555, mDef: 3110, material: "Cloth" }, -{ itemId: 531101, className: "TOP01_101", name: "Light Armor", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 360, sellPrice: 72, equipType1: "Shirt", minLevel: 1, def: 19, mDef: 19, material: "Leather" }, -{ itemId: 531102, className: "TOP01_102", name: "Quilted Armor", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 360, sellPrice: 72, equipType1: "Shirt", minLevel: 1, def: 19, mDef: 19, material: "Leather" }, -{ itemId: 531103, className: "TOP01_103", name: "Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Shirt", minLevel: 1, def: 19, mDef: 19, material: "Leather" }, -{ itemId: 531104, className: "TOP01_104", name: "Hard Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 64, mDef: 64, material: "Leather" }, -{ itemId: 531105, className: "TOP01_105", name: "Chainmail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 540, equipType1: "Shirt", minLevel: 15, def: 86, mDef: 43, material: "Iron" }, -{ itemId: 531106, className: "TOP01_106", name: "Mark Tunic", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 145, mDef: 145, material: "Leather" }, -{ itemId: 531107, className: "TOP01_107", name: "Forest Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 145, mDef: 145, material: "Leather" }, -{ itemId: 531108, className: "TOP01_108", name: "Grima Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 97, mDef: 194, material: "Cloth" }, -{ itemId: 531109, className: "TOP01_109", name: "Veris Tunic", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 145, mDef: 145, material: "Leather" }, -{ itemId: 531110, className: "TOP01_110", name: "Scale Mail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 194, mDef: 97, material: "Iron" }, -{ itemId: 531111, className: "TOP01_111", name: "Forest Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 97, mDef: 194, material: "Cloth" }, -{ itemId: 531112, className: "TOP01_112", name: "Klaida Mail", type: "Equip", group: "Armor", weight: 135, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 194, mDef: 97, material: "Iron" }, -{ itemId: 531113, className: "TOP01_113", name: "Hard Veris Tunic", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 259, mDef: 259, material: "Leather" }, -{ itemId: 531114, className: "TOP01_114", name: "Superior Scale Mail", type: "Equip", group: "Armor", weight: 240, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 345, mDef: 172, material: "Iron" }, -{ itemId: 531115, className: "TOP01_115", name: "Regal Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 172, mDef: 345, material: "Cloth" }, -{ itemId: 531116, className: "TOP01_116", name: "Rag Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 72, equipType1: "Shirt", minLevel: 1, def: 21, mDef: 21, material: "Leather" }, -{ itemId: 531117, className: "TOP01_117", name: "Miner's Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 154, equipType1: "Shirt", minLevel: 1, def: 19, mDef: 19, material: "Leather", poisonRes: 3 }, -{ itemId: 531118, className: "TOP01_118", name: "Old Hard Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 64, mDef: 64, material: "Leather" }, -{ itemId: 531119, className: "TOP01_119", name: "Old Chainmail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 86, mDef: 43, material: "Iron" }, -{ itemId: 531120, className: "TOP01_120", name: "Old Steel Chainmail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1335, equipType1: "Shirt", minLevel: 40, def: 194, mDef: 97, material: "Iron" }, -{ itemId: 531121, className: "TOP01_121", name: "Brigandine Armor", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 259, mDef: 259, material: "Leather" }, -{ itemId: 531122, className: "TOP01_122", name: "Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 345, mDef: 172, material: "Iron" }, -{ itemId: 531123, className: "TOP01_123", name: "Superior Quilted Armor", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Shirt", minLevel: 1, def: 19, mDef: 19, material: "Leather" }, -{ itemId: 531124, className: "TOP01_124", name: "Vubbe Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 64, mDef: 64, material: "Leather" }, -{ itemId: 531125, className: "TOP01_125", name: "Panto Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 64, mDef: 64, material: "Leather" }, -{ itemId: 531126, className: "TOP01_126", name: "Acolyte Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 97, mDef: 194, material: "Cloth" }, -{ itemId: 531127, className: "TOP01_127", name: "Steel Chainmail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 194, mDef: 97, material: "Iron" }, -{ itemId: 531128, className: "TOP01_128", name: "Enhanced Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Shirt", minLevel: 1, def: 19, mDef: 19, material: "Leather", ariesDef: 14 }, +{ itemId: 521133, className: "LEG01_133", name: "Cotton Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 43, mDef: 86, material: "Cloth" }, +{ itemId: 521134, className: "LEG01_134", name: "Ring Pants", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 86, mDef: 43, material: "Iron" }, +{ itemId: 521135, className: "LEG01_135", name: "Superior Regal Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 172, mDef: 345, material: "Cloth" }, +{ itemId: 521136, className: "LEG01_136", name: "Superior Brigandine Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2457, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 259, mDef: 259, material: "Leather" }, +{ itemId: 521137, className: "LEG01_137", name: "Full Plate Leggings", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 2483, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 345, mDef: 172, material: "Iron" }, +{ itemId: 521138, className: "LEG01_138", name: "Fedimian Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 270, mDef: 540, material: "Cloth" }, +{ itemId: 521139, className: "LEG01_139", name: "Fedimian Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 405, mDef: 405, material: "Leather" }, +{ itemId: 521140, className: "LEG01_140", name: "Fedimian Leggings", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 540, mDef: 270, material: "Iron" }, +{ itemId: 521141, className: "LEG01_141", name: "Magician Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 270, mDef: 540, material: "Cloth" }, +{ itemId: 521142, className: "LEG01_142", name: "Hunting Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 13968, sellPrice: 3874, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 405, mDef: 405, material: "Leather" }, +{ itemId: 521143, className: "LEG01_143", name: "Guard Leggings", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 540, mDef: 270, material: "Iron" }, +{ itemId: 521144, className: "LEG01_144", name: "Mage Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 270, mDef: 540, material: "Cloth" }, +{ itemId: 521145, className: "LEG01_145", name: "Skirmisher Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 405, mDef: 405, material: "Leather" }, +{ itemId: 521146, className: "LEG01_146", name: "Infantry Leggings", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 540, mDef: 270, material: "Iron" }, +{ itemId: 521147, className: "LEG01_147", name: "Archmage Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 21826, sellPrice: 4516, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 378, mDef: 756, material: "Cloth" }, +{ itemId: 521148, className: "LEG01_148", name: "Superior Skirmisher Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 21826, sellPrice: 4516, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 567, mDef: 567, material: "Leather" }, +{ itemId: 521149, className: "LEG01_149", name: "Superior Infantry Leggings", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 21826, sellPrice: 4516, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 756, mDef: 378, material: "Iron" }, +{ itemId: 521150, className: "LEG01_150", name: "Librarian Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 5881, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 378, mDef: 756, material: "Cloth" }, +{ itemId: 521151, className: "LEG01_151", name: "Veteran Pants", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 21826, sellPrice: 5881, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 567, mDef: 567, material: "Leather" }, +{ itemId: 521152, className: "LEG01_152", name: "Knight Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 21826, sellPrice: 5881, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 756, mDef: 378, material: "Iron" }, +{ itemId: 521153, className: "LEG01_153", name: "Superior Grima Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 1707, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 172, mDef: 345, material: "Cloth" }, +{ itemId: 521154, className: "LEG01_154", name: "Royal Mage Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 486, mDef: 972, material: "Cloth" }, +{ itemId: 521155, className: "LEG01_155", name: "Bandit Pants", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 729, mDef: 729, material: "Leather" }, +{ itemId: 521156, className: "LEG01_156", name: "Royal Guard Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 972, mDef: 486, material: "Iron" }, +{ itemId: 521157, className: "LEG01_157", name: "Superior Royal Mage Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 486, mDef: 972, material: "Cloth" }, +{ itemId: 521158, className: "LEG01_158", name: "Superior Bandit Pants", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 729, mDef: 729, material: "Leather" }, +{ itemId: 521159, className: "LEG01_159", name: "Superior Royal Guard Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 972, mDef: 486, material: "Iron" }, +{ itemId: 521203, className: "LEG01_203", name: "Blint Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 594, mDef: 1188, material: "Cloth" }, +{ itemId: 521204, className: "LEG01_204", name: "Blint Leather Pants", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 891, mDef: 891, material: "Leather" }, +{ itemId: 521205, className: "LEG01_205", name: "Blint Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1188, mDef: 594, material: "Iron" }, +{ itemId: 521206, className: "LEG01_206", name: "(Faded) Replica Kalinis Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 594, mDef: 1188, material: "Cloth" }, +{ itemId: 521207, className: "LEG01_207", name: "(Faded) Replica Albinosas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 891, mDef: 891, material: "Leather" }, +{ itemId: 521208, className: "LEG01_208", name: "(Faded) Replica Tajtanas Plate Pants", type: "Equip", group: "Armor", weight: 220, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1188, mDef: 594, material: "Iron" }, +{ itemId: 521209, className: "LEG01_209", name: "(Faded) Replica Oksinis Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 691, mDef: 1382, material: "Cloth" }, +{ itemId: 521210, className: "LEG01_210", name: "(Faded) Replica Kaulas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1036, mDef: 1036, material: "Leather" }, +{ itemId: 521211, className: "LEG01_211", name: "(Faded) Replica Krisius Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1382, mDef: 691, material: "Iron" }, +{ itemId: 522103, className: "LEG02_103", name: "Tenet Chain Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 655, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 96, mDef: 48, material: "Iron" }, +{ itemId: 522104, className: "LEG02_104", name: "Zalia Leather Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather" }, +{ itemId: 522106, className: "LEG02_106", name: "Studded Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather", poisonRes: 16 }, +{ itemId: 522107, className: "LEG02_107", name: "Insect Skirt", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 216, mDef: 108, material: "Iron", poisonRes: 6 }, +{ itemId: 522108, className: "LEG02_108", name: "Protas Trousers", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 216, material: "Cloth" }, +{ itemId: 522110, className: "LEG02_110", name: "Light Plate Leggings", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 3276, sellPrice: 1653, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 216, mDef: 108, material: "Iron" }, +{ itemId: 522112, className: "LEG02_112", name: "Pokubon Leather Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather" }, +{ itemId: 522113, className: "LEG02_113", name: "Drake Leather Leggings", type: "Equip", group: "Armor", weight: 165, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather" }, +{ itemId: 522114, className: "LEG02_114", name: "Silver Plate Leggings", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 384, mDef: 192, material: "Iron" }, +{ itemId: 522123, className: "LEG02_123", name: "Cafrisun Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Leather" }, +{ itemId: 522124, className: "LEG02_124", name: "Dio Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 360, sellPrice: 154, equipType1: "Pants", minLevel: 1, equipExpGroup: "Equip", def: 14, mDef: 28, material: "Cloth", earthRes: 4 }, +{ itemId: 522125, className: "LEG02_125", name: "Dio Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 411, equipType1: "Pants", minLevel: 1, equipExpGroup: "Equip", def: 21, mDef: 21, material: "Leather", poisonRes: 4 }, +{ itemId: 522126, className: "LEG02_126", name: "Dio Chain Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Pants", minLevel: 1, equipExpGroup: "Equip", def: 28, mDef: 14, material: "Iron", darkRes: 4 }, +{ itemId: 522127, className: "LEG02_127", name: "Thresh Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 96, material: "Cloth", darkRes: 5 }, +{ itemId: 522128, className: "LEG02_128", name: "Thresh Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Leather", lightningRes: 5 }, +{ itemId: 522129, className: "LEG02_129", name: "Thresh Chain Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 96, mDef: 48, material: "Iron", darkRes: 5 }, +{ itemId: 522130, className: "LEG02_130", name: "Sestas Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 96, material: "Cloth", lightningRes: 6 }, +{ itemId: 522131, className: "LEG02_131", name: "Sestas Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Leather", poisonRes: 6 }, +{ itemId: 522132, className: "LEG02_132", name: "Sestas Chain Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 2592, sellPrice: 655, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 96, mDef: 48, material: "Iron", earthRes: 6 }, +{ itemId: 522133, className: "LEG02_133", name: "Dratt Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 216, material: "Cloth", iceRes: 7 }, +{ itemId: 522134, className: "LEG02_134", name: "Dratt Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather", darkRes: 7 }, +{ itemId: 522135, className: "LEG02_135", name: "Dratt Plate Leggings", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 216, mDef: 108, material: "Iron", lightningRes: 7 }, +{ itemId: 522136, className: "LEG02_136", name: "Aston Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 216, material: "Cloth", darkRes: 8 }, +{ itemId: 522137, className: "LEG02_137", name: "Aston Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather", poisonRes: 8 }, +{ itemId: 522138, className: "LEG02_138", name: "Aston Plate Leggings", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 3276, sellPrice: 1572, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 216, mDef: 108, material: "Iron", earthRes: 8 }, +{ itemId: 522139, className: "LEG02_139", name: "Devi Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 1868, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 384, material: "Cloth", lightningRes: 9 }, +{ itemId: 522140, className: "LEG02_140", name: "Devi Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather", poisonRes: 9 }, +{ itemId: 522141, className: "LEG02_141", name: "Devi Plate Leggings", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 384, mDef: 192, material: "Iron", iceRes: 9 }, +{ itemId: 522142, className: "LEG02_142", name: "Prima Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 384, material: "Cloth", darkRes: 10 }, +{ itemId: 522143, className: "LEG02_143", name: "Prima Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2457, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather", iceRes: 10 }, +{ itemId: 522144, className: "LEG02_144", name: "Prima Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 7724, sellPrice: 2851, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 384, mDef: 192, material: "Iron", fireRes: 10 }, +{ itemId: 522150, className: "LEG02_150", name: "Riena Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 384, material: "Cloth" }, +{ itemId: 522151, className: "LEG02_151", name: "Riena Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather", poisonRes: 8 }, +{ itemId: 522152, className: "LEG02_152", name: "Riena Plate Leggings", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 7724, sellPrice: 2457, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 384, mDef: 192, material: "Iron" }, +{ itemId: 522153, className: "LEG02_153", name: "Watcher Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 655, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Leather" }, +{ itemId: 522154, className: "LEG02_154", name: "Earth Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1653, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 216, material: "Cloth" }, +{ itemId: 522155, className: "LEG02_155", name: "Leather Earth Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1653, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather", earthRes: 4 }, +{ itemId: 522156, className: "LEG02_156", name: "Earth Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 3276, sellPrice: 1653, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 216, mDef: 108, material: "Iron" }, +{ itemId: 522157, className: "LEG02_157", name: "Legwyn Family Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 600, material: "Cloth" }, +{ itemId: 522158, className: "LEG02_158", name: "Legwyn Family Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 450, mDef: 450, material: "Leather" }, +{ itemId: 522159, className: "LEG02_159", name: "Legwyn Family Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 600, mDef: 300, material: "Iron" }, +{ itemId: 522160, className: "LEG02_160", name: "Ogva Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 96, material: "Cloth", fireRes: 3 }, +{ itemId: 522161, className: "LEG02_161", name: "Ogva Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Leather", darkRes: 3 }, +{ itemId: 522162, className: "LEG02_162", name: "Ogva Chain Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 96, mDef: 48, material: "Iron", poisonRes: 3 }, +{ itemId: 522163, className: "LEG02_163", name: "Partis Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 96, material: "Cloth" }, +{ itemId: 522164, className: "LEG02_164", name: "Partis Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Leather" }, +{ itemId: 522165, className: "LEG02_165", name: "Partis Ring Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, equipExpGroup: "Equip", def: 96, mDef: 48, material: "Iron" }, +{ itemId: 522166, className: "LEG02_166", name: "Sirdgela Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 216, material: "Cloth", poisonRes: 6 }, +{ itemId: 522167, className: "LEG02_167", name: "Sirdgela Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather", earthRes: 6 }, +{ itemId: 522168, className: "LEG02_168", name: "Sirdgela Scale Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 216, mDef: 108, material: "Iron", iceRes: 6 }, +{ itemId: 522169, className: "LEG02_169", name: "Philis Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 216, material: "Cloth", lightningRes: 6 }, +{ itemId: 522170, className: "LEG02_170", name: "Philis Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather", poisonRes: 6 }, +{ itemId: 522171, className: "LEG02_171", name: "Philis Scale Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 216, mDef: 108, material: "Iron", fireRes: 6 }, +{ itemId: 522172, className: "LEG02_172", name: "Allerno Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 1653, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 384, material: "Cloth", darkRes: 10 }, +{ itemId: 522173, className: "LEG02_173", name: "Allerno Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 7724, sellPrice: 1653, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather", iceRes: 10 }, +{ itemId: 522174, className: "LEG02_174", name: "Allerno Plate Leggings", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 7724, sellPrice: 1653, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 384, mDef: 192, material: "Iron", earthRes: 10 }, +{ itemId: 522175, className: "LEG02_175", name: "Perelin Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 1653, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 384, material: "Cloth" }, +{ itemId: 522176, className: "LEG02_176", name: "Perelin Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 7724, sellPrice: 1653, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather" }, +{ itemId: 522177, className: "LEG02_177", name: "Perelin Plate Leggings", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 7724, sellPrice: 1653, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 384, mDef: 192, material: "Iron" }, +{ itemId: 522178, className: "LEG02_178", name: "Turn Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 2431, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 600, material: "Cloth", poisonRes: 14 }, +{ itemId: 522179, className: "LEG02_179", name: "Turn Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 13968, sellPrice: 2431, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 450, mDef: 450, material: "Leather", lightningRes: 14 }, +{ itemId: 522180, className: "LEG02_180", name: "Turn Plate Leggings", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 13968, sellPrice: 2431, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 600, mDef: 300, material: "Iron", iceRes: 14 }, +{ itemId: 522181, className: "LEG02_181", name: "Shaton Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 2793, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 600, material: "Cloth", darkRes: 16 }, +{ itemId: 522182, className: "LEG02_182", name: "Shaton Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 13968, sellPrice: 2793, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 450, mDef: 450, material: "Leather", fireRes: 16 }, +{ itemId: 522183, className: "LEG02_183", name: "Shaton Plate Leggings", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 13968, sellPrice: 2793, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 600, mDef: 300, material: "Iron", darkRes: 16 }, +{ itemId: 522184, className: "LEG02_184", name: "Tyla Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 21826, sellPrice: 3901, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 420, mDef: 840, material: "Cloth", darkRes: 21 }, +{ itemId: 522185, className: "LEG02_185", name: "Tyla Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 21826, sellPrice: 3901, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 630, mDef: 630, material: "Leather", iceRes: 21 }, +{ itemId: 522186, className: "LEG02_186", name: "Tyla Plate Leggings", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 21826, sellPrice: 3901, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 840, mDef: 420, material: "Iron", poisonRes: 21 }, +{ itemId: 522187, className: "LEG02_187", name: "Velnia Monkey Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Pants", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather", lightningRes: 3 }, +{ itemId: 522188, className: "LEG02_188", name: "Elkosh Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 540, mDef: 1080, material: "Cloth" }, +{ itemId: 522189, className: "LEG02_189", name: "Ibre Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 810, mDef: 810, material: "Leather" }, +{ itemId: 522190, className: "LEG02_190", name: "Grynas Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 1080, mDef: 540, material: "Iron" }, +{ itemId: 522200, className: "LEG02_200", name: "Valtas Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 540, mDef: 1080, material: "Cloth", darkRes: 30 }, +{ itemId: 522201, className: "LEG02_201", name: "Valtas Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 810, mDef: 810, material: "Leather", iceRes: 30 }, +{ itemId: 522202, className: "LEG02_202", name: "Valtas Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 1080, mDef: 540, material: "Iron", poisonRes: 30 }, +{ itemId: 522203, className: "LEG02_203", name: "Hasta Pants", type: "Equip", group: "Armor", weight: 105, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 660, mDef: 1320, material: "Cloth" }, +{ itemId: 522204, className: "LEG02_204", name: "Hasta Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 990, mDef: 990, material: "Leather" }, +{ itemId: 522205, className: "LEG02_205", name: "Hasta Plate Pants", type: "Equip", group: "Armor", weight: 195, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1320, mDef: 660, material: "Iron" }, +{ itemId: 522208, className: "LEG02_208", name: "Manahas Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 990, mDef: 990, material: "Leather", iceRes: 15 }, +{ itemId: 522209, className: "LEG02_209", name: "(Faded) Kalinis Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 660, mDef: 1320, material: "Cloth" }, +{ itemId: 522210, className: "LEG02_210", name: "(Faded) Albinosas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 990, mDef: 990, material: "Leather" }, +{ itemId: 522211, className: "LEG02_211", name: "(Faded) Tajtanas Plate Pants", type: "Equip", group: "Armor", weight: 220, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1320, mDef: 660, material: "Iron" }, +{ itemId: 522212, className: "LEG02_212", name: "(Faded) Oksinis Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 768, mDef: 1536, material: "Cloth" }, +{ itemId: 522213, className: "LEG02_213", name: "(Faded) Kaulas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1152, mDef: 1152, material: "Leather" }, +{ itemId: 522214, className: "LEG02_214", name: "(Faded) Krisius Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1536, mDef: 768, material: "Iron" }, +{ itemId: 522215, className: "LEG02_215", name: "Alpra Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 600, material: "Cloth" }, +{ itemId: 522216, className: "LEG02_216", name: "Eastern Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 450, mDef: 450, material: "Leather" }, +{ itemId: 522217, className: "LEG02_217", name: "Pangle Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 600, mDef: 300, material: "Iron" }, +{ itemId: 522218, className: "LEG02_218", name: "War Mage Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 420, mDef: 840, material: "Cloth" }, +{ itemId: 522219, className: "LEG02_219", name: "Eaglestar Leather Pants", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 630, mDef: 630, material: "Leather" }, +{ itemId: 522220, className: "LEG02_220", name: "Nyx Knight Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 840, mDef: 420, material: "Iron" }, +{ itemId: 522221, className: "LEG02_221", name: "Marone Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 384, material: "Cloth" }, +{ itemId: 522222, className: "LEG02_222", name: "Prakeh Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 540, mDef: 1080, material: "Cloth" }, +{ itemId: 522223, className: "LEG02_223", name: "Razna Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather" }, +{ itemId: 522224, className: "LEG02_224", name: "Keyarc Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 810, mDef: 810, material: "Leather" }, +{ itemId: 522225, className: "LEG02_225", name: "Barghar Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 384, mDef: 192, material: "Iron" }, +{ itemId: 522226, className: "LEG02_226", name: "Suurit Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 1080, mDef: 540, material: "Iron" }, +{ itemId: 522227, className: "LEG02_227", name: "Kalinis Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 660, mDef: 1320, material: "Cloth" }, +{ itemId: 522228, className: "LEG02_228", name: "Albinosas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 990, mDef: 990, material: "Leather" }, +{ itemId: 522229, className: "LEG02_229", name: "Tajtanas Plate Pants", type: "Equip", group: "Armor", weight: 220, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1320, mDef: 660, material: "Iron" }, +{ itemId: 522230, className: "LEG02_230", name: "Oksinis Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 768, mDef: 1536, material: "Cloth" }, +{ itemId: 522231, className: "LEG02_231", name: "Kaulas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1152, mDef: 1152, material: "Leather" }, +{ itemId: 522232, className: "LEG02_232", name: "Krisius Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1536, mDef: 768, material: "Iron" }, +{ itemId: 522233, className: "LEG02_233", name: "Irellis Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 852, mDef: 1704, material: "Cloth" }, +{ itemId: 522234, className: "LEG02_234", name: "Jevenellis Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 1278, mDef: 1278, material: "Leather" }, +{ itemId: 522235, className: "LEG02_235", name: "Basticle Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 1704, mDef: 852, material: "Iron" }, +{ itemId: 522236, className: "LEG02_236", name: "Planeta Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 924, mDef: 1848, material: "Cloth" }, +{ itemId: 522237, className: "LEG02_237", name: "Ukas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 1386, mDef: 1386, material: "Leather" }, +{ itemId: 522238, className: "LEG02_238", name: "Galaktikos Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 1848, mDef: 924, material: "Iron" }, +{ itemId: 522239, className: "LEG02_239", name: "Pilgriste Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 972, mDef: 1944, material: "Cloth" }, +{ itemId: 522240, className: "LEG02_240", name: "Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1458, mDef: 1458, material: "Leather" }, +{ itemId: 522241, className: "LEG02_241", name: "Akmo Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1944, mDef: 972, material: "Iron" }, +{ itemId: 523103, className: "LEG03_103", name: "Vine Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 211, mDef: 422, material: "Cloth", fireRes: -14, poisonRes: 24 }, +{ itemId: 523105, className: "LEG03_105", name: "Soul Chaser Pants", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 316, mDef: 316, material: "Leather", holyRes: 40 }, +{ itemId: 523106, className: "LEG03_106", name: "Bone Skirt", type: "Equip", group: "Armor", weight: 240, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 422, mDef: 211, material: "Iron", lightningRes: 31, darkRes: 26 }, +{ itemId: 523107, className: "LEG03_107", name: "Shade Skirt", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 72, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 316, mDef: 316, material: "Leather", darkRes: 28 }, +{ itemId: 523111, className: "LEG03_111", name: "Roxona Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 462, mDef: 924, material: "Cloth", lightningRes: 9 }, +{ itemId: 523112, className: "LEG03_112", name: "Roxona Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 693, mDef: 693, material: "Leather", ariesDef: 7, darkRes: 8 }, +{ itemId: 523113, className: "LEG03_113", name: "Roxona Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 924, mDef: 462, material: "Iron", iceRes: 6 }, +{ itemId: 523114, className: "LEG03_114", name: "Virtov Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 594, mDef: 1188, material: "Cloth" }, +{ itemId: 523115, className: "LEG03_115", name: "Virtov Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 891, mDef: 891, material: "Leather" }, +{ itemId: 523116, className: "LEG03_116", name: "Virtov Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 1188, mDef: 594, material: "Iron", fireRes: 21 }, +{ itemId: 523130, className: "LEG03_130", name: "Newt Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 726, mDef: 1452, material: "Cloth" }, +{ itemId: 523131, className: "LEG03_131", name: "Newt Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1089, mDef: 1089, material: "Leather" }, +{ itemId: 523132, className: "LEG03_132", name: "Newt Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1452, mDef: 726, material: "Iron", fireRes: 21 }, +{ itemId: 523301, className: "LEG03_301", name: "(Faded) Alpra Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", addMAtk: 7, def: 330, mDef: 660, material: "Cloth" }, +{ itemId: 523302, className: "LEG03_302", name: "(Faded) Eastern Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 495, mDef: 495, material: "Leather" }, +{ itemId: 523303, className: "LEG03_303", name: "(Faded) Pangle Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 660, mDef: 330, material: "Iron" }, +{ itemId: 523304, className: "LEG03_304", name: "(Faded) War Mage Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 4789, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 462, mDef: 924, material: "Cloth" }, +{ itemId: 523305, className: "LEG03_305", name: "(Faded) Eaglestar Leather Pants", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 4789, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 693, mDef: 693, material: "Leather", iceRes: 18 }, +{ itemId: 523306, className: "LEG03_306", name: "(Faded) Nyx Knight Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 4789, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 924, mDef: 462, material: "Iron", fireRes: 8 }, +{ itemId: 523307, className: "LEG03_307", name: "(Faded) Marone Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 1360, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 211, mDef: 422, material: "Cloth" }, +{ itemId: 523308, className: "LEG03_308", name: "(Faded) Prakeh Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 594, mDef: 1188, material: "Cloth" }, +{ itemId: 523309, className: "LEG03_309", name: "(Faded) Razna Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 1360, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 316, mDef: 316, material: "Leather", soulRes: 15 }, +{ itemId: 523310, className: "LEG03_310", name: "(Faded) Keyarc Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 891, mDef: 891, material: "Leather", slashDef: 103 }, +{ itemId: 523311, className: "LEG03_311", name: "(Faded) Barghar Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 1360, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 422, mDef: 211, material: "Iron", soulRes: 12 }, +{ itemId: 523312, className: "LEG03_312", name: "(Faded) Suurit Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 1188, mDef: 594, material: "Iron", iceRes: 40 }, +{ itemId: 523313, className: "LEG03_313", name: "(Faded) Vienti Kalinis?Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 726, mDef: 1452, material: "Cloth" }, +{ itemId: 523314, className: "LEG03_314", name: "(Faded) Vienti Albinosas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1089, mDef: 1089, material: "Leather" }, +{ itemId: 523315, className: "LEG03_315", name: "(Faded) Vienti Tajtanas Plate Pants", type: "Equip", group: "Armor", weight: 220, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1452, mDef: 726, material: "Iron" }, +{ itemId: 523316, className: "LEG03_316", name: "(Faded) Vienti Oksinis Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 844, mDef: 1689, material: "Cloth" }, +{ itemId: 523317, className: "LEG03_317", name: "(Faded) Vienti Kaulas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1267, mDef: 1267, material: "Leather" }, +{ itemId: 523318, className: "LEG03_318", name: "(Faded) Vienti Krisius Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1689, mDef: 844, material: "Iron" }, +{ itemId: 523319, className: "LEG03_319", name: "Berthas Alpra Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 330, mDef: 660, material: "Cloth" }, +{ itemId: 523320, className: "LEG03_320", name: "Berthas Eastern Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 495, mDef: 495, material: "Leather" }, +{ itemId: 523321, className: "LEG03_321", name: "Berthas Pangle Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 660, mDef: 330, material: "Iron" }, +{ itemId: 523322, className: "LEG03_322", name: "Berthas Warmage Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 462, mDef: 924, material: "Cloth" }, +{ itemId: 523323, className: "LEG03_323", name: "Berthas Eaglestar Leather Pants", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 693, mDef: 693, material: "Leather" }, +{ itemId: 523324, className: "LEG03_324", name: "Berthas Nyx Knight Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 924, mDef: 462, material: "Iron" }, +{ itemId: 523325, className: "LEG03_325", name: "Berthas Marone Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 211, mDef: 422, material: "Cloth" }, +{ itemId: 523326, className: "LEG03_326", name: "Berthas Prakeh Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 594, mDef: 1188, material: "Cloth" }, +{ itemId: 523327, className: "LEG03_327", name: "Berthas Raszna Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 316, mDef: 316, material: "Leather" }, +{ itemId: 523328, className: "LEG03_328", name: "Berthas Keyarc Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 891, mDef: 891, material: "Leather" }, +{ itemId: 523329, className: "LEG03_329", name: "Berths Barghar Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 422, mDef: 211, material: "Iron" }, +{ itemId: 523330, className: "LEG03_330", name: "Berthas Suurit Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 1188, mDef: 594, material: "Iron" }, +{ itemId: 523331, className: "LEG03_331", name: "Berthas Kalinis Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 726, mDef: 1452, material: "Cloth" }, +{ itemId: 523332, className: "LEG03_332", name: "Berthas Albinosas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1089, mDef: 1089, material: "Leather" }, +{ itemId: 523333, className: "LEG03_333", name: "Berthas Tajtanas Plate Pants", type: "Equip", group: "Armor", weight: 220, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1452, mDef: 726, material: "Iron" }, +{ itemId: 523334, className: "LEG03_334", name: "Berthas Oksinis Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 844, mDef: 1689, material: "Cloth" }, +{ itemId: 523335, className: "LEG03_335", name: "Berthas Kaulas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1267, mDef: 1267, material: "Leather" }, +{ itemId: 523336, className: "LEG03_336", name: "Berthas Krisius Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1689, mDef: 844, material: "Iron" }, +{ itemId: 523337, className: "LEG03_337", name: "Berthas Irellis Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 937, mDef: 1874, material: "Cloth" }, +{ itemId: 523338, className: "LEG03_338", name: "Berthas Jevenellis Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 1405, mDef: 1405, material: "Leather" }, +{ itemId: 523339, className: "LEG03_339", name: "Berthas Basticle Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 1874, mDef: 937, material: "Iron" }, +{ itemId: 523340, className: "LEG03_340", name: "Berthas Planeta Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 1016, mDef: 2032, material: "Cloth" }, +{ itemId: 523341, className: "LEG03_341", name: "Berthas Ukas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 1524, mDef: 1524, material: "Leather" }, +{ itemId: 523342, className: "LEG03_342", name: "Berthas Galaktikos Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 2032, mDef: 1016, material: "Iron" }, +{ itemId: 523343, className: "LEG03_343", name: "Berthas Pilgriste Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1069, mDef: 2138, material: "Cloth" }, +{ itemId: 523344, className: "LEG03_344", name: "Berthas Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1603, mDef: 1603, material: "Leather" }, +{ itemId: 523345, className: "LEG03_345", name: "Berthas Akmo Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 2138, mDef: 1069, material: "Iron" }, +{ itemId: 523346, className: "LEG03_346", name: "Berthas Dysnai Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, equipExpGroup: "Equip", def: 1148, mDef: 2296, material: "Cloth" }, +{ itemId: 523347, className: "LEG03_347", name: "Berthas Dysnai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, equipExpGroup: "Equip", def: 1722, mDef: 1722, material: "Leather" }, +{ itemId: 523348, className: "LEG03_348", name: "Berthas Dysnai Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, equipExpGroup: "Equip", def: 2296, mDef: 1148, material: "Iron" }, +{ itemId: 524103, className: "LEG04_103", name: "Hydra Trousers", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 360, mDef: 360, material: "Leather", poisonRes: 40 }, +{ itemId: 524106, className: "LEG04_106", name: "Lolopanther Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1056, mDef: 2112, material: "Cloth", earthRes: 34 }, +{ itemId: 524107, className: "LEG04_107", name: "Lolopanther Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1584, mDef: 1584, material: "Leather", ariesDef: 50, earthRes: 36 }, +{ itemId: 524108, className: "LEG04_108", name: "Lolopanther Plate Leggings", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 2112, mDef: 1056, material: "Iron", strikeDef: 48, earthRes: 40 }, +{ itemId: 524109, className: "LEG04_109", name: "Solmiki Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 11656, equipType1: "Pants", minLevel: 330, equipExpGroup: "Equip", def: 1286, mDef: 2572, material: "Cloth", holyRes: 70 }, +{ itemId: 524110, className: "LEG04_110", name: "Solmiki Leather Pants", type: "Equip", group: "Armor", weight: 140, maxStack: 1, price: 43920, sellPrice: 11656, equipType1: "Pants", minLevel: 330, equipExpGroup: "Equip", def: 1929, mDef: 1929, material: "Leather", ariesDef: 75, holyRes: 73 }, +{ itemId: 524111, className: "LEG04_111", name: "Solmiki Plate Leggings", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 11656, equipType1: "Pants", minLevel: 330, equipExpGroup: "Equip", def: 2572, mDef: 1286, material: "Iron", strikeDef: 99, holyRes: 82 }, +{ itemId: 524112, className: "LEG04_112", name: "Primus Alpra Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 375, mDef: 750, material: "Cloth" }, +{ itemId: 524113, className: "LEG04_113", name: "Primus Eastern Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 562, mDef: 562, material: "Leather" }, +{ itemId: 524114, className: "LEG04_114", name: "Primus Pangle Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 750, mDef: 375, material: "Iron" }, +{ itemId: 524115, className: "LEG04_115", name: "Primus Warmage Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 525, mDef: 1050, material: "Cloth" }, +{ itemId: 524116, className: "LEG04_116", name: "Primus Eaglestar Leather Pants", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 787, mDef: 787, material: "Leather" }, +{ itemId: 524117, className: "LEG04_117", name: "Primus Nyx Knight Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Pants", minLevel: 170, equipExpGroup: "Equip", def: 1050, mDef: 525, material: "Iron" }, +{ itemId: 524118, className: "LEG04_118", name: "Primus Marone Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 240, mDef: 480, material: "Cloth" }, +{ itemId: 524119, className: "LEG04_119", name: "Primus Prakeh Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 675, mDef: 1350, material: "Cloth" }, +{ itemId: 524120, className: "LEG04_120", name: "Primus Razna Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 360, mDef: 360, material: "Leather" }, +{ itemId: 524121, className: "LEG04_121", name: "Primus Keyarc Leather Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 1012, mDef: 1012, material: "Leather" }, +{ itemId: 524122, className: "LEG04_122", name: "Primus Barghar Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Pants", minLevel: 75, equipExpGroup: "Equip", def: 480, mDef: 240, material: "Iron" }, +{ itemId: 524123, className: "LEG04_123", name: "Primus Suurit Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, equipExpGroup: "Equip", def: 1350, mDef: 675, material: "Iron" }, +{ itemId: 524124, className: "LEG04_124", name: "Primus Kalinis Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 825, mDef: 1650, material: "Cloth" }, +{ itemId: 524125, className: "LEG04_125", name: "Primus Albinosas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1237, mDef: 1237, material: "Leather" }, +{ itemId: 524126, className: "LEG04_126", name: "Primus Tajtanas Plate Pants", type: "Equip", group: "Armor", weight: 220, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1650, mDef: 825, material: "Iron" }, +{ itemId: 524127, className: "LEG04_127", name: "Primus Oksinis Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 960, mDef: 1920, material: "Cloth" }, +{ itemId: 524128, className: "LEG04_128", name: "Primus Kaulas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1440, mDef: 1440, material: "Leather" }, +{ itemId: 524129, className: "LEG04_129", name: "Primus Krisius Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1920, mDef: 960, material: "Iron" }, +{ itemId: 524130, className: "LEG04_130", name: "Primus Irellis Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 1065, mDef: 2130, material: "Cloth" }, +{ itemId: 524131, className: "LEG04_131", name: "Primus Jevenellis Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 1597, mDef: 1597, material: "Leather" }, +{ itemId: 524132, className: "LEG04_132", name: "Primus Basticle Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 2130, mDef: 1065, material: "Iron" }, +{ itemId: 524133, className: "LEG04_133", name: "Laitas Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 1065, mDef: 2130, addMDef: 288, material: "Cloth" }, +{ itemId: 524134, className: "LEG04_134", name: "Fietas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 1597, mDef: 1597, material: "Leather" }, +{ itemId: 524135, className: "LEG04_135", name: "Ausura Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 2130, mDef: 1065, addDef: 288, material: "Iron" }, +{ itemId: 524136, className: "LEG04_136", name: "Primus Planeta Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 2310, material: "Cloth" }, +{ itemId: 524137, className: "LEG04_137", name: "Primus Ukas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 1732, mDef: 1732, material: "Leather" }, +{ itemId: 524138, className: "LEG04_138", name: "Primus Galaktikos Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 2310, mDef: 1155, material: "Iron" }, +{ itemId: 524139, className: "LEG04_139", name: "Ignas Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 2310, material: "Cloth" }, +{ itemId: 524140, className: "LEG04_140", name: "Ignas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 1732, mDef: 1732, material: "Leather" }, +{ itemId: 524141, className: "LEG04_141", name: "Ignas Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 2310, mDef: 1155, material: "Iron" }, +{ itemId: 524142, className: "LEG04_142", name: "Primus Pilgriste Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 2430, material: "Cloth" }, +{ itemId: 524143, className: "LEG04_143", name: "Primus Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1822, mDef: 1822, material: "Leather" }, +{ itemId: 524144, className: "LEG04_144", name: "Primus Akmo Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 2430, mDef: 1215, material: "Iron" }, +{ itemId: 524145, className: "LEG04_145", name: "Skiaclipse Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 2430, addMDef: 387, material: "Cloth" }, +{ itemId: 524146, className: "LEG04_146", name: "Skiaclipse Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1822, mDef: 1822, material: "Leather" }, +{ itemId: 524147, className: "LEG04_147", name: "Skiaclipse Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", pAtk: 74, def: 2430, mDef: 1215, material: "Iron" }, +{ itemId: 524148, className: "LEG04_148", name: "Skiaclipse Pants - Compassion", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 2430, addMDef: 160, material: "Cloth" }, +{ itemId: 524149, className: "LEG04_149", name: "Skiaclipse Leather Pants - Assault", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1822, mDef: 1822, material: "Leather" }, +{ itemId: 524150, className: "LEG04_150", name: "Skiaclipse Plate Pants - Iron Wall", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 2430, mDef: 1215, material: "Iron" }, +{ itemId: 524151, className: "LEG04_151", name: "Moringponia Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 2430, mDef: 1215, material: "Iron" }, +{ itemId: 524152, className: "LEG04_152", name: "Moringponia Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 2430, material: "Cloth" }, +{ itemId: 524153, className: "LEG04_153", name: "Moringponia Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1822, mDef: 1822, material: "Leather" }, +{ itemId: 524154, className: "LEG04_154", name: "Misrus Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 2430, mDef: 1215, material: "Iron" }, +{ itemId: 524155, className: "LEG04_155", name: "Misrus Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 2430, material: "Cloth" }, +{ itemId: 524156, className: "LEG04_156", name: "Misrus Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1822, mDef: 1822, material: "Leather" }, +{ itemId: 524157, className: "LEG04_157", name: "Primus Dysnai Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, equipExpGroup: "Equip", def: 1305, mDef: 2610, material: "Cloth" }, +{ itemId: 524158, className: "LEG04_158", name: "Primus Dysnai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, equipExpGroup: "Equip", def: 1957, mDef: 1957, material: "Leather" }, +{ itemId: 524159, className: "LEG04_159", name: "Primus Dysnai Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, equipExpGroup: "Equip", def: 2610, mDef: 1305, material: "Iron" }, +{ itemId: 525101, className: "LEG05_101", name: "Velcoffer Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 360, equipExpGroup: "Equip", def: 1401, mDef: 2803, material: "Cloth" }, +{ itemId: 525102, className: "LEG05_102", name: "Velcoffer Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 360, equipExpGroup: "Equip", def: 2102, mDef: 2102, material: "Leather" }, +{ itemId: 525103, className: "LEG05_103", name: "Velcoffer Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 360, equipExpGroup: "Equip", def: 2803, mDef: 1401, material: "Iron" }, +{ itemId: 525104, className: "LEG05_104", name: "Velcoffer Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 360, equipExpGroup: "Equip", def: 1401, mDef: 2803, material: "Cloth" }, +{ itemId: 525105, className: "LEG05_105", name: "Velcoffer Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 360, equipExpGroup: "Equip", def: 2102, mDef: 2102, material: "Leather" }, +{ itemId: 525106, className: "LEG05_106", name: "Velcoffer Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 360, equipExpGroup: "Equip", def: 2803, mDef: 1401, material: "Iron" }, +{ itemId: 525107, className: "LEG05_107", name: "Savinose Pilgriste Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth" }, +{ itemId: 525108, className: "LEG05_108", name: "Savinose Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather" }, +{ itemId: 525109, className: "LEG05_109", name: "Savinose Akmo Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron" }, +{ itemId: 525110, className: "LEG05_110", name: "Skiaclipse Varna Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron" }, +{ itemId: 525111, className: "LEG05_111", name: "Skiaclipse Varna Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather" }, +{ itemId: 525112, className: "LEG05_112", name: "Skiaclipse Varna Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth" }, +{ itemId: 531101, className: "TOP01_101", name: "Light Armor", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 360, sellPrice: 72, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 19, mDef: 19, material: "Leather" }, +{ itemId: 531102, className: "TOP01_102", name: "Quilted Armor", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 360, sellPrice: 72, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 19, mDef: 19, material: "Leather" }, +{ itemId: 531103, className: "TOP01_103", name: "Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 19, mDef: 19, material: "Leather" }, +{ itemId: 531104, className: "TOP01_104", name: "Hard Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 64, material: "Leather" }, +{ itemId: 531105, className: "TOP01_105", name: "Chainmail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 540, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 86, mDef: 43, material: "Iron" }, +{ itemId: 531106, className: "TOP01_106", name: "Mark Tunic", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 145, mDef: 145, material: "Leather" }, +{ itemId: 531107, className: "TOP01_107", name: "Forest Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 145, mDef: 145, material: "Leather" }, +{ itemId: 531108, className: "TOP01_108", name: "Grima Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 97, mDef: 194, material: "Cloth" }, +{ itemId: 531109, className: "TOP01_109", name: "Veris Tunic", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 145, mDef: 145, material: "Leather" }, +{ itemId: 531110, className: "TOP01_110", name: "Scale Mail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 194, mDef: 97, material: "Iron" }, +{ itemId: 531111, className: "TOP01_111", name: "Forest Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 97, mDef: 194, material: "Cloth" }, +{ itemId: 531112, className: "TOP01_112", name: "Klaida Mail", type: "Equip", group: "Armor", weight: 135, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 194, mDef: 97, material: "Iron" }, +{ itemId: 531113, className: "TOP01_113", name: "Hard Veris Tunic", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 259, mDef: 259, material: "Leather" }, +{ itemId: 531114, className: "TOP01_114", name: "Superior Scale Mail", type: "Equip", group: "Armor", weight: 240, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 345, mDef: 172, material: "Iron" }, +{ itemId: 531115, className: "TOP01_115", name: "Regal Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 172, mDef: 345, material: "Cloth" }, +{ itemId: 531116, className: "TOP01_116", name: "Rag Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 72, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 21, mDef: 21, material: "Leather" }, +{ itemId: 531117, className: "TOP01_117", name: "Miner's Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 154, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 19, mDef: 19, material: "Leather", poisonRes: 3 }, +{ itemId: 531118, className: "TOP01_118", name: "Old Hard Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 64, material: "Leather" }, +{ itemId: 531119, className: "TOP01_119", name: "Old Chainmail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 86, mDef: 43, material: "Iron" }, +{ itemId: 531120, className: "TOP01_120", name: "Old Steel Chainmail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1335, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 194, mDef: 97, material: "Iron" }, +{ itemId: 531121, className: "TOP01_121", name: "Brigandine Armor", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 259, mDef: 259, material: "Leather" }, +{ itemId: 531122, className: "TOP01_122", name: "Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 345, mDef: 172, material: "Iron" }, +{ itemId: 531123, className: "TOP01_123", name: "Superior Quilted Armor", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 19, mDef: 19, material: "Leather" }, +{ itemId: 531124, className: "TOP01_124", name: "Vubbe Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 64, material: "Leather" }, +{ itemId: 531125, className: "TOP01_125", name: "Panto Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 64, mDef: 64, material: "Leather" }, +{ itemId: 531126, className: "TOP01_126", name: "Acolyte Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 97, mDef: 194, material: "Cloth" }, +{ itemId: 531127, className: "TOP01_127", name: "Steel Chainmail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 194, mDef: 97, material: "Iron" }, +{ itemId: 531128, className: "TOP01_128", name: "Enhanced Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 19, mDef: 19, material: "Leather", ariesDef: 14 }, { itemId: 531129, className: "TOP01_129", name: "Dunkel Quilted Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 72, equipType1: "Shirt", minLevel: 1, def: 19, mDef: 19, material: "Leather" }, { itemId: 531130, className: "TOP01_130", name: "Dunkel Cotton Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 43, mDef: 86, material: "Cloth" }, { itemId: 531131, className: "TOP01_131", name: "Dunkel Hard Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 64, mDef: 64, material: "Leather" }, { itemId: 531132, className: "TOP01_132", name: "Dunkel Ring Mail", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 86, mDef: 43, material: "Iron" }, -{ itemId: 531133, className: "TOP01_133", name: "Cotton Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 43, mDef: 86, material: "Cloth" }, -{ itemId: 531134, className: "TOP01_134", name: "Ring Mail", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 86, mDef: 43, material: "Iron" }, -{ itemId: 531135, className: "TOP01_135", name: "Superior Regal Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 172, mDef: 345, material: "Cloth" }, -{ itemId: 531136, className: "TOP01_136", name: "Superior Brigandine Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2457, equipType1: "Shirt", minLevel: 75, def: 259, mDef: 259, material: "Leather" }, -{ itemId: 531137, className: "TOP01_137", name: "Full Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 2822, equipType1: "Shirt", minLevel: 75, def: 345, mDef: 172, material: "Iron" }, -{ itemId: 531138, className: "TOP01_138", name: "Fedimian Robe", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 13968, sellPrice: 3846, equipType1: "Shirt", minLevel: 120, def: 270, mDef: 540, material: "Cloth" }, -{ itemId: 531139, className: "TOP01_139", name: "Fedimian Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 3846, equipType1: "Shirt", minLevel: 120, def: 405, mDef: 405, material: "Leather" }, -{ itemId: 531140, className: "TOP01_140", name: "Fedimian Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 13968, sellPrice: 3846, equipType1: "Shirt", minLevel: 120, def: 540, mDef: 270, material: "Iron" }, -{ itemId: 531141, className: "TOP01_141", name: "Magician Robe", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Shirt", minLevel: 120, def: 270, mDef: 540, material: "Cloth" }, -{ itemId: 531142, className: "TOP01_142", name: "Hunting Armor", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 13968, sellPrice: 3874, equipType1: "Shirt", minLevel: 120, def: 405, mDef: 405, material: "Leather" }, -{ itemId: 531143, className: "TOP01_143", name: "Guard Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Shirt", minLevel: 120, def: 540, mDef: 270, material: "Iron" }, -{ itemId: 531144, className: "TOP01_144", name: "Mage Robe", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Shirt", minLevel: 120, def: 270, mDef: 540, material: "Cloth" }, -{ itemId: 531145, className: "TOP01_145", name: "Skirmisher Tunic", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Shirt", minLevel: 120, def: 405, mDef: 405, material: "Leather" }, -{ itemId: 531146, className: "TOP01_146", name: "Infantry Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Shirt", minLevel: 120, def: 540, mDef: 270, material: "Iron" }, -{ itemId: 531147, className: "TOP01_147", name: "Archmage Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 21826, sellPrice: 5820, equipType1: "Shirt", minLevel: 170, def: 378, mDef: 756, material: "Cloth" }, -{ itemId: 531148, className: "TOP01_148", name: "Superior Skirmisher Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 21826, sellPrice: 5820, equipType1: "Shirt", minLevel: 170, def: 567, mDef: 567, material: "Leather" }, -{ itemId: 531149, className: "TOP01_149", name: "Superior Infantry Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 21826, sellPrice: 5820, equipType1: "Shirt", minLevel: 170, def: 756, mDef: 378, material: "Iron" }, -{ itemId: 531150, className: "TOP01_150", name: "Librarian Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 5881, equipType1: "Shirt", minLevel: 170, def: 378, mDef: 756, material: "Cloth" }, -{ itemId: 531151, className: "TOP01_151", name: "Veteran Tunic", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 21826, sellPrice: 5881, equipType1: "Shirt", minLevel: 170, def: 567, mDef: 567, material: "Leather" }, -{ itemId: 531152, className: "TOP01_152", name: "Knight Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 21826, sellPrice: 5881, equipType1: "Shirt", minLevel: 170, def: 756, mDef: 378, material: "Iron" }, -{ itemId: 531153, className: "TOP01_153", name: "Superior Grima Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 172, mDef: 345, material: "Cloth" }, -{ itemId: 531154, className: "TOP01_154", name: "Royal Mage Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 7113, equipType1: "Shirt", minLevel: 220, def: 486, mDef: 972, material: "Cloth" }, -{ itemId: 531155, className: "TOP01_155", name: "Bandit Armor", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 29405, sellPrice: 7113, equipType1: "Shirt", minLevel: 220, def: 729, mDef: 729, material: "Leather" }, -{ itemId: 531156, className: "TOP01_156", name: "Royal Guard Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 7113, equipType1: "Shirt", minLevel: 220, def: 972, mDef: 486, material: "Iron" }, -{ itemId: 531157, className: "TOP01_157", name: "Superior Royal Mage Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 7171, equipType1: "Shirt", minLevel: 220, def: 486, mDef: 972, material: "Cloth" }, -{ itemId: 531158, className: "TOP01_158", name: "Superior Bandit Armor", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 29405, sellPrice: 7171, equipType1: "Shirt", minLevel: 220, def: 729, mDef: 729, material: "Leather" }, -{ itemId: 531159, className: "TOP01_159", name: "Superior Royal Guard Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 7171, equipType1: "Shirt", minLevel: 220, def: 972, mDef: 486, material: "Iron" }, -{ itemId: 531203, className: "TOP01_203", name: "Blint Tunic", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 594, mDef: 1188, material: "Cloth" }, -{ itemId: 531204, className: "TOP01_204", name: "Blint Leather Robe", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 891, mDef: 891, material: "Leather" }, -{ itemId: 531205, className: "TOP01_205", name: "Blint Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 1188, mDef: 594, material: "Iron" }, -{ itemId: 531206, className: "TOP01_206", name: "(Faded) Replica Kalinis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, def: 594, mDef: 1188, material: "Cloth" }, -{ itemId: 531207, className: "TOP01_207", name: "(Faded) Replica Albinosas Leather Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, def: 891, mDef: 891, material: "Leather" }, -{ itemId: 531208, className: "TOP01_208", name: "(Faded) Replica Tajtanas Plate Armor", type: "Equip", group: "Armor", weight: 230, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, def: 1188, mDef: 594, material: "Iron" }, -{ itemId: 531209, className: "TOP01_209", name: "(Faded) Replica Oksinis Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, def: 691, mDef: 1382, material: "Cloth" }, -{ itemId: 531210, className: "TOP01_210", name: "(Faded) Replica Kaulas Leather Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, def: 1036, mDef: 1036, material: "Leather" }, -{ itemId: 531211, className: "TOP01_211", name: "(Faded) Replica Krisius Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, def: 1382, mDef: 691, material: "Iron" }, -{ itemId: 532101, className: "TOP02_101", name: "Crimson Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 72, mDef: 72, material: "Leather" }, -{ itemId: 532102, className: "TOP02_102", name: "Pokubu Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 411, equipType1: "Shirt", minLevel: 1, def: 21, mDef: 21, material: "Leather" }, -{ itemId: 532103, className: "TOP02_103", name: "Tenet Chainmail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 907, equipType1: "Shirt", minLevel: 15, def: 96, mDef: 48, material: "Iron" }, -{ itemId: 532104, className: "TOP02_104", name: "Zalia Leather Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 162, mDef: 162, material: "Leather" }, -{ itemId: 532105, className: "TOP02_105", name: "Prova Robe", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 108, mDef: 216, material: "Cloth" }, -{ itemId: 532106, className: "TOP02_106", name: "Studded Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 162, mDef: 162, material: "Leather", poisonRes: 18 }, -{ itemId: 532107, className: "TOP02_107", name: "Insect Mail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 216, mDef: 108, material: "Iron" }, -{ itemId: 532109, className: "TOP02_109", name: "Red Veris Tunic", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1572, equipType1: "Shirt", minLevel: 40, def: 162, mDef: 162, material: "Leather" }, -{ itemId: 532110, className: "TOP02_110", name: "Light Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 3276, sellPrice: 1868, equipType1: "Shirt", minLevel: 40, def: 216, mDef: 108, material: "Iron" }, -{ itemId: 532111, className: "TOP02_111", name: "Magnus Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2406, equipType1: "Shirt", minLevel: 75, def: 192, mDef: 384, material: "Cloth" }, -{ itemId: 532112, className: "TOP02_112", name: "Pokubon Leather Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 288, mDef: 288, material: "Leather" }, -{ itemId: 532113, className: "TOP02_113", name: "Drake Leather Tunic", type: "Equip", group: "Armor", weight: 165, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 288, mDef: 288, material: "Leather", fireRes: 21, poisonRes: -7 }, -{ itemId: 532114, className: "TOP02_114", name: "Silver Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 384, mDef: 192, material: "Iron" }, -{ itemId: 532118, className: "TOP02_118", name: "Follower Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 72, mDef: 72, material: "Leather" }, -{ itemId: 532119, className: "TOP02_119", name: "Mummyghast Mail", type: "Equip", group: "Armor", weight: 950, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 96, mDef: 48, material: "Iron" }, -{ itemId: 532123, className: "TOP02_123", name: "Cafrisun Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 72, mDef: 72, material: "Leather", poisonRes: 8 }, -{ itemId: 532124, className: "TOP02_124", name: "Dio Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 360, sellPrice: 221, equipType1: "Shirt", minLevel: 1, def: 14, mDef: 28, material: "Cloth", earthRes: 4 }, -{ itemId: 532125, className: "TOP02_125", name: "Dio Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Shirt", minLevel: 1, def: 21, mDef: 21, material: "Leather", poisonRes: 4 }, -{ itemId: 532126, className: "TOP02_126", name: "Dio Chainmail", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Shirt", minLevel: 1, def: 28, mDef: 14, material: "Iron", darkRes: 4 }, -{ itemId: 532127, className: "TOP02_127", name: "Thresh Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 48, mDef: 96, material: "Cloth", darkRes: 5 }, -{ itemId: 532128, className: "TOP02_128", name: "Thresh Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 72, mDef: 72, material: "Leather", lightningRes: 5 }, -{ itemId: 532129, className: "TOP02_129", name: "Thresh Chainmail", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 96, mDef: 48, material: "Iron", darkRes: 5 }, -{ itemId: 532130, className: "TOP02_130", name: "Sestas Greaves", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 48, mDef: 96, material: "Cloth", lightningRes: 6 }, -{ itemId: 532131, className: "TOP02_131", name: "Sestas Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 540, equipType1: "Shirt", minLevel: 15, def: 72, mDef: 72, material: "Leather", poisonRes: 6 }, -{ itemId: 532132, className: "TOP02_132", name: "Sestas Chainmail", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 2592, sellPrice: 781, equipType1: "Shirt", minLevel: 15, def: 96, mDef: 48, material: "Iron", earthRes: 6 }, -{ itemId: 532133, className: "TOP02_133", name: "Dratt Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 108, mDef: 216, material: "Cloth", iceRes: 7 }, -{ itemId: 532134, className: "TOP02_134", name: "Dratt Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 162, mDef: 162, material: "Leather", darkRes: 7 }, -{ itemId: 532135, className: "TOP02_135", name: "Dratt Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 216, mDef: 108, material: "Iron", lightningRes: 7 }, -{ itemId: 532136, className: "TOP02_136", name: "Aston Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 108, mDef: 216, material: "Cloth", darkRes: 8 }, -{ itemId: 532137, className: "TOP02_137", name: "Aston Leather Armor", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 162, mDef: 162, material: "Leather", poisonRes: 8 }, -{ itemId: 532138, className: "TOP02_138", name: "Aston Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 3276, sellPrice: 1707, equipType1: "Shirt", minLevel: 40, def: 216, mDef: 108, material: "Iron", earthRes: 8 }, -{ itemId: 532139, className: "TOP02_139", name: "Devi Greaves", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 192, mDef: 384, material: "Cloth", lightningRes: 9 }, -{ itemId: 532140, className: "TOP02_140", name: "Devi Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 288, mDef: 288, material: "Leather", poisonRes: 9 }, -{ itemId: 532141, className: "TOP02_141", name: "Devi Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 384, mDef: 192, material: "Iron", iceRes: 9 }, -{ itemId: 532142, className: "TOP02_142", name: "Prima Greaves", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 7724, sellPrice: 2457, equipType1: "Shirt", minLevel: 75, def: 192, mDef: 384, material: "Cloth", darkRes: 10 }, -{ itemId: 532143, className: "TOP02_143", name: "Prima Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2483, equipType1: "Shirt", minLevel: 75, def: 288, mDef: 288, material: "Leather", iceRes: 10 }, -{ itemId: 532144, className: "TOP02_144", name: "Prima Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 7724, sellPrice: 2851, equipType1: "Shirt", minLevel: 75, def: 384, mDef: 192, material: "Iron", fireRes: 10 }, -{ itemId: 532149, className: "TOP02_149", name: "Formine Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Shirt", minLevel: 1, def: 21, mDef: 21, material: "Leather", earthRes: 4 }, -{ itemId: 532150, className: "TOP02_150", name: "Riena Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, def: 192, mDef: 384, material: "Cloth" }, -{ itemId: 532151, className: "TOP02_151", name: "Riena Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2457, equipType1: "Shirt", minLevel: 75, def: 288, mDef: 288, material: "Leather" }, -{ itemId: 532152, className: "TOP02_152", name: "Riena Plate Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 7724, sellPrice: 2457, equipType1: "Shirt", minLevel: 75, def: 384, mDef: 192, material: "Iron" }, -{ itemId: 532153, className: "TOP02_153", name: "Watcher Tunic", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 655, equipType1: "Shirt", minLevel: 15, def: 72, mDef: 72, material: "Leather" }, -{ itemId: 532154, className: "TOP02_154", name: "Earth Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1653, equipType1: "Shirt", minLevel: 40, def: 108, mDef: 216, material: "Cloth", earthRes: 5 }, -{ itemId: 532155, className: "TOP02_155", name: "Leather Earth Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1653, equipType1: "Shirt", minLevel: 40, def: 162, mDef: 162, material: "Leather", earthRes: 5 }, -{ itemId: 532156, className: "TOP02_156", name: "Earth Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 3276, sellPrice: 1653, equipType1: "Shirt", minLevel: 40, def: 216, mDef: 108, material: "Iron", earthRes: 5 }, -{ itemId: 532157, className: "TOP02_157", name: "Legwyn Family Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Shirt", minLevel: 120, def: 300, mDef: 600, material: "Cloth" }, -{ itemId: 532158, className: "TOP02_158", name: "Legwyn Family Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Shirt", minLevel: 120, def: 450, mDef: 450, material: "Leather" }, -{ itemId: 532159, className: "TOP02_159", name: "Legwyn Family Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Shirt", minLevel: 120, def: 600, mDef: 300, material: "Iron" }, -{ itemId: 532160, className: "TOP02_160", name: "Ogva Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 48, mDef: 96, material: "Cloth", fireRes: 3 }, -{ itemId: 532161, className: "TOP02_161", name: "Ogva Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 72, mDef: 72, material: "Leather", darkRes: 3 }, -{ itemId: 532162, className: "TOP02_162", name: "Ogva Chain Mail", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 96, mDef: 48, material: "Iron", poisonRes: 3 }, -{ itemId: 532163, className: "TOP02_163", name: "Partis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 48, mDef: 96, material: "Cloth" }, -{ itemId: 532164, className: "TOP02_164", name: "Partis Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 72, mDef: 72, material: "Leather" }, -{ itemId: 532165, className: "TOP02_165", name: "Partis Ring Mail", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 96, mDef: 48, material: "Iron" }, -{ itemId: 532166, className: "TOP02_166", name: "Sirdgela Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 108, mDef: 216, material: "Cloth", poisonRes: 6 }, -{ itemId: 532167, className: "TOP02_167", name: "Sirdgela Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 162, mDef: 162, material: "Leather", earthRes: 6 }, -{ itemId: 532168, className: "TOP02_168", name: "Sirdgela Scale Mail", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 216, mDef: 108, material: "Iron", iceRes: 6 }, -{ itemId: 532169, className: "TOP02_169", name: "Philis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 108, mDef: 216, material: "Cloth", lightningRes: 6 }, -{ itemId: 532170, className: "TOP02_170", name: "Philis Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 162, mDef: 162, material: "Leather", poisonRes: 6 }, -{ itemId: 532171, className: "TOP02_171", name: "Philis Scale Mail", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 216, mDef: 108, material: "Iron", fireRes: 6 }, -{ itemId: 532172, className: "TOP02_172", name: "Allerno Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 192, mDef: 384, material: "Cloth", darkRes: 11 }, -{ itemId: 532173, className: "TOP02_173", name: "Allerno Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 288, mDef: 288, material: "Leather", iceRes: 11 }, -{ itemId: 532174, className: "TOP02_174", name: "Allerno Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 384, mDef: 192, material: "Iron", earthRes: 11 }, -{ itemId: 532175, className: "TOP02_175", name: "Perelin Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 192, mDef: 384, material: "Cloth" }, -{ itemId: 532176, className: "TOP02_176", name: "Perelin Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 288, mDef: 288, material: "Leather" }, -{ itemId: 532177, className: "TOP02_177", name: "Perelin Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 384, mDef: 192, material: "Iron" }, -{ itemId: 532178, className: "TOP02_178", name: "Turn Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 2457, equipType1: "Shirt", minLevel: 120, def: 300, mDef: 600, material: "Cloth", poisonRes: 14 }, -{ itemId: 532179, className: "TOP02_179", name: "Turn Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 13968, sellPrice: 2457, equipType1: "Shirt", minLevel: 120, def: 450, mDef: 450, material: "Leather", lightningRes: 14 }, -{ itemId: 532180, className: "TOP02_180", name: "Turn Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 13968, sellPrice: 2457, equipType1: "Shirt", minLevel: 120, def: 600, mDef: 300, material: "Iron", iceRes: 14 }, -{ itemId: 532181, className: "TOP02_181", name: "Shaton Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Shirt", minLevel: 120, def: 300, mDef: 600, material: "Cloth", darkRes: 16 }, -{ itemId: 532182, className: "TOP02_182", name: "Shaton Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Shirt", minLevel: 120, def: 450, mDef: 450, material: "Leather", fireRes: 16 }, -{ itemId: 532183, className: "TOP02_183", name: "Shaton Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Shirt", minLevel: 120, def: 600, mDef: 300, material: "Iron", darkRes: 16 }, -{ itemId: 532184, className: "TOP02_184", name: "Tyla Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 21826, sellPrice: 3901, equipType1: "Shirt", minLevel: 170, def: 420, mDef: 840, material: "Cloth", darkRes: 21 }, -{ itemId: 532185, className: "TOP02_185", name: "Tyla Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 21826, sellPrice: 3901, equipType1: "Shirt", minLevel: 170, def: 630, mDef: 630, material: "Leather", iceRes: 21 }, -{ itemId: 532186, className: "TOP02_186", name: "Tyla Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 21826, sellPrice: 3901, equipType1: "Shirt", minLevel: 170, def: 840, mDef: 420, material: "Iron", poisonRes: 21 }, -{ itemId: 532187, className: "TOP02_187", name: "Velnia Monkey Leather Armor", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 162, mDef: 162, material: "Leather", lightningRes: 4 }, -{ itemId: 532188, className: "TOP02_188", name: "Elkosh Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Shirt", minLevel: 220, def: 540, mDef: 1080, material: "Cloth" }, -{ itemId: 532189, className: "TOP02_189", name: "Ibre Armor", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Shirt", minLevel: 220, def: 810, mDef: 810, material: "Leather" }, -{ itemId: 532190, className: "TOP02_190", name: "Grynas Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Shirt", minLevel: 220, def: 1080, mDef: 540, material: "Iron" }, -{ itemId: 532200, className: "TOP02_200", name: "Valtas Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Shirt", minLevel: 220, def: 540, mDef: 1080, material: "Cloth", darkRes: 30 }, -{ itemId: 532201, className: "TOP02_201", name: "Valtas Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Shirt", minLevel: 220, def: 810, mDef: 810, material: "Leather", iceRes: 30 }, -{ itemId: 532202, className: "TOP02_202", name: "Valtas Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Shirt", minLevel: 220, def: 1080, mDef: 540, material: "Iron", poisonRes: 30 }, -{ itemId: 532203, className: "TOP02_203", name: "Hasta Tunic", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 660, mDef: 1320, material: "Cloth" }, -{ itemId: 532204, className: "TOP02_204", name: "Hasta Leather Robe", type: "Equip", group: "Armor", weight: 135, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 990, mDef: 990, material: "Leather" }, -{ itemId: 532205, className: "TOP02_205", name: "Hasta Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 1320, mDef: 660, material: "Iron" }, -{ itemId: 532208, className: "TOP02_208", name: "Manahas Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 990, mDef: 990, material: "Leather", iceRes: 15, poisonRes: 8 }, -{ itemId: 532209, className: "TOP02_209", name: "(Faded) Kalinis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, def: 660, mDef: 1320, material: "Cloth" }, -{ itemId: 532210, className: "TOP02_210", name: "(Faded) Albinosas Leather Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, def: 990, mDef: 990, material: "Leather" }, -{ itemId: 532211, className: "TOP02_211", name: "(Faded) Tajtanas Plate Armor", type: "Equip", group: "Armor", weight: 230, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, def: 1320, mDef: 660, material: "Iron" }, -{ itemId: 532212, className: "TOP02_212", name: "(Faded) Oksinis Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, def: 768, mDef: 1536, material: "Cloth" }, -{ itemId: 532213, className: "TOP02_213", name: "(Faded) Kaulas Leather Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, def: 1152, mDef: 1152, material: "Leather" }, -{ itemId: 532214, className: "TOP02_214", name: "(Faded) Krisius Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, def: 1536, mDef: 768, material: "Iron" }, -{ itemId: 532215, className: "TOP02_215", name: "Alpra Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, def: 300, mDef: 600, material: "Cloth" }, -{ itemId: 532216, className: "TOP02_216", name: "Eastern Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, def: 450, mDef: 450, material: "Leather" }, -{ itemId: 532217, className: "TOP02_217", name: "Pangle Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, def: 600, mDef: 300, material: "Iron" }, -{ itemId: 532218, className: "TOP02_218", name: "War Mage Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, def: 420, mDef: 840, material: "Cloth" }, -{ itemId: 532219, className: "TOP02_219", name: "Eaglestar Leather Armor", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, def: 630, mDef: 630, material: "Leather" }, -{ itemId: 532220, className: "TOP02_220", name: "Nyx Knight Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, def: 840, mDef: 420, material: "Iron" }, -{ itemId: 532221, className: "TOP02_221", name: "Marone Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, def: 192, mDef: 384, material: "Cloth" }, -{ itemId: 532222, className: "TOP02_222", name: "Prakeh Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, def: 540, mDef: 1080, material: "Cloth" }, -{ itemId: 532223, className: "TOP02_223", name: "Razna Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, def: 288, mDef: 288, material: "Leather" }, -{ itemId: 532224, className: "TOP02_224", name: "Keyarc Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, def: 810, mDef: 810, material: "Leather" }, -{ itemId: 532225, className: "TOP02_225", name: "Barghar Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, def: 384, mDef: 192, material: "Iron" }, -{ itemId: 532226, className: "TOP02_226", name: "Suurit Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, def: 1080, mDef: 540, material: "Iron" }, -{ itemId: 532227, className: "TOP02_227", name: "Kalinis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, def: 660, mDef: 1320, material: "Cloth" }, -{ itemId: 532228, className: "TOP02_228", name: "Albinosas Leather Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, def: 990, mDef: 990, material: "Leather" }, -{ itemId: 532229, className: "TOP02_229", name: "Tajtanas Plate Armor", type: "Equip", group: "Armor", weight: 230, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, def: 1320, mDef: 660, material: "Iron" }, -{ itemId: 532230, className: "TOP02_230", name: "Oksinis Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 768, mDef: 1536, material: "Cloth" }, -{ itemId: 532231, className: "TOP02_231", name: "Kaulas Leather Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 1152, mDef: 1152, material: "Leather" }, -{ itemId: 532232, className: "TOP02_232", name: "Krisius Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 1536, mDef: 768, material: "Iron" }, -{ itemId: 532233, className: "TOP02_233", name: "Irellis Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 852, mDef: 1704, material: "Cloth" }, -{ itemId: 532234, className: "TOP02_234", name: "Jevenellis Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 1278, mDef: 1278, material: "Leather" }, -{ itemId: 532235, className: "TOP02_235", name: "Basticle Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 1704, mDef: 852, material: "Iron" }, -{ itemId: 532236, className: "TOP02_236", name: "Planeta Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 924, mDef: 1848, material: "Cloth" }, -{ itemId: 532237, className: "TOP02_237", name: "Ukas Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 1386, mDef: 1386, material: "Leather" }, -{ itemId: 532238, className: "TOP02_238", name: "Galaktikos Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 1848, mDef: 924, material: "Iron" }, -{ itemId: 532239, className: "TOP02_239", name: "Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 972, mDef: 1944, material: "Cloth" }, -{ itemId: 532240, className: "TOP02_240", name: "Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1458, mDef: 1458, material: "Leather" }, -{ itemId: 532241, className: "TOP02_241", name: "Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1944, mDef: 972, material: "Iron" }, -{ itemId: 533103, className: "TOP03_103", name: "Vine Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 211, mDef: 422, material: "Cloth", fireRes: -17, poisonRes: 32 }, -{ itemId: 533104, className: "TOP03_104", name: "Saint Robe", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 211, mDef: 422, material: "Cloth", darkRes: 31 }, -{ itemId: 533105, className: "TOP03_105", name: "Soul Chaser Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 316, mDef: 316, material: "Leather" }, -{ itemId: 533106, className: "TOP03_106", name: "Bone Armor", type: "Equip", group: "Armor", weight: 240, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 422, mDef: 211, material: "Iron" }, -{ itemId: 533107, className: "TOP03_107", name: "Shade Dancer", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 72, equipType1: "Shirt", minLevel: 75, def: 316, mDef: 316, material: "Leather", darkRes: 31 }, -{ itemId: 533108, className: "TOP03_108", name: "Rokas Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 178, mDef: 178, material: "Leather" }, -{ itemId: 533109, className: "TOP03_109", name: "Rokas Mail", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 237, mDef: 118, material: "Iron", earthRes: 13, poisonRes: 15 }, -{ itemId: 533110, className: "TOP03_110", name: "Rokas Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 118, mDef: 237, material: "Cloth" }, -{ itemId: 533111, className: "TOP03_111", name: "Roxona Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Shirt", minLevel: 170, def: 462, mDef: 924, material: "Cloth" }, -{ itemId: 533112, className: "TOP03_112", name: "Roxona Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Shirt", minLevel: 170, def: 693, mDef: 693, material: "Leather" }, -{ itemId: 533113, className: "TOP03_113", name: "Roxona Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Shirt", minLevel: 170, def: 924, mDef: 462, material: "Iron", iceRes: 8 }, -{ itemId: 533114, className: "TOP03_114", name: "Virtov Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Shirt", minLevel: 220, def: 594, mDef: 1188, material: "Cloth" }, -{ itemId: 533115, className: "TOP03_115", name: "Virtov Leather Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Shirt", minLevel: 220, def: 891, mDef: 891, material: "Leather" }, -{ itemId: 533116, className: "TOP03_116", name: "Virtov Plate Robe", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Shirt", minLevel: 220, def: 1188, mDef: 594, material: "Iron", fireRes: 23 }, -{ itemId: 533130, className: "TOP03_130", name: "Newt Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 726, mDef: 1452, material: "Cloth" }, -{ itemId: 533131, className: "TOP03_131", name: "Newt Leather Armor", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 1089, mDef: 1089, material: "Leather" }, -{ itemId: 533132, className: "TOP03_132", name: "Newt Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 1452, mDef: 726, material: "Iron", fireRes: 23 }, -{ itemId: 533301, className: "TOP03_301", name: "(Faded) Alpra Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 3846, equipType1: "Shirt", minLevel: 120, addMAtk: 10, def: 330, mDef: 660, material: "Cloth" }, -{ itemId: 533302, className: "TOP03_302", name: "(Faded) Eastern Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 3846, equipType1: "Shirt", minLevel: 120, def: 495, mDef: 495, material: "Leather" }, -{ itemId: 533303, className: "TOP03_303", name: "(Faded) Pangle Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 3846, equipType1: "Shirt", minLevel: 120, def: 660, mDef: 330, material: "Iron" }, -{ itemId: 533304, className: "TOP03_304", name: "(Faded) War Mage Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Shirt", minLevel: 170, def: 462, mDef: 924, material: "Cloth" }, -{ itemId: 533305, className: "TOP03_305", name: "(Faded) Eaglestar Leather Armor", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Shirt", minLevel: 170, def: 693, mDef: 693, material: "Leather" }, -{ itemId: 533306, className: "TOP03_306", name: "(Faded) Nyx Knight Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Shirt", minLevel: 170, def: 924, mDef: 462, material: "Iron", fireRes: 11 }, -{ itemId: 533307, className: "TOP03_307", name: "(Faded) Marone Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 1360, equipType1: "Shirt", minLevel: 75, def: 211, mDef: 422, material: "Cloth" }, -{ itemId: 533308, className: "TOP03_308", name: "(Faded) Prakeh Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Shirt", minLevel: 220, def: 594, mDef: 1188, material: "Cloth" }, -{ itemId: 533309, className: "TOP03_309", name: "(Faded) Razna Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 1360, equipType1: "Shirt", minLevel: 75, def: 316, mDef: 316, material: "Leather", ariesDef: 70 }, -{ itemId: 533310, className: "TOP03_310", name: "(Faded) Keyarc Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Shirt", minLevel: 220, def: 891, mDef: 891, material: "Leather" }, -{ itemId: 533311, className: "TOP03_311", name: "(Faded) Barghar Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 1360, equipType1: "Shirt", minLevel: 75, def: 422, mDef: 211, material: "Iron", soulRes: 13 }, -{ itemId: 533312, className: "TOP03_312", name: "(Faded) Suurit Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Shirt", minLevel: 220, def: 1188, mDef: 594, material: "Iron", ariesDef: 103 }, -{ itemId: 533313, className: "TOP03_313", name: "(Faded) Vienti Kalinis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, def: 726, mDef: 1452, material: "Cloth" }, -{ itemId: 533314, className: "TOP03_314", name: "(Faded) Vienti Albinosas Leather Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, def: 1089, mDef: 1089, material: "Leather" }, -{ itemId: 533315, className: "TOP03_315", name: "(Faded) Vienti Tajtanas Plate Armor", type: "Equip", group: "Armor", weight: 230, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, def: 1452, mDef: 726, material: "Iron" }, -{ itemId: 533316, className: "TOP03_316", name: "(Faded) Vienti Oksinis Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, def: 844, mDef: 1689, material: "Cloth" }, -{ itemId: 533317, className: "TOP03_317", name: "(Faded) Vienti Kaulas Leather Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, def: 1267, mDef: 1267, material: "Leather" }, -{ itemId: 533318, className: "TOP03_318", name: "(Faded) Vienti Krisius Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, def: 1689, mDef: 844, material: "Iron" }, -{ itemId: 533319, className: "TOP03_319", name: "Berthas Alpra Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, def: 330, mDef: 660, material: "Cloth" }, -{ itemId: 533320, className: "TOP03_320", name: "Berthas Eastern Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, def: 495, mDef: 495, material: "Leather" }, -{ itemId: 533321, className: "TOP03_321", name: "Berthas Pangle Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, def: 660, mDef: 330, material: "Iron" }, -{ itemId: 533322, className: "TOP03_322", name: "Berthas Warmage Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, def: 462, mDef: 924, material: "Cloth" }, -{ itemId: 533323, className: "TOP03_323", name: "Berthas Eaglestar Leather Armor", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, def: 693, mDef: 693, material: "Leather" }, -{ itemId: 533324, className: "TOP03_324", name: "Berthas Nyx Knight Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, def: 924, mDef: 462, material: "Iron" }, -{ itemId: 533325, className: "TOP03_325", name: "Berthas Marone Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, def: 211, mDef: 422, material: "Cloth" }, -{ itemId: 533326, className: "TOP03_326", name: "Berthas Prakeh Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, def: 594, mDef: 1188, material: "Cloth" }, -{ itemId: 533327, className: "TOP03_327", name: "Berthas Razna Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, def: 316, mDef: 316, material: "Leather" }, -{ itemId: 533328, className: "TOP03_328", name: "Berthas Keyarc Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, def: 891, mDef: 891, material: "Leather" }, -{ itemId: 533329, className: "TOP03_329", name: "Berthas Barghar Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, def: 422, mDef: 211, material: "Iron" }, -{ itemId: 533330, className: "TOP03_330", name: "Berthas Suurit Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, def: 1188, mDef: 594, material: "Iron" }, -{ itemId: 533331, className: "TOP03_331", name: "Berthas Kalinis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, def: 726, mDef: 1452, material: "Cloth" }, -{ itemId: 533332, className: "TOP03_332", name: "Berthas Albinosas Leather Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, def: 1089, mDef: 1089, material: "Leather" }, -{ itemId: 533333, className: "TOP03_333", name: "Berthas Tajtanas Plate Armor", type: "Equip", group: "Armor", weight: 230, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, def: 1452, mDef: 726, material: "Iron" }, -{ itemId: 533334, className: "TOP03_334", name: "Berthas Oksinis Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 844, mDef: 1689, material: "Cloth" }, -{ itemId: 533335, className: "TOP03_335", name: "Berthas Kaulas Leather Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 1267, mDef: 1267, material: "Leather" }, -{ itemId: 533336, className: "TOP03_336", name: "Berthas Krisius Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 1689, mDef: 844, material: "Iron" }, -{ itemId: 533337, className: "TOP03_337", name: "Berthas Irellis Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 937, mDef: 1874, material: "Cloth" }, -{ itemId: 533338, className: "TOP03_338", name: "Berthas Jevenellis Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 1405, mDef: 1405, material: "Leather" }, -{ itemId: 533339, className: "TOP03_339", name: "Berthas Basticle Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 1874, mDef: 937, material: "Iron" }, -{ itemId: 533340, className: "TOP03_340", name: "Berthas Planeta Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 1016, mDef: 2032, material: "Cloth" }, -{ itemId: 533341, className: "TOP03_341", name: "Berthas Ukas Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 1524, mDef: 1524, material: "Leather" }, -{ itemId: 533342, className: "TOP03_342", name: "Berthas Galaktikos Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 2032, mDef: 1016, material: "Iron" }, -{ itemId: 533343, className: "TOP03_343", name: "Berthas Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1069, mDef: 2138, material: "Cloth" }, -{ itemId: 533344, className: "TOP03_344", name: "Berthas Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1603, mDef: 1603, material: "Leather" }, -{ itemId: 533345, className: "TOP03_345", name: "Berthas Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 2138, mDef: 1069, material: "Iron" }, -{ itemId: 533346, className: "TOP03_346", name: "Berthas Dysnai Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, def: 1148, mDef: 2296, material: "Cloth" }, -{ itemId: 533347, className: "TOP03_347", name: "Berthas Dysnai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, def: 1722, mDef: 1722, material: "Leather" }, -{ itemId: 533348, className: "TOP03_348", name: "Berthas Dysnai Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, def: 2296, mDef: 1148, material: "Iron" }, -{ itemId: 534102, className: "TOP04_102", name: "Zachariel's Heart", type: "Equip", group: "Armor", weight: 140, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, def: 360, mDef: 360, material: "Leather", fireRes: -41, iceRes: -41, lightningRes: -41 }, -{ itemId: 534104, className: "TOP04_104", name: "Banshee Veil", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Shirt", minLevel: 120, def: 375, mDef: 375, material: "Ghost" }, -{ itemId: 534106, className: "TOP04_106", name: "Lolopanther Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 1056, mDef: 2112, material: "Cloth", earthRes: 41 }, -{ itemId: 534107, className: "TOP04_107", name: "Lolopanther Leather Armor", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 1584, mDef: 1584, material: "Leather", earthRes: 44 }, -{ itemId: 534108, className: "TOP04_108", name: "Lolopanther Plate Mail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 2112, mDef: 1056, material: "Iron", earthRes: 44 }, -{ itemId: 534109, className: "TOP04_109", name: "Solmiki Robe", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 11656, equipType1: "Shirt", minLevel: 330, def: 1286, mDef: 2572, material: "Cloth", holyRes: 82 }, -{ itemId: 534110, className: "TOP04_110", name: "Solmiki Leather Armor", type: "Equip", group: "Armor", weight: 140, maxStack: 1, price: 43920, sellPrice: 11656, equipType1: "Shirt", minLevel: 330, def: 1929, mDef: 1929, material: "Leather", holyRes: 84 }, -{ itemId: 534111, className: "TOP04_111", name: "Solmiki Plate Mail", type: "Equip", group: "Armor", weight: 175, maxStack: 1, price: 43920, sellPrice: 11656, equipType1: "Shirt", minLevel: 330, def: 2572, mDef: 1286, material: "Iron", slashDef: 210, holyRes: 88 }, -{ itemId: 534112, className: "TOP04_112", name: "Primus Alpra Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, def: 375, mDef: 750, material: "Cloth" }, -{ itemId: 534113, className: "TOP04_113", name: "Primus Eastern Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, def: 562, mDef: 562, material: "Leather" }, -{ itemId: 534114, className: "TOP04_114", name: "Primus Pangle Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, def: 750, mDef: 375, material: "Iron" }, -{ itemId: 534115, className: "TOP04_115", name: "Primus Warmage Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, def: 525, mDef: 1050, material: "Cloth" }, -{ itemId: 534116, className: "TOP04_116", name: "Primus Eaglestar Leather Armor", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, def: 787, mDef: 787, material: "Leather" }, -{ itemId: 534117, className: "TOP04_117", name: "Primus Nyx Knight Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, def: 1050, mDef: 525, material: "Iron" }, -{ itemId: 534118, className: "TOP04_118", name: "Primus Marone Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, def: 240, mDef: 480, material: "Cloth" }, -{ itemId: 534119, className: "TOP04_119", name: "Primus Prakeh Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, def: 675, mDef: 1350, material: "Cloth" }, -{ itemId: 534120, className: "TOP04_120", name: "Primus Razna Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, def: 360, mDef: 360, material: "Leather" }, -{ itemId: 534121, className: "TOP04_121", name: "Primus Keyarc Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, def: 1012, mDef: 1012, material: "Leather" }, -{ itemId: 534122, className: "TOP04_122", name: "Primus Barghar Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, def: 480, mDef: 240, material: "Iron" }, -{ itemId: 534123, className: "TOP04_123", name: "Primus Suurit Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, def: 1350, mDef: 675, material: "Iron" }, -{ itemId: 534124, className: "TOP04_124", name: "Primus Kalinis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, def: 825, mDef: 1650, material: "Cloth" }, -{ itemId: 534125, className: "TOP04_125", name: "Primus Albinosas Leather Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, def: 1237, mDef: 1237, material: "Leather" }, -{ itemId: 534126, className: "TOP04_126", name: "Primus Tajtanas Plate Armor", type: "Equip", group: "Armor", weight: 230, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, def: 1650, mDef: 825, material: "Iron" }, -{ itemId: 534127, className: "TOP04_127", name: "Primus Oksinis Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 960, mDef: 1920, material: "Cloth" }, -{ itemId: 534128, className: "TOP04_128", name: "Primus Kaulas Leather Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 1440, mDef: 1440, material: "Leather" }, -{ itemId: 534129, className: "TOP04_129", name: "Primus Krisius Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 1920, mDef: 960, material: "Iron" }, -{ itemId: 534130, className: "TOP04_130", name: "Primus Irellis Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 1065, mDef: 2130, material: "Cloth" }, -{ itemId: 534131, className: "TOP04_131", name: "Primus Jevenellis Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 1597, mDef: 1597, material: "Leather" }, -{ itemId: 534132, className: "TOP04_132", name: "Primus Basticle Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 2130, mDef: 1065, material: "Iron" }, -{ itemId: 534133, className: "TOP04_133", name: "Laitas Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 1065, mDef: 2130, addMDef: 288, material: "Cloth" }, -{ itemId: 534134, className: "TOP04_134", name: "Fietas Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 1597, mDef: 1597, material: "Leather" }, -{ itemId: 534135, className: "TOP04_135", name: "Ausura Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 2130, mDef: 1065, addDef: 288, material: "Iron" }, -{ itemId: 534136, className: "TOP04_136", name: "Primus Planeta Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 1155, mDef: 2310, material: "Cloth" }, -{ itemId: 534137, className: "TOP04_137", name: "Primus Ukas Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 1732, mDef: 1732, material: "Leather" }, -{ itemId: 534138, className: "TOP04_138", name: "Primus Galaktikos Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 2310, mDef: 1155, material: "Iron" }, -{ itemId: 534139, className: "TOP04_139", name: "Ignas Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 1155, mDef: 2310, material: "Cloth" }, -{ itemId: 534140, className: "TOP04_140", name: "Ignas Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 1732, mDef: 1732, material: "Leather" }, -{ itemId: 534141, className: "TOP04_141", name: "Ignas Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 2310, mDef: 1155, material: "Iron" }, -{ itemId: 534142, className: "TOP04_142", name: "Primus Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1215, mDef: 2430, material: "Cloth" }, -{ itemId: 534143, className: "TOP04_143", name: "Primus Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1822, mDef: 1822, material: "Leather" }, -{ itemId: 534144, className: "TOP04_144", name: "Primus Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 2430, mDef: 1215, material: "Iron" }, -{ itemId: 534145, className: "TOP04_145", name: "Skiaclipse Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1215, mDef: 2430, addMDef: 387, material: "Cloth" }, -{ itemId: 534146, className: "TOP04_146", name: "Skiaclipse Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1822, mDef: 1822, material: "Leather" }, -{ itemId: 534147, className: "TOP04_147", name: "Skiaclipse Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, pAtk: 74, def: 2430, mDef: 1215, material: "Iron" }, -{ itemId: 534148, className: "TOP04_148", name: "Skiaclipse Robe - Compassion", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1215, mDef: 2430, addMDef: 160, material: "Cloth" }, -{ itemId: 534149, className: "TOP04_149", name: "Skiaclipse Leather Armor - Assault", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1822, mDef: 1822, material: "Leather" }, -{ itemId: 534150, className: "TOP04_150", name: "Skiaclipse Plate Armor - Iron Wall", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 2430, mDef: 1215, material: "Iron" }, -{ itemId: 534151, className: "TOP04_151", name: "Moringponia Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 2430, mDef: 1215, material: "Iron" }, -{ itemId: 534152, className: "TOP04_152", name: "Moringponia Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1215, mDef: 2430, material: "Cloth" }, -{ itemId: 534153, className: "TOP04_153", name: "Moringponia Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1822, mDef: 1822, material: "Leather" }, -{ itemId: 534154, className: "TOP04_154", name: "Misrus Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 2430, mDef: 1215, material: "Iron" }, -{ itemId: 534155, className: "TOP04_155", name: "Misrus Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1215, mDef: 2430, material: "Cloth" }, -{ itemId: 534156, className: "TOP04_156", name: "Misrus Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1822, mDef: 1822, material: "Leather" }, -{ itemId: 534157, className: "TOP04_157", name: "Primus Dysnai Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, def: 1305, mDef: 2610, material: "Cloth" }, -{ itemId: 534158, className: "TOP04_158", name: "Primus Dysnai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, def: 1957, mDef: 1957, material: "Leather" }, -{ itemId: 534159, className: "TOP04_159", name: "Primus Dysnai Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, def: 2610, mDef: 1305, material: "Iron" }, -{ itemId: 535101, className: "TOP05_101", name: "Velcoffer Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 360, def: 1401, mDef: 2803, material: "Cloth" }, -{ itemId: 535102, className: "TOP05_102", name: "Velcoffer Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 360, def: 2102, mDef: 2102, material: "Leather" }, -{ itemId: 535103, className: "TOP05_103", name: "Velcoffer Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 360, def: 2803, mDef: 1401, material: "Iron" }, -{ itemId: 535104, className: "TOP05_104", name: "Velcoffer Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 360, def: 1401, mDef: 2803, material: "Cloth" }, -{ itemId: 535105, className: "TOP05_105", name: "Velcoffer Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 360, def: 2102, mDef: 2102, material: "Leather" }, -{ itemId: 535106, className: "TOP05_106", name: "Velcoffer Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 360, def: 2803, mDef: 1401, material: "Iron" }, -{ itemId: 535107, className: "TOP05_107", name: "Savinose Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1555, mDef: 3110, material: "Cloth" }, -{ itemId: 535108, className: "TOP05_108", name: "Savinose Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 2332, mDef: 2332, material: "Leather" }, -{ itemId: 535109, className: "TOP05_109", name: "Savinose Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 3110, mDef: 1555, material: "Iron" }, -{ itemId: 535110, className: "TOP05_110", name: "Skiaclipse Varna Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 3110, mDef: 1555, material: "Iron" }, -{ itemId: 535111, className: "TOP05_111", name: "Skiaclipse Varna Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1555, mDef: 3110, material: "Cloth" }, -{ itemId: 535112, className: "TOP05_112", name: "Skiaclipse Varna Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 2332, mDef: 2332, material: "Leather" }, -{ itemId: 580001, className: "NECK99_101", name: "Zemyna's Necklace", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 3, maxAtk: 3, mAtk: 3 }, +{ itemId: 531133, className: "TOP01_133", name: "Cotton Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 43, mDef: 86, material: "Cloth" }, +{ itemId: 531134, className: "TOP01_134", name: "Ring Mail", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 86, mDef: 43, material: "Iron" }, +{ itemId: 531135, className: "TOP01_135", name: "Superior Regal Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 172, mDef: 345, material: "Cloth" }, +{ itemId: 531136, className: "TOP01_136", name: "Superior Brigandine Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2457, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 259, mDef: 259, material: "Leather" }, +{ itemId: 531137, className: "TOP01_137", name: "Full Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 2822, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 345, mDef: 172, material: "Iron" }, +{ itemId: 531138, className: "TOP01_138", name: "Fedimian Robe", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 13968, sellPrice: 3846, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 270, mDef: 540, material: "Cloth" }, +{ itemId: 531139, className: "TOP01_139", name: "Fedimian Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 3846, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 405, mDef: 405, material: "Leather" }, +{ itemId: 531140, className: "TOP01_140", name: "Fedimian Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 13968, sellPrice: 3846, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 540, mDef: 270, material: "Iron" }, +{ itemId: 531141, className: "TOP01_141", name: "Magician Robe", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 270, mDef: 540, material: "Cloth" }, +{ itemId: 531142, className: "TOP01_142", name: "Hunting Armor", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 13968, sellPrice: 3874, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 405, mDef: 405, material: "Leather" }, +{ itemId: 531143, className: "TOP01_143", name: "Guard Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 540, mDef: 270, material: "Iron" }, +{ itemId: 531144, className: "TOP01_144", name: "Mage Robe", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 270, mDef: 540, material: "Cloth" }, +{ itemId: 531145, className: "TOP01_145", name: "Skirmisher Tunic", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 405, mDef: 405, material: "Leather" }, +{ itemId: 531146, className: "TOP01_146", name: "Infantry Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 540, mDef: 270, material: "Iron" }, +{ itemId: 531147, className: "TOP01_147", name: "Archmage Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 21826, sellPrice: 5820, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 378, mDef: 756, material: "Cloth" }, +{ itemId: 531148, className: "TOP01_148", name: "Superior Skirmisher Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 21826, sellPrice: 5820, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 567, mDef: 567, material: "Leather" }, +{ itemId: 531149, className: "TOP01_149", name: "Superior Infantry Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 21826, sellPrice: 5820, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 756, mDef: 378, material: "Iron" }, +{ itemId: 531150, className: "TOP01_150", name: "Librarian Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 5881, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 378, mDef: 756, material: "Cloth" }, +{ itemId: 531151, className: "TOP01_151", name: "Veteran Tunic", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 21826, sellPrice: 5881, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 567, mDef: 567, material: "Leather" }, +{ itemId: 531152, className: "TOP01_152", name: "Knight Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 21826, sellPrice: 5881, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 756, mDef: 378, material: "Iron" }, +{ itemId: 531153, className: "TOP01_153", name: "Superior Grima Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 172, mDef: 345, material: "Cloth" }, +{ itemId: 531154, className: "TOP01_154", name: "Royal Mage Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 7113, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 486, mDef: 972, material: "Cloth" }, +{ itemId: 531155, className: "TOP01_155", name: "Bandit Armor", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 29405, sellPrice: 7113, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 729, mDef: 729, material: "Leather" }, +{ itemId: 531156, className: "TOP01_156", name: "Royal Guard Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 7113, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 972, mDef: 486, material: "Iron" }, +{ itemId: 531157, className: "TOP01_157", name: "Superior Royal Mage Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 7171, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 486, mDef: 972, material: "Cloth" }, +{ itemId: 531158, className: "TOP01_158", name: "Superior Bandit Armor", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 29405, sellPrice: 7171, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 729, mDef: 729, material: "Leather" }, +{ itemId: 531159, className: "TOP01_159", name: "Superior Royal Guard Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 7171, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 972, mDef: 486, material: "Iron" }, +{ itemId: 531203, className: "TOP01_203", name: "Blint Tunic", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 594, mDef: 1188, material: "Cloth" }, +{ itemId: 531204, className: "TOP01_204", name: "Blint Leather Robe", type: "Equip", group: "Armor", weight: 125, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 891, mDef: 891, material: "Leather" }, +{ itemId: 531205, className: "TOP01_205", name: "Blint Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1188, mDef: 594, material: "Iron" }, +{ itemId: 531206, className: "TOP01_206", name: "(Faded) Replica Kalinis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 594, mDef: 1188, material: "Cloth" }, +{ itemId: 531207, className: "TOP01_207", name: "(Faded) Replica Albinosas Leather Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 891, mDef: 891, material: "Leather" }, +{ itemId: 531208, className: "TOP01_208", name: "(Faded) Replica Tajtanas Plate Armor", type: "Equip", group: "Armor", weight: 230, maxStack: 1, price: 50000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1188, mDef: 594, material: "Iron" }, +{ itemId: 531209, className: "TOP01_209", name: "(Faded) Replica Oksinis Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 691, mDef: 1382, material: "Cloth" }, +{ itemId: 531210, className: "TOP01_210", name: "(Faded) Replica Kaulas Leather Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1036, mDef: 1036, material: "Leather" }, +{ itemId: 531211, className: "TOP01_211", name: "(Faded) Replica Krisius Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 75000, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1382, mDef: 691, material: "Iron" }, +{ itemId: 532101, className: "TOP02_101", name: "Crimson Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Leather" }, +{ itemId: 532102, className: "TOP02_102", name: "Pokubu Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 411, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 21, mDef: 21, material: "Leather" }, +{ itemId: 532103, className: "TOP02_103", name: "Tenet Chainmail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 907, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 96, mDef: 48, material: "Iron" }, +{ itemId: 532104, className: "TOP02_104", name: "Zalia Leather Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather" }, +{ itemId: 532105, className: "TOP02_105", name: "Prova Robe", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 216, material: "Cloth" }, +{ itemId: 532106, className: "TOP02_106", name: "Studded Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather", poisonRes: 18 }, +{ itemId: 532107, className: "TOP02_107", name: "Insect Mail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 216, mDef: 108, material: "Iron" }, +{ itemId: 532109, className: "TOP02_109", name: "Red Veris Tunic", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1572, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather" }, +{ itemId: 532110, className: "TOP02_110", name: "Light Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 3276, sellPrice: 1868, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 216, mDef: 108, material: "Iron" }, +{ itemId: 532111, className: "TOP02_111", name: "Magnus Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2406, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 384, material: "Cloth" }, +{ itemId: 532112, className: "TOP02_112", name: "Pokubon Leather Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather" }, +{ itemId: 532113, className: "TOP02_113", name: "Drake Leather Tunic", type: "Equip", group: "Armor", weight: 165, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather", fireRes: 21, poisonRes: -7 }, +{ itemId: 532114, className: "TOP02_114", name: "Silver Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 384, mDef: 192, material: "Iron" }, +{ itemId: 532118, className: "TOP02_118", name: "Follower Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Leather" }, +{ itemId: 532119, className: "TOP02_119", name: "Mummyghast Mail", type: "Equip", group: "Armor", weight: 950, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 96, mDef: 48, material: "Iron" }, +{ itemId: 532123, className: "TOP02_123", name: "Cafrisun Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Leather", poisonRes: 8 }, +{ itemId: 532124, className: "TOP02_124", name: "Dio Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 360, sellPrice: 221, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 14, mDef: 28, material: "Cloth", earthRes: 4 }, +{ itemId: 532125, className: "TOP02_125", name: "Dio Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 21, mDef: 21, material: "Leather", poisonRes: 4 }, +{ itemId: 532126, className: "TOP02_126", name: "Dio Chainmail", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 28, mDef: 14, material: "Iron", darkRes: 4 }, +{ itemId: 532127, className: "TOP02_127", name: "Thresh Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 96, material: "Cloth", darkRes: 5 }, +{ itemId: 532128, className: "TOP02_128", name: "Thresh Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Leather", lightningRes: 5 }, +{ itemId: 532129, className: "TOP02_129", name: "Thresh Chainmail", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 96, mDef: 48, material: "Iron", darkRes: 5 }, +{ itemId: 532130, className: "TOP02_130", name: "Sestas Greaves", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 96, material: "Cloth", lightningRes: 6 }, +{ itemId: 532131, className: "TOP02_131", name: "Sestas Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 540, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Leather", poisonRes: 6 }, +{ itemId: 532132, className: "TOP02_132", name: "Sestas Chainmail", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 2592, sellPrice: 781, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 96, mDef: 48, material: "Iron", earthRes: 6 }, +{ itemId: 532133, className: "TOP02_133", name: "Dratt Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 216, material: "Cloth", iceRes: 7 }, +{ itemId: 532134, className: "TOP02_134", name: "Dratt Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather", darkRes: 7 }, +{ itemId: 532135, className: "TOP02_135", name: "Dratt Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 216, mDef: 108, material: "Iron", lightningRes: 7 }, +{ itemId: 532136, className: "TOP02_136", name: "Aston Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 216, material: "Cloth", darkRes: 8 }, +{ itemId: 532137, className: "TOP02_137", name: "Aston Leather Armor", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather", poisonRes: 8 }, +{ itemId: 532138, className: "TOP02_138", name: "Aston Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 3276, sellPrice: 1707, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 216, mDef: 108, material: "Iron", earthRes: 8 }, +{ itemId: 532139, className: "TOP02_139", name: "Devi Greaves", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 384, material: "Cloth", lightningRes: 9 }, +{ itemId: 532140, className: "TOP02_140", name: "Devi Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather", poisonRes: 9 }, +{ itemId: 532141, className: "TOP02_141", name: "Devi Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 384, mDef: 192, material: "Iron", iceRes: 9 }, +{ itemId: 532142, className: "TOP02_142", name: "Prima Greaves", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 7724, sellPrice: 2457, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 384, material: "Cloth", darkRes: 10 }, +{ itemId: 532143, className: "TOP02_143", name: "Prima Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2483, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather", iceRes: 10 }, +{ itemId: 532144, className: "TOP02_144", name: "Prima Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 7724, sellPrice: 2851, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 384, mDef: 192, material: "Iron", fireRes: 10 }, +{ itemId: 532149, className: "TOP02_149", name: "Formine Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 518, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 21, mDef: 21, material: "Leather", earthRes: 4 }, +{ itemId: 532150, className: "TOP02_150", name: "Riena Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 384, material: "Cloth" }, +{ itemId: 532151, className: "TOP02_151", name: "Riena Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2457, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather" }, +{ itemId: 532152, className: "TOP02_152", name: "Riena Plate Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 7724, sellPrice: 2457, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 384, mDef: 192, material: "Iron" }, +{ itemId: 532153, className: "TOP02_153", name: "Watcher Tunic", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 655, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Leather" }, +{ itemId: 532154, className: "TOP02_154", name: "Earth Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1653, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 216, material: "Cloth", earthRes: 5 }, +{ itemId: 532155, className: "TOP02_155", name: "Leather Earth Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1653, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather", earthRes: 5 }, +{ itemId: 532156, className: "TOP02_156", name: "Earth Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 3276, sellPrice: 1653, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 216, mDef: 108, material: "Iron", earthRes: 5 }, +{ itemId: 532157, className: "TOP02_157", name: "Legwyn Family Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 600, material: "Cloth" }, +{ itemId: 532158, className: "TOP02_158", name: "Legwyn Family Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 450, mDef: 450, material: "Leather" }, +{ itemId: 532159, className: "TOP02_159", name: "Legwyn Family Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 13968, sellPrice: 3901, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 600, mDef: 300, material: "Iron" }, +{ itemId: 532160, className: "TOP02_160", name: "Ogva Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 96, material: "Cloth", fireRes: 3 }, +{ itemId: 532161, className: "TOP02_161", name: "Ogva Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Leather", darkRes: 3 }, +{ itemId: 532162, className: "TOP02_162", name: "Ogva Chain Mail", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 96, mDef: 48, material: "Iron", poisonRes: 3 }, +{ itemId: 532163, className: "TOP02_163", name: "Partis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 48, mDef: 96, material: "Cloth" }, +{ itemId: 532164, className: "TOP02_164", name: "Partis Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 72, mDef: 72, material: "Leather" }, +{ itemId: 532165, className: "TOP02_165", name: "Partis Ring Mail", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, equipExpGroup: "Equip", def: 96, mDef: 48, material: "Iron" }, +{ itemId: 532166, className: "TOP02_166", name: "Sirdgela Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 216, material: "Cloth", poisonRes: 6 }, +{ itemId: 532167, className: "TOP02_167", name: "Sirdgela Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather", earthRes: 6 }, +{ itemId: 532168, className: "TOP02_168", name: "Sirdgela Scale Mail", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 216, mDef: 108, material: "Iron", iceRes: 6 }, +{ itemId: 532169, className: "TOP02_169", name: "Philis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 108, mDef: 216, material: "Cloth", lightningRes: 6 }, +{ itemId: 532170, className: "TOP02_170", name: "Philis Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather", poisonRes: 6 }, +{ itemId: 532171, className: "TOP02_171", name: "Philis Scale Mail", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 216, mDef: 108, material: "Iron", fireRes: 6 }, +{ itemId: 532172, className: "TOP02_172", name: "Allerno Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 384, material: "Cloth", darkRes: 11 }, +{ itemId: 532173, className: "TOP02_173", name: "Allerno Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather", iceRes: 11 }, +{ itemId: 532174, className: "TOP02_174", name: "Allerno Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 384, mDef: 192, material: "Iron", earthRes: 11 }, +{ itemId: 532175, className: "TOP02_175", name: "Perelin Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 384, material: "Cloth" }, +{ itemId: 532176, className: "TOP02_176", name: "Perelin Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather" }, +{ itemId: 532177, className: "TOP02_177", name: "Perelin Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 384, mDef: 192, material: "Iron" }, +{ itemId: 532178, className: "TOP02_178", name: "Turn Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 2457, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 600, material: "Cloth", poisonRes: 14 }, +{ itemId: 532179, className: "TOP02_179", name: "Turn Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 13968, sellPrice: 2457, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 450, mDef: 450, material: "Leather", lightningRes: 14 }, +{ itemId: 532180, className: "TOP02_180", name: "Turn Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 13968, sellPrice: 2457, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 600, mDef: 300, material: "Iron", iceRes: 14 }, +{ itemId: 532181, className: "TOP02_181", name: "Shaton Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 600, material: "Cloth", darkRes: 16 }, +{ itemId: 532182, className: "TOP02_182", name: "Shaton Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 450, mDef: 450, material: "Leather", fireRes: 16 }, +{ itemId: 532183, className: "TOP02_183", name: "Shaton Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 600, mDef: 300, material: "Iron", darkRes: 16 }, +{ itemId: 532184, className: "TOP02_184", name: "Tyla Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 21826, sellPrice: 3901, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 420, mDef: 840, material: "Cloth", darkRes: 21 }, +{ itemId: 532185, className: "TOP02_185", name: "Tyla Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 21826, sellPrice: 3901, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 630, mDef: 630, material: "Leather", iceRes: 21 }, +{ itemId: 532186, className: "TOP02_186", name: "Tyla Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 21826, sellPrice: 3901, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 840, mDef: 420, material: "Iron", poisonRes: 21 }, +{ itemId: 532187, className: "TOP02_187", name: "Velnia Monkey Leather Armor", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 162, mDef: 162, material: "Leather", lightningRes: 4 }, +{ itemId: 532188, className: "TOP02_188", name: "Elkosh Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 540, mDef: 1080, material: "Cloth" }, +{ itemId: 532189, className: "TOP02_189", name: "Ibre Armor", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 810, mDef: 810, material: "Leather" }, +{ itemId: 532190, className: "TOP02_190", name: "Grynas Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 1080, mDef: 540, material: "Iron" }, +{ itemId: 532200, className: "TOP02_200", name: "Valtas Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 540, mDef: 1080, material: "Cloth", darkRes: 30 }, +{ itemId: 532201, className: "TOP02_201", name: "Valtas Leather Tunic", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 810, mDef: 810, material: "Leather", iceRes: 30 }, +{ itemId: 532202, className: "TOP02_202", name: "Valtas Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 1080, mDef: 540, material: "Iron", poisonRes: 30 }, +{ itemId: 532203, className: "TOP02_203", name: "Hasta Tunic", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 660, mDef: 1320, material: "Cloth" }, +{ itemId: 532204, className: "TOP02_204", name: "Hasta Leather Robe", type: "Equip", group: "Armor", weight: 135, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 990, mDef: 990, material: "Leather" }, +{ itemId: 532205, className: "TOP02_205", name: "Hasta Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1320, mDef: 660, material: "Iron" }, +{ itemId: 532208, className: "TOP02_208", name: "Manahas Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 990, mDef: 990, material: "Leather", iceRes: 15, poisonRes: 8 }, +{ itemId: 532209, className: "TOP02_209", name: "(Faded) Kalinis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 660, mDef: 1320, material: "Cloth" }, +{ itemId: 532210, className: "TOP02_210", name: "(Faded) Albinosas Leather Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 990, mDef: 990, material: "Leather" }, +{ itemId: 532211, className: "TOP02_211", name: "(Faded) Tajtanas Plate Armor", type: "Equip", group: "Armor", weight: 230, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1320, mDef: 660, material: "Iron" }, +{ itemId: 532212, className: "TOP02_212", name: "(Faded) Oksinis Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 768, mDef: 1536, material: "Cloth" }, +{ itemId: 532213, className: "TOP02_213", name: "(Faded) Kaulas Leather Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1152, mDef: 1152, material: "Leather" }, +{ itemId: 532214, className: "TOP02_214", name: "(Faded) Krisius Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1536, mDef: 768, material: "Iron" }, +{ itemId: 532215, className: "TOP02_215", name: "Alpra Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 300, mDef: 600, material: "Cloth" }, +{ itemId: 532216, className: "TOP02_216", name: "Eastern Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 450, mDef: 450, material: "Leather" }, +{ itemId: 532217, className: "TOP02_217", name: "Pangle Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 600, mDef: 300, material: "Iron" }, +{ itemId: 532218, className: "TOP02_218", name: "War Mage Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 420, mDef: 840, material: "Cloth" }, +{ itemId: 532219, className: "TOP02_219", name: "Eaglestar Leather Armor", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 630, mDef: 630, material: "Leather" }, +{ itemId: 532220, className: "TOP02_220", name: "Nyx Knight Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 840, mDef: 420, material: "Iron" }, +{ itemId: 532221, className: "TOP02_221", name: "Marone Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 192, mDef: 384, material: "Cloth" }, +{ itemId: 532222, className: "TOP02_222", name: "Prakeh Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 540, mDef: 1080, material: "Cloth" }, +{ itemId: 532223, className: "TOP02_223", name: "Razna Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 288, mDef: 288, material: "Leather" }, +{ itemId: 532224, className: "TOP02_224", name: "Keyarc Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 810, mDef: 810, material: "Leather" }, +{ itemId: 532225, className: "TOP02_225", name: "Barghar Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 384, mDef: 192, material: "Iron" }, +{ itemId: 532226, className: "TOP02_226", name: "Suurit Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 1080, mDef: 540, material: "Iron" }, +{ itemId: 532227, className: "TOP02_227", name: "Kalinis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 660, mDef: 1320, material: "Cloth" }, +{ itemId: 532228, className: "TOP02_228", name: "Albinosas Leather Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 990, mDef: 990, material: "Leather" }, +{ itemId: 532229, className: "TOP02_229", name: "Tajtanas Plate Armor", type: "Equip", group: "Armor", weight: 230, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1320, mDef: 660, material: "Iron" }, +{ itemId: 532230, className: "TOP02_230", name: "Oksinis Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 768, mDef: 1536, material: "Cloth" }, +{ itemId: 532231, className: "TOP02_231", name: "Kaulas Leather Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1152, mDef: 1152, material: "Leather" }, +{ itemId: 532232, className: "TOP02_232", name: "Krisius Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1536, mDef: 768, material: "Iron" }, +{ itemId: 532233, className: "TOP02_233", name: "Irellis Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 852, mDef: 1704, material: "Cloth" }, +{ itemId: 532234, className: "TOP02_234", name: "Jevenellis Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 1278, mDef: 1278, material: "Leather" }, +{ itemId: 532235, className: "TOP02_235", name: "Basticle Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 1704, mDef: 852, material: "Iron" }, +{ itemId: 532236, className: "TOP02_236", name: "Planeta Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 924, mDef: 1848, material: "Cloth" }, +{ itemId: 532237, className: "TOP02_237", name: "Ukas Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 1386, mDef: 1386, material: "Leather" }, +{ itemId: 532238, className: "TOP02_238", name: "Galaktikos Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 1848, mDef: 924, material: "Iron" }, +{ itemId: 532239, className: "TOP02_239", name: "Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 972, mDef: 1944, material: "Cloth" }, +{ itemId: 532240, className: "TOP02_240", name: "Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1458, mDef: 1458, material: "Leather" }, +{ itemId: 532241, className: "TOP02_241", name: "Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1944, mDef: 972, material: "Iron" }, +{ itemId: 533103, className: "TOP03_103", name: "Vine Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 211, mDef: 422, material: "Cloth", fireRes: -17, poisonRes: 32 }, +{ itemId: 533104, className: "TOP03_104", name: "Saint Robe", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 211, mDef: 422, material: "Cloth", darkRes: 31 }, +{ itemId: 533105, className: "TOP03_105", name: "Soul Chaser Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 316, mDef: 316, material: "Leather" }, +{ itemId: 533106, className: "TOP03_106", name: "Bone Armor", type: "Equip", group: "Armor", weight: 240, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 422, mDef: 211, material: "Iron" }, +{ itemId: 533107, className: "TOP03_107", name: "Shade Dancer", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 7724, sellPrice: 72, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 316, mDef: 316, material: "Leather", darkRes: 31 }, +{ itemId: 533108, className: "TOP03_108", name: "Rokas Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 178, mDef: 178, material: "Leather" }, +{ itemId: 533109, className: "TOP03_109", name: "Rokas Mail", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 237, mDef: 118, material: "Iron", earthRes: 13, poisonRes: 15 }, +{ itemId: 533110, className: "TOP03_110", name: "Rokas Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, equipExpGroup: "Equip", def: 118, mDef: 237, material: "Cloth" }, +{ itemId: 533111, className: "TOP03_111", name: "Roxona Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 462, mDef: 924, material: "Cloth" }, +{ itemId: 533112, className: "TOP03_112", name: "Roxona Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 693, mDef: 693, material: "Leather" }, +{ itemId: 533113, className: "TOP03_113", name: "Roxona Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 924, mDef: 462, material: "Iron", iceRes: 8 }, +{ itemId: 533114, className: "TOP03_114", name: "Virtov Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 594, mDef: 1188, material: "Cloth" }, +{ itemId: 533115, className: "TOP03_115", name: "Virtov Leather Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 891, mDef: 891, material: "Leather" }, +{ itemId: 533116, className: "TOP03_116", name: "Virtov Plate Robe", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 29405, sellPrice: 7142, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 1188, mDef: 594, material: "Iron", fireRes: 23 }, +{ itemId: 533130, className: "TOP03_130", name: "Newt Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 726, mDef: 1452, material: "Cloth" }, +{ itemId: 533131, className: "TOP03_131", name: "Newt Leather Armor", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1089, mDef: 1089, material: "Leather" }, +{ itemId: 533132, className: "TOP03_132", name: "Newt Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1452, mDef: 726, material: "Iron", fireRes: 23 }, +{ itemId: 533301, className: "TOP03_301", name: "(Faded) Alpra Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 3846, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", addMAtk: 10, def: 330, mDef: 660, material: "Cloth" }, +{ itemId: 533302, className: "TOP03_302", name: "(Faded) Eastern Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 3846, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 495, mDef: 495, material: "Leather" }, +{ itemId: 533303, className: "TOP03_303", name: "(Faded) Pangle Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 3846, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 660, mDef: 330, material: "Iron" }, +{ itemId: 533304, className: "TOP03_304", name: "(Faded) War Mage Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 462, mDef: 924, material: "Cloth" }, +{ itemId: 533305, className: "TOP03_305", name: "(Faded) Eaglestar Leather Armor", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 693, mDef: 693, material: "Leather" }, +{ itemId: 533306, className: "TOP03_306", name: "(Faded) Nyx Knight Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 5850, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 924, mDef: 462, material: "Iron", fireRes: 11 }, +{ itemId: 533307, className: "TOP03_307", name: "(Faded) Marone Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 1360, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 211, mDef: 422, material: "Cloth" }, +{ itemId: 533308, className: "TOP03_308", name: "(Faded) Prakeh Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 594, mDef: 1188, material: "Cloth" }, +{ itemId: 533309, className: "TOP03_309", name: "(Faded) Razna Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 1360, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 316, mDef: 316, material: "Leather", ariesDef: 70 }, +{ itemId: 533310, className: "TOP03_310", name: "(Faded) Keyarc Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 891, mDef: 891, material: "Leather" }, +{ itemId: 533311, className: "TOP03_311", name: "(Faded) Barghar Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 1360, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 422, mDef: 211, material: "Iron", soulRes: 13 }, +{ itemId: 533312, className: "TOP03_312", name: "(Faded) Suurit Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 5881, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 1188, mDef: 594, material: "Iron", ariesDef: 103 }, +{ itemId: 533313, className: "TOP03_313", name: "(Faded) Vienti Kalinis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 726, mDef: 1452, material: "Cloth" }, +{ itemId: 533314, className: "TOP03_314", name: "(Faded) Vienti Albinosas Leather Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1089, mDef: 1089, material: "Leather" }, +{ itemId: 533315, className: "TOP03_315", name: "(Faded) Vienti Tajtanas Plate Armor", type: "Equip", group: "Armor", weight: 230, maxStack: 1, price: 36000, sellPrice: 5000, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1452, mDef: 726, material: "Iron" }, +{ itemId: 533316, className: "TOP03_316", name: "(Faded) Vienti Oksinis Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 844, mDef: 1689, material: "Cloth" }, +{ itemId: 533317, className: "TOP03_317", name: "(Faded) Vienti Kaulas Leather Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1267, mDef: 1267, material: "Leather" }, +{ itemId: 533318, className: "TOP03_318", name: "(Faded) Vienti Krisius Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 43920, sellPrice: 5000, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1689, mDef: 844, material: "Iron" }, +{ itemId: 533319, className: "TOP03_319", name: "Berthas Alpra Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 330, mDef: 660, material: "Cloth" }, +{ itemId: 533320, className: "TOP03_320", name: "Berthas Eastern Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 495, mDef: 495, material: "Leather" }, +{ itemId: 533321, className: "TOP03_321", name: "Berthas Pangle Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 660, mDef: 330, material: "Iron" }, +{ itemId: 533322, className: "TOP03_322", name: "Berthas Warmage Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 462, mDef: 924, material: "Cloth" }, +{ itemId: 533323, className: "TOP03_323", name: "Berthas Eaglestar Leather Armor", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 693, mDef: 693, material: "Leather" }, +{ itemId: 533324, className: "TOP03_324", name: "Berthas Nyx Knight Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 924, mDef: 462, material: "Iron" }, +{ itemId: 533325, className: "TOP03_325", name: "Berthas Marone Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 211, mDef: 422, material: "Cloth" }, +{ itemId: 533326, className: "TOP03_326", name: "Berthas Prakeh Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 594, mDef: 1188, material: "Cloth" }, +{ itemId: 533327, className: "TOP03_327", name: "Berthas Razna Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 316, mDef: 316, material: "Leather" }, +{ itemId: 533328, className: "TOP03_328", name: "Berthas Keyarc Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 891, mDef: 891, material: "Leather" }, +{ itemId: 533329, className: "TOP03_329", name: "Berthas Barghar Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 422, mDef: 211, material: "Iron" }, +{ itemId: 533330, className: "TOP03_330", name: "Berthas Suurit Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 1188, mDef: 594, material: "Iron" }, +{ itemId: 533331, className: "TOP03_331", name: "Berthas Kalinis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 726, mDef: 1452, material: "Cloth" }, +{ itemId: 533332, className: "TOP03_332", name: "Berthas Albinosas Leather Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1089, mDef: 1089, material: "Leather" }, +{ itemId: 533333, className: "TOP03_333", name: "Berthas Tajtanas Plate Armor", type: "Equip", group: "Armor", weight: 230, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1452, mDef: 726, material: "Iron" }, +{ itemId: 533334, className: "TOP03_334", name: "Berthas Oksinis Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 844, mDef: 1689, material: "Cloth" }, +{ itemId: 533335, className: "TOP03_335", name: "Berthas Kaulas Leather Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1267, mDef: 1267, material: "Leather" }, +{ itemId: 533336, className: "TOP03_336", name: "Berthas Krisius Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1689, mDef: 844, material: "Iron" }, +{ itemId: 533337, className: "TOP03_337", name: "Berthas Irellis Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 937, mDef: 1874, material: "Cloth" }, +{ itemId: 533338, className: "TOP03_338", name: "Berthas Jevenellis Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 1405, mDef: 1405, material: "Leather" }, +{ itemId: 533339, className: "TOP03_339", name: "Berthas Basticle Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 1874, mDef: 937, material: "Iron" }, +{ itemId: 533340, className: "TOP03_340", name: "Berthas Planeta Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 1016, mDef: 2032, material: "Cloth" }, +{ itemId: 533341, className: "TOP03_341", name: "Berthas Ukas Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 1524, mDef: 1524, material: "Leather" }, +{ itemId: 533342, className: "TOP03_342", name: "Berthas Galaktikos Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 2032, mDef: 1016, material: "Iron" }, +{ itemId: 533343, className: "TOP03_343", name: "Berthas Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1069, mDef: 2138, material: "Cloth" }, +{ itemId: 533344, className: "TOP03_344", name: "Berthas Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1603, mDef: 1603, material: "Leather" }, +{ itemId: 533345, className: "TOP03_345", name: "Berthas Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 2138, mDef: 1069, material: "Iron" }, +{ itemId: 533346, className: "TOP03_346", name: "Berthas Dysnai Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, equipExpGroup: "Equip", def: 1148, mDef: 2296, material: "Cloth" }, +{ itemId: 533347, className: "TOP03_347", name: "Berthas Dysnai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, equipExpGroup: "Equip", def: 1722, mDef: 1722, material: "Leather" }, +{ itemId: 533348, className: "TOP03_348", name: "Berthas Dysnai Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, equipExpGroup: "Equip", def: 2296, mDef: 1148, material: "Iron" }, +{ itemId: 534102, className: "TOP04_102", name: "Zachariel's Heart", type: "Equip", group: "Armor", weight: 140, maxStack: 1, price: 7724, sellPrice: 2431, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 360, mDef: 360, material: "Leather", fireRes: -41, iceRes: -41, lightningRes: -41 }, +{ itemId: 534104, className: "TOP04_104", name: "Banshee Veil", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 13968, sellPrice: 2851, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 375, mDef: 375, material: "Ghost" }, +{ itemId: 534106, className: "TOP04_106", name: "Lolopanther Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1056, mDef: 2112, material: "Cloth", earthRes: 41 }, +{ itemId: 534107, className: "TOP04_107", name: "Lolopanther Leather Armor", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1584, mDef: 1584, material: "Leather", earthRes: 44 }, +{ itemId: 534108, className: "TOP04_108", name: "Lolopanther Plate Mail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 2112, mDef: 1056, material: "Iron", earthRes: 44 }, +{ itemId: 534109, className: "TOP04_109", name: "Solmiki Robe", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 11656, equipType1: "Shirt", minLevel: 330, equipExpGroup: "Equip", def: 1286, mDef: 2572, material: "Cloth", holyRes: 82 }, +{ itemId: 534110, className: "TOP04_110", name: "Solmiki Leather Armor", type: "Equip", group: "Armor", weight: 140, maxStack: 1, price: 43920, sellPrice: 11656, equipType1: "Shirt", minLevel: 330, equipExpGroup: "Equip", def: 1929, mDef: 1929, material: "Leather", holyRes: 84 }, +{ itemId: 534111, className: "TOP04_111", name: "Solmiki Plate Mail", type: "Equip", group: "Armor", weight: 175, maxStack: 1, price: 43920, sellPrice: 11656, equipType1: "Shirt", minLevel: 330, equipExpGroup: "Equip", def: 2572, mDef: 1286, material: "Iron", slashDef: 210, holyRes: 88 }, +{ itemId: 534112, className: "TOP04_112", name: "Primus Alpra Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 375, mDef: 750, material: "Cloth" }, +{ itemId: 534113, className: "TOP04_113", name: "Primus Eastern Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 562, mDef: 562, material: "Leather" }, +{ itemId: 534114, className: "TOP04_114", name: "Primus Pangle Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 750, mDef: 375, material: "Iron" }, +{ itemId: 534115, className: "TOP04_115", name: "Primus Warmage Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 525, mDef: 1050, material: "Cloth" }, +{ itemId: 534116, className: "TOP04_116", name: "Primus Eaglestar Leather Armor", type: "Equip", group: "Armor", weight: 127, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 787, mDef: 787, material: "Leather" }, +{ itemId: 534117, className: "TOP04_117", name: "Primus Nyx Knight Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 21826, sellPrice: 0, equipType1: "Shirt", minLevel: 170, equipExpGroup: "Equip", def: 1050, mDef: 525, material: "Iron" }, +{ itemId: 534118, className: "TOP04_118", name: "Primus Marone Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 240, mDef: 480, material: "Cloth" }, +{ itemId: 534119, className: "TOP04_119", name: "Primus Prakeh Robe", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 675, mDef: 1350, material: "Cloth" }, +{ itemId: 534120, className: "TOP04_120", name: "Primus Razna Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 360, mDef: 360, material: "Leather" }, +{ itemId: 534121, className: "TOP04_121", name: "Primus Keyarc Leather Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 1012, mDef: 1012, material: "Leather" }, +{ itemId: 534122, className: "TOP04_122", name: "Primus Barghar Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 7724, sellPrice: 0, equipType1: "Shirt", minLevel: 75, equipExpGroup: "Equip", def: 480, mDef: 240, material: "Iron" }, +{ itemId: 534123, className: "TOP04_123", name: "Primus Suurit Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Shirt", minLevel: 220, equipExpGroup: "Equip", def: 1350, mDef: 675, material: "Iron" }, +{ itemId: 534124, className: "TOP04_124", name: "Primus Kalinis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 825, mDef: 1650, material: "Cloth" }, +{ itemId: 534125, className: "TOP04_125", name: "Primus Albinosas Leather Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1237, mDef: 1237, material: "Leather" }, +{ itemId: 534126, className: "TOP04_126", name: "Primus Tajtanas Plate Armor", type: "Equip", group: "Armor", weight: 230, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1650, mDef: 825, material: "Iron" }, +{ itemId: 534127, className: "TOP04_127", name: "Primus Oksinis Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 960, mDef: 1920, material: "Cloth" }, +{ itemId: 534128, className: "TOP04_128", name: "Primus Kaulas Leather Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1440, mDef: 1440, material: "Leather" }, +{ itemId: 534129, className: "TOP04_129", name: "Primus Krisius Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1920, mDef: 960, material: "Iron" }, +{ itemId: 534130, className: "TOP04_130", name: "Primus Irellis Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 1065, mDef: 2130, material: "Cloth" }, +{ itemId: 534131, className: "TOP04_131", name: "Primus Jevenellis Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 1597, mDef: 1597, material: "Leather" }, +{ itemId: 534132, className: "TOP04_132", name: "Primus Basticle Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 2130, mDef: 1065, material: "Iron" }, +{ itemId: 534133, className: "TOP04_133", name: "Laitas Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 1065, mDef: 2130, addMDef: 288, material: "Cloth" }, +{ itemId: 534134, className: "TOP04_134", name: "Fietas Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 1597, mDef: 1597, material: "Leather" }, +{ itemId: 534135, className: "TOP04_135", name: "Ausura Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 2130, mDef: 1065, addDef: 288, material: "Iron" }, +{ itemId: 534136, className: "TOP04_136", name: "Primus Planeta Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 2310, material: "Cloth" }, +{ itemId: 534137, className: "TOP04_137", name: "Primus Ukas Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 1732, mDef: 1732, material: "Leather" }, +{ itemId: 534138, className: "TOP04_138", name: "Primus Galaktikos Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 2310, mDef: 1155, material: "Iron" }, +{ itemId: 534139, className: "TOP04_139", name: "Ignas Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 2310, material: "Cloth" }, +{ itemId: 534140, className: "TOP04_140", name: "Ignas Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 1732, mDef: 1732, material: "Leather" }, +{ itemId: 534141, className: "TOP04_141", name: "Ignas Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 2310, mDef: 1155, material: "Iron" }, +{ itemId: 534142, className: "TOP04_142", name: "Primus Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 2430, material: "Cloth" }, +{ itemId: 534143, className: "TOP04_143", name: "Primus Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1822, mDef: 1822, material: "Leather" }, +{ itemId: 534144, className: "TOP04_144", name: "Primus Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 2430, mDef: 1215, material: "Iron" }, +{ itemId: 534145, className: "TOP04_145", name: "Skiaclipse Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 2430, addMDef: 387, material: "Cloth" }, +{ itemId: 534146, className: "TOP04_146", name: "Skiaclipse Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1822, mDef: 1822, material: "Leather" }, +{ itemId: 534147, className: "TOP04_147", name: "Skiaclipse Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", pAtk: 74, def: 2430, mDef: 1215, material: "Iron" }, +{ itemId: 534148, className: "TOP04_148", name: "Skiaclipse Robe - Compassion", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 2430, addMDef: 160, material: "Cloth" }, +{ itemId: 534149, className: "TOP04_149", name: "Skiaclipse Leather Armor - Assault", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1822, mDef: 1822, material: "Leather" }, +{ itemId: 534150, className: "TOP04_150", name: "Skiaclipse Plate Armor - Iron Wall", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 2430, mDef: 1215, material: "Iron" }, +{ itemId: 534151, className: "TOP04_151", name: "Moringponia Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 2430, mDef: 1215, material: "Iron" }, +{ itemId: 534152, className: "TOP04_152", name: "Moringponia Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 2430, material: "Cloth" }, +{ itemId: 534153, className: "TOP04_153", name: "Moringponia Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1822, mDef: 1822, material: "Leather" }, +{ itemId: 534154, className: "TOP04_154", name: "Misrus Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 2430, mDef: 1215, material: "Iron" }, +{ itemId: 534155, className: "TOP04_155", name: "Misrus Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 2430, material: "Cloth" }, +{ itemId: 534156, className: "TOP04_156", name: "Misrus Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1822, mDef: 1822, material: "Leather" }, +{ itemId: 534157, className: "TOP04_157", name: "Primus Dysnai Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, equipExpGroup: "Equip", def: 1305, mDef: 2610, material: "Cloth" }, +{ itemId: 534158, className: "TOP04_158", name: "Primus Dysnai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, equipExpGroup: "Equip", def: 1957, mDef: 1957, material: "Leather" }, +{ itemId: 534159, className: "TOP04_159", name: "Primus Dysnai Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, equipExpGroup: "Equip", def: 2610, mDef: 1305, material: "Iron" }, +{ itemId: 535101, className: "TOP05_101", name: "Velcoffer Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 360, equipExpGroup: "Equip", def: 1401, mDef: 2803, material: "Cloth" }, +{ itemId: 535102, className: "TOP05_102", name: "Velcoffer Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 360, equipExpGroup: "Equip", def: 2102, mDef: 2102, material: "Leather" }, +{ itemId: 535103, className: "TOP05_103", name: "Velcoffer Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 360, equipExpGroup: "Equip", def: 2803, mDef: 1401, material: "Iron" }, +{ itemId: 535104, className: "TOP05_104", name: "Velcoffer Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 360, equipExpGroup: "Equip", def: 1401, mDef: 2803, material: "Cloth" }, +{ itemId: 535105, className: "TOP05_105", name: "Velcoffer Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 360, equipExpGroup: "Equip", def: 2102, mDef: 2102, material: "Leather" }, +{ itemId: 535106, className: "TOP05_106", name: "Velcoffer Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 360, equipExpGroup: "Equip", def: 2803, mDef: 1401, material: "Iron" }, +{ itemId: 535107, className: "TOP05_107", name: "Savinose Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth" }, +{ itemId: 535108, className: "TOP05_108", name: "Savinose Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather" }, +{ itemId: 535109, className: "TOP05_109", name: "Savinose Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron" }, +{ itemId: 535110, className: "TOP05_110", name: "Skiaclipse Varna Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron" }, +{ itemId: 535111, className: "TOP05_111", name: "Skiaclipse Varna Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth" }, +{ itemId: 535112, className: "TOP05_112", name: "Skiaclipse Varna Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather" }, +{ itemId: 580001, className: "NECK99_101", name: "Zemyna's Necklace", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 3, maxAtk: 3, mAtk: 3 }, { itemId: 580002, className: "NECK99_102", name: "Zemyna Necklace (14 Days)", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 103, maxAtk: 103, mAtk: 103 }, { itemId: 580003, className: "NECK99_103", name: "Warrior Necklace (3 Days)", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 111, maxAtk: 111, mAtk: 111 }, { itemId: 580004, className: "NECK99_104", name: "Magician Necklace (3 Days)", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 111, maxAtk: 111, mAtk: 111 }, @@ -1976,145 +1976,145 @@ { itemId: 580013, className: "NECK99_110_7d_1", name: "Sugar Necklace (Physical) (14 Days)", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 3, maxAtk: 3, mAtk: 3 }, { itemId: 580014, className: "NECK99_110_7d_2", name: "Sugar Necklace (Magic) (14 Days)", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 3, maxAtk: 3, mAtk: 3 }, { itemId: 580015, className: "NECK99_102_team", name: "Zemyna Necklace (14 Days)", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 103, maxAtk: 103, mAtk: 103 }, -{ itemId: 580016, className: "NECK99_102_team_30d", name: "[Event] Adventurer's Necklace (30 Days)", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Neck", minLevel: 170, minAtk: 227, maxAtk: 227, mAtk: 227 }, -{ itemId: 580017, className: "NECK99_102_guildshop_7d", name: "Adventurer's Necklace (7 Days)", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Neck", minLevel: 170, minAtk: 227, maxAtk: 227, mAtk: 227 }, +{ itemId: 580016, className: "NECK99_102_team_30d", name: "[Event] Adventurer's Necklace (30 Days)", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Neck", minLevel: 170, equipExpGroup: "Equip", minAtk: 227, maxAtk: 227, mAtk: 227 }, +{ itemId: 580017, className: "NECK99_102_guildshop_7d", name: "Adventurer's Necklace (7 Days)", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Neck", minLevel: 170, equipExpGroup: "Equip", minAtk: 227, maxAtk: 227, mAtk: 227 }, { itemId: 580900, className: "ForgeryRing", name: "Forgery_Ring", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 10000, sellPrice: 500 }, -{ itemId: 581101, className: "NECK01_101", name: "HP Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, -{ itemId: 581102, className: "NECK01_102", name: "SP Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, -{ itemId: 581103, className: "NECK01_103", name: "STA Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, -{ itemId: 581104, className: "NECK01_104", name: "Panto Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, -{ itemId: 581105, className: "NECK01_105", name: "Bone Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 1728, sellPrice: 48, equipType1: "Neck", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8, lightningRes: 10 }, -{ itemId: 581106, className: "NECK01_106", name: "Hogma Leather Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 1728, sellPrice: 48, equipType1: "Neck", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8 }, -{ itemId: 581107, className: "NECK01_107", name: "Strange Charm", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 1728, sellPrice: 48, equipType1: "Neck", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8 }, -{ itemId: 581108, className: "NECK01_108", name: "Defense Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 1728, sellPrice: 48, equipType1: "Neck", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8 }, -{ itemId: 581109, className: "NECK01_109", name: "Novice Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, -{ itemId: 581110, className: "NECK01_110", name: "Vubbe Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2, addDef: 2 }, -{ itemId: 581111, className: "NECK01_111", name: "Chupacabra Necklace", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 240, sellPrice: 103, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, pAtk: 5, mAtk: 2 }, +{ itemId: 581101, className: "NECK01_101", name: "HP Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 2, maxAtk: 2, mAtk: 2 }, +{ itemId: 581102, className: "NECK01_102", name: "SP Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 2, maxAtk: 2, mAtk: 2 }, +{ itemId: 581103, className: "NECK01_103", name: "STA Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 2, maxAtk: 2, mAtk: 2 }, +{ itemId: 581104, className: "NECK01_104", name: "Panto Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 2, maxAtk: 2, mAtk: 2 }, +{ itemId: 581105, className: "NECK01_105", name: "Bone Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 1728, sellPrice: 48, equipType1: "Neck", minLevel: 15, equipExpGroup: "Equip", minAtk: 8, maxAtk: 8, mAtk: 8, lightningRes: 10 }, +{ itemId: 581106, className: "NECK01_106", name: "Hogma Leather Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 1728, sellPrice: 48, equipType1: "Neck", minLevel: 15, equipExpGroup: "Equip", minAtk: 8, maxAtk: 8, mAtk: 8 }, +{ itemId: 581107, className: "NECK01_107", name: "Strange Charm", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 1728, sellPrice: 48, equipType1: "Neck", minLevel: 15, equipExpGroup: "Equip", minAtk: 8, maxAtk: 8, mAtk: 8 }, +{ itemId: 581108, className: "NECK01_108", name: "Defense Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 1728, sellPrice: 48, equipType1: "Neck", minLevel: 15, equipExpGroup: "Equip", minAtk: 8, maxAtk: 8, mAtk: 8 }, +{ itemId: 581109, className: "NECK01_109", name: "Novice Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 2, maxAtk: 2, mAtk: 2 }, +{ itemId: 581110, className: "NECK01_110", name: "Vubbe Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 2, maxAtk: 2, mAtk: 2, addDef: 2 }, +{ itemId: 581111, className: "NECK01_111", name: "Chupacabra Necklace", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 240, sellPrice: 103, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 2, maxAtk: 2, pAtk: 5, mAtk: 2 }, { itemId: 581112, className: "NECK01_112", name: "Ronesa's Wooden Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 103, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, { itemId: 581113, className: "NECK01_113", name: "Ronesa's Iron Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Neck", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8 }, { itemId: 581114, className: "NECK01_114", name: "Ronesa's Steel Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Neck", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8 }, { itemId: 581115, className: "NECK01_115", name: "Ronesa's Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 345, equipType1: "Neck", minLevel: 40, minAtk: 18, maxAtk: 18, mAtk: 18 }, { itemId: 581116, className: "NECK01_116", name: "Ronesa's Klaipeda Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 907, equipType1: "Neck", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 581117, className: "NECK01_117", name: "Might Fedimian Chain", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 581118, className: "NECK01_118", name: "Dex Fedimian Chain", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 581119, className: "NECK01_119", name: "Health Fedimian Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 581120, className: "NECK01_120", name: "Intel Fedimian Chain", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 581121, className: "NECK01_121", name: "Mind Fedimian Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 581122, className: "NECK01_122", name: "Jukopus Necklace", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 240, sellPrice: 345, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2, addMAtk: 5 }, -{ itemId: 581123, className: "NECK01_123", name: "Vubbe Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Neck", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8 }, -{ itemId: 581124, className: "NECK01_124", name: "Iron Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Neck", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8 }, -{ itemId: 581125, className: "NECK01_125", name: "Steel Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Neck", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8 }, -{ itemId: 581126, className: "NECK01_126", name: "Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Neck", minLevel: 40, minAtk: 18, maxAtk: 18, mAtk: 18 }, -{ itemId: 581127, className: "NECK01_127", name: "Magic Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Neck", minLevel: 40, minAtk: 18, maxAtk: 18, mAtk: 18 }, -{ itemId: 581128, className: "NECK01_128", name: "Klaipeda Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Neck", minLevel: 40, minAtk: 18, maxAtk: 18, mAtk: 18 }, -{ itemId: 581129, className: "NECK01_129", name: "Ivory Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1604, equipType1: "Neck", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 581130, className: "NECK01_130", name: "Rune Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 581131, className: "NECK01_131", name: "Silver Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1638, equipType1: "Neck", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 581117, className: "NECK01_117", name: "Might Fedimian Chain", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 581118, className: "NECK01_118", name: "Dex Fedimian Chain", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 581119, className: "NECK01_119", name: "Health Fedimian Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 581120, className: "NECK01_120", name: "Intel Fedimian Chain", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 581121, className: "NECK01_121", name: "Mind Fedimian Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 581122, className: "NECK01_122", name: "Jukopus Necklace", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 240, sellPrice: 345, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 2, maxAtk: 2, mAtk: 2, addMAtk: 5 }, +{ itemId: 581123, className: "NECK01_123", name: "Vubbe Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Neck", minLevel: 15, equipExpGroup: "Equip", minAtk: 8, maxAtk: 8, mAtk: 8 }, +{ itemId: 581124, className: "NECK01_124", name: "Iron Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Neck", minLevel: 15, equipExpGroup: "Equip", minAtk: 8, maxAtk: 8, mAtk: 8 }, +{ itemId: 581125, className: "NECK01_125", name: "Steel Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Neck", minLevel: 15, equipExpGroup: "Equip", minAtk: 8, maxAtk: 8, mAtk: 8 }, +{ itemId: 581126, className: "NECK01_126", name: "Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Neck", minLevel: 40, equipExpGroup: "Equip", minAtk: 18, maxAtk: 18, mAtk: 18 }, +{ itemId: 581127, className: "NECK01_127", name: "Magic Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Neck", minLevel: 40, equipExpGroup: "Equip", minAtk: 18, maxAtk: 18, mAtk: 18 }, +{ itemId: 581128, className: "NECK01_128", name: "Klaipeda Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Neck", minLevel: 40, equipExpGroup: "Equip", minAtk: 18, maxAtk: 18, mAtk: 18 }, +{ itemId: 581129, className: "NECK01_129", name: "Ivory Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1604, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 581130, className: "NECK01_130", name: "Rune Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 581131, className: "NECK01_131", name: "Silver Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1638, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, { itemId: 581132, className: "NECK01_132", name: "Necklace of Gluttony", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, { itemId: 581133, className: "NECK01_133", name: "Necklace of Sloth", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, { itemId: 581134, className: "NECK01_134", name: "Necklace of Fury", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, { itemId: 581135, className: "NECK01_135", name: "Necklace of Deceit", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, { itemId: 581136, className: "NECK01_136", name: "Necklace of Greed", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, -{ itemId: 581137, className: "NECK01_137", name: "Ritual Necklace", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 5149, sellPrice: 1900, equipType1: "Neck", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 581138, className: "NECK01_138", name: "Superior Ritual Necklace", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Neck", minLevel: 120, minAtk: 50, maxAtk: 50, mAtk: 50 }, -{ itemId: 581139, className: "NECK01_139", name: "Key Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 2601, equipType1: "Neck", minLevel: 120, minAtk: 50, maxAtk: 50, mAtk: 50 }, -{ itemId: 581140, className: "NECK01_140", name: "Superior Key Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 2970, equipType1: "Neck", minLevel: 170, minAtk: 70, maxAtk: 70, mAtk: 70 }, -{ itemId: 581141, className: "NECK01_141", name: "Sage Necklace", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Neck", minLevel: 170, minAtk: 70, maxAtk: 70, mAtk: 70 }, -{ itemId: 581142, className: "NECK01_142", name: "Superior Sage Necklace", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Neck", minLevel: 170, minAtk: 70, maxAtk: 70, mAtk: 70 }, -{ itemId: 581143, className: "NECK01_143", name: "Guardian Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 4761, equipType1: "Neck", minLevel: 220, minAtk: 91, maxAtk: 91, mAtk: 91 }, -{ itemId: 581144, className: "NECK01_144", name: "Superior Guardian Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 4780, equipType1: "Neck", minLevel: 220, minAtk: 91, maxAtk: 91, mAtk: 91 }, -{ itemId: 581145, className: "NECK01_145", name: "Slightly Broken Anti-Dark Property Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32, darkRes: 55 }, -{ itemId: 581146, className: "NECK01_146", name: "Slightly Broken Anti-Cold Property Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32, iceRes: 55 }, -{ itemId: 581147, className: "NECK01_147", name: "Slightly Broken Kantravi Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 581148, className: "NECK01_148", name: "Slightly Broken Tablet Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 582101, className: "NECK02_101", name: "String Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 345, equipType1: "Neck", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, -{ itemId: 582102, className: "NECK02_102", name: "Panto Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Neck", minLevel: 15, minAtk: 9, maxAtk: 9, mAtk: 9 }, -{ itemId: 582103, className: "NECK02_103", name: "Pyrlight Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Neck", minLevel: 40, minAtk: 20, maxAtk: 20, mAtk: 20 }, -{ itemId: 582104, className: "NECK02_104", name: "Cryolight Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Neck", minLevel: 40, minAtk: 20, maxAtk: 20, mAtk: 20 }, -{ itemId: 582105, className: "NECK02_105", name: "Magic Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1102, equipType1: "Neck", minLevel: 75, minAtk: 36, maxAtk: 36, mAtk: 36 }, -{ itemId: 582106, className: "NECK02_106", name: "Strength Pendant", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, minAtk: 36, maxAtk: 36, pAtk: 10, mAtk: 36 }, -{ itemId: 582107, className: "NECK02_107", name: "Pyluma Chain", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 9312, sellPrice: 1862, equipType1: "Neck", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56, fireRes: 21 }, -{ itemId: 582108, className: "NECK02_108", name: "Icema Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1862, equipType1: "Neck", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56, iceRes: 21 }, -{ itemId: 582109, className: "NECK02_109", name: "Poizma Chain", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 9312, sellPrice: 1862, equipType1: "Neck", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56, poisonRes: 21 }, -{ itemId: 582110, className: "NECK02_110", name: "Lightna Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1862, equipType1: "Neck", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56, lightningRes: 21 }, -{ itemId: 582111, className: "NECK02_111", name: "Health Stone", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Neck", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56 }, -{ itemId: 582112, className: "NECK02_112", name: "Warrior Pendant", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14551, sellPrice: 2950, equipType1: "Neck", minLevel: 170, minAtk: 78, maxAtk: 78, pAtk: 28, mAtk: 78, fireRes: -30, iceRes: -30 }, -{ itemId: 582113, className: "NECK02_113", name: "Cyclops Eye", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1200, sellPrice: 907, equipType1: "Neck", minLevel: 40, minAtk: 20, maxAtk: 20, mAtk: 20, darkRes: 10 }, -{ itemId: 582114, className: "NECK02_114", name: "Bone Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1200, sellPrice: 345, equipType1: "Neck", minLevel: 15, minAtk: 9, maxAtk: 9, mAtk: 9, earthRes: 7 }, -{ itemId: 582115, className: "NECK02_115", name: "Carnivore Necklace", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1200, sellPrice: 345, equipType1: "Neck", minLevel: 15, minAtk: 9, maxAtk: 9, mAtk: 9, poisonRes: 9 }, -{ itemId: 582116, className: "NECK02_116", name: "Kepa Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 274, equipType1: "Neck", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8 }, -{ itemId: 582117, className: "NECK02_117", name: "Formine Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Neck", minLevel: 15, minAtk: 9, maxAtk: 9, mAtk: 9, darkRes: 3 }, -{ itemId: 582118, className: "NECK02_118", name: "Nebelet Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 0, equipType1: "Neck", minLevel: 40, minAtk: 20, maxAtk: 20, mAtk: 20 }, -{ itemId: 582119, className: "NECK02_119", name: "Bronza Medal", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Neck", minLevel: 15, minAtk: 9, maxAtk: 9, mAtk: 9 }, -{ itemId: 582120, className: "NECK02_120", name: "Argint Medal", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 4536, sellPrice: 907, equipType1: "Neck", minLevel: 45, minAtk: 22, maxAtk: 22, mAtk: 22 }, -{ itemId: 582121, className: "NECK02_121", name: "Auru Medal", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, minAtk: 36, maxAtk: 36, mAtk: 36 }, -{ itemId: 582122, className: "NECK02_122", name: "Platina Medal", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1638, equipType1: "Neck", minLevel: 75, minAtk: 36, maxAtk: 36, mAtk: 36 }, -{ itemId: 582123, className: "NECK02_123", name: "Anti-Dark Property Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Neck", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56, darkRes: 61 }, -{ itemId: 582124, className: "NECK02_124", name: "Anti-Cold Property Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Neck", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56, iceRes: 61 }, -{ itemId: 582125, className: "NECK02_125", name: "Kantravi Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Neck", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56 }, -{ itemId: 582126, className: "NECK02_126", name: "Tablet Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Neck", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56 }, -{ itemId: 582127, className: "NECK02_127", name: "Agny Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 3920, equipType1: "Neck", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56, iceRes: -35 }, -{ itemId: 582128, className: "NECK02_128", name: "Electra Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Neck", minLevel: 270, minAtk: 123, maxAtk: 123, mAtk: 123, addMAtk: 30, earthRes: -40 }, -{ itemId: 582129, className: "NECK02_129", name: "Ledas Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Neck", minLevel: 270, minAtk: 123, maxAtk: 123, mAtk: 123, addMAtk: 30, lightningRes: -40 }, -{ itemId: 582130, className: "NECK02_130", name: "Fyrmes Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 345, equipType1: "Neck", minLevel: 75, minAtk: 36, maxAtk: 36, mAtk: 36, addMAtk: 10 }, -{ itemId: 582131, className: "NECK02_131", name: "Predji Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 345, equipType1: "Neck", minLevel: 75, minAtk: 36, maxAtk: 36, pAtk: 10, mAtk: 36 }, -{ itemId: 582132, className: "NECK02_132", name: "Zemej Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Neck", minLevel: 270, minAtk: 123, maxAtk: 123, mAtk: 123, addMAtk: 30, fireRes: -40 }, -{ itemId: 583101, className: "NECK03_101", name: "Conqueror", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 14551, sellPrice: 3900, equipType1: "Neck", minLevel: 170, minAtk: 86, maxAtk: 86, mAtk: 86 }, -{ itemId: 583102, className: "NECK03_102", name: "Petamion", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Neck", minLevel: 120, minAtk: 61, maxAtk: 61, mAtk: 61 }, -{ itemId: 583103, className: "NECK03_103", name: "Electus", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Neck", minLevel: 120, minAtk: 61, maxAtk: 61, mAtk: 61, fireRes: -15, lightningRes: -60 }, -{ itemId: 583104, className: "NECK03_104", name: "Saphie Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Neck", minLevel: 40, minAtk: 22, maxAtk: 22, mAtk: 22, addMDef: 5, fireRes: 10 }, -{ itemId: 583105, className: "NECK03_105", name: "Abomination Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 436, equipType1: "Neck", minLevel: 40, minAtk: 22, maxAtk: 22, mAtk: 22, darkRes: 5 }, -{ itemId: 583106, className: "NECK03_106", name: "Maven Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 4876, equipType1: "Neck", minLevel: 220, minAtk: 111, maxAtk: 111, mAtk: 111, darkRes: 31 }, -{ itemId: 583107, className: "NECK03_107", name: "Rhevisan Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 3112, equipType1: "Neck", minLevel: 170, minAtk: 86, maxAtk: 86, mAtk: 86 }, -{ itemId: 583110, className: "NECK03_110", name: "Dhrag Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 6619, equipType1: "Neck", minLevel: 270, minAtk: 136, maxAtk: 136, mAtk: 136, addMDef: 5, fireRes: 10, holyRes: 10, darkRes: 5 }, -{ itemId: 583112, className: "NECK03_112", name: "Kietas Necklace", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 23904, sellPrice: 3920, equipType1: "Neck", minLevel: 260, minAtk: 131, maxAtk: 131, mAtk: 131 }, -{ itemId: 583113, className: "NECK03_113", name: "Pejnus Necklace", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 23904, sellPrice: 3920, equipType1: "Neck", minLevel: 260, minAtk: 131, maxAtk: 131, mAtk: 131 }, -{ itemId: 583114, className: "NECK03_114", name: "Nelajmes Necklace", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 29280, sellPrice: 4780, equipType1: "Neck", minLevel: 300, minAtk: 150, maxAtk: 150, mAtk: 150 }, -{ itemId: 583115, className: "NECK03_115", name: "Rupesciu Necklace", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 29280, sellPrice: 4780, equipType1: "Neck", minLevel: 300, minAtk: 150, maxAtk: 150, mAtk: 150 }, -{ itemId: 583116, className: "NECK03_116", name: "Worspej Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 5856, equipType1: "Neck", minLevel: 315, minAtk: 158, maxAtk: 158, mAtk: 158, darkRes: -50 }, -{ itemId: 583117, className: "NECK03_117", name: "Symaere Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 5856, equipType1: "Neck", minLevel: 315, minAtk: 158, maxAtk: 158, mAtk: 158, earthRes: -35 }, -{ itemId: 583118, className: "NECK03_118", name: "Mejstra Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 19603, sellPrice: 5856, equipType1: "Neck", minLevel: 220, minAtk: 111, maxAtk: 111, mAtk: 111, addMAtk: 49 }, -{ itemId: 583119, className: "NECK03_119", name: "Svijes Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 19603, sellPrice: 5856, equipType1: "Neck", minLevel: 220, minAtk: 111, maxAtk: 111, mAtk: 111 }, -{ itemId: 583120, className: "NECK03_120", name: "Atikha Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 19603, sellPrice: 5856, equipType1: "Neck", minLevel: 220, minAtk: 111, maxAtk: 111, pAtk: 75, mAtk: 111 }, -{ itemId: 583121, className: "NECK03_121", name: "Manosierdi Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 19603, sellPrice: 5856, equipType1: "Neck", minLevel: 220, minAtk: 111, maxAtk: 111, mAtk: 111 }, -{ itemId: 583122, className: "NECK03_122", name: "General's Gift", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6558, equipType1: "Neck", minLevel: 330, minAtk: 165, maxAtk: 165, pAtk: 32, mAtk: 165 }, -{ itemId: 583123, className: "NECK03_123", name: "Gift of Demise", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6558, equipType1: "Neck", minLevel: 330, minAtk: 165, maxAtk: 165, mAtk: 165, addMAtk: 32 }, -{ itemId: 583124, className: "NECK03_124", name: "Graduation Gift", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6558, equipType1: "Neck", minLevel: 330, minAtk: 165, maxAtk: 165, mAtk: 165 }, -{ itemId: 584101, className: "NECK04_101", name: "Guardian", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, minAtk: 44, maxAtk: 44, mAtk: 44, fireRes: 25, iceRes: 25, poisonRes: 25 }, -{ itemId: 584102, className: "NECK04_102", name: "Max Petamion", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Neck", minLevel: 170, minAtk: 98, maxAtk: 98, mAtk: 98 }, -{ itemId: 584103, className: "NECK04_103", name: "Animus", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Neck", minLevel: 170, minAtk: 98, maxAtk: 98, mAtk: 98, addMAtk: 33 }, -{ itemId: 584104, className: "NECK04_104", name: "Lolopanther Medal", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 5856, equipType1: "Neck", minLevel: 270, minAtk: 197, maxAtk: 197, mAtk: 197 }, -{ itemId: 584105, className: "NECK04_105", name: "Terrallion", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 4761, equipType1: "Neck", minLevel: 220, minAtk: 111, maxAtk: 111, mAtk: 111 }, -{ itemId: 584106, className: "NECK04_106", name: "Solmiki Medal", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 7771, equipType1: "Neck", minLevel: 330, minAtk: 240, maxAtk: 240, mAtk: 240 }, -{ itemId: 584107, className: "NECK04_107", name: "Solmiki Medal (Leather)", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 7771, equipType1: "Neck", minLevel: 330, minAtk: 240, maxAtk: 240, mAtk: 240 }, -{ itemId: 584108, className: "NECK04_108", name: "Solmiki Medal (Plate)", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 7771, equipType1: "Neck", minLevel: 330, minAtk: 240, maxAtk: 240, mAtk: 240 }, -{ itemId: 584109, className: "NECK04_109", name: "Varpas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Neck", minLevel: 315, minAtk: 179, maxAtk: 179, mAtk: 179 }, -{ itemId: 584110, className: "NECK04_110", name: "Verijo Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Neck", minLevel: 315, minAtk: 179, maxAtk: 179, mAtk: 179 }, -{ itemId: 584111, className: "NECK04_111", name: "Lynnki Sit Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Neck", minLevel: 315, minAtk: 179, maxAtk: 179, mAtk: 179, addMAtk: 49 }, -{ itemId: 584112, className: "NECK04_112", name: "Kite Moor Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Neck", minLevel: 315, minAtk: 179, maxAtk: 179, mAtk: 179 }, -{ itemId: 584113, className: "NECK04_113", name: "Pasiutes Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Neck", minLevel: 315, minAtk: 179, maxAtk: 179, pAtk: 112, mAtk: 179 }, -{ itemId: 584114, className: "NECK04_114", name: "Frieno Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Neck", minLevel: 315, minAtk: 179, maxAtk: 179, mAtk: 179 }, -{ itemId: 584115, className: "NECK04_115", name: "Nepagristas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Neck", minLevel: 350, minAtk: 199, maxAtk: 199, mAtk: 199 }, -{ itemId: 584116, className: "NECK04_116", name: "Nematomas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Neck", minLevel: 350, minAtk: 199, maxAtk: 199, mAtk: 199, addMaxAtk: 123 }, -{ itemId: 584117, className: "NECK04_117", name: "Rangovas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Neck", minLevel: 350, minAtk: 199, maxAtk: 199, mAtk: 199, addMDef: 152 }, -{ itemId: 584118, className: "NECK04_118", name: "Abyss Irredian Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, minAtk: 216, maxAtk: 216, mAtk: 216, addMaxAtk: 235 }, -{ itemId: 584119, className: "NECK04_119", name: "Cevisa Irredian Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, minAtk: 216, maxAtk: 216, mAtk: 216, addDef: 432 }, -{ itemId: 584120, className: "NECK04_120", name: "Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, minAtk: 227, maxAtk: 227, mAtk: 227 }, -{ itemId: 584121, className: "NECK04_121", name: "Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, minAtk: 227, maxAtk: 227, mAtk: 227, addDef: 600 }, -{ itemId: 584122, className: "NECK04_122", name: "Juoda Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, minAtk: 227, maxAtk: 227, mAtk: 227 }, -{ itemId: 584123, className: "NECK04_123", name: "Isbikimas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 9312, sellPrice: 0, equipType1: "Neck", minLevel: 120, minAtk: 70, maxAtk: 70, mAtk: 70 }, -{ itemId: 585001, className: "NECK05_001", name: "Drakonas Lynnki Sit Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, minAtk: 276, maxAtk: 276, mAtk: 276, addMAtk: 235 }, -{ itemId: 585002, className: "NECK05_002", name: "Drakonas Kite Moor Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, minAtk: 276, maxAtk: 276, mAtk: 276 }, -{ itemId: 585003, className: "NECK05_003", name: "Drakonas Pasiutes Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, minAtk: 276, maxAtk: 276, mAtk: 276 }, -{ itemId: 585004, className: "NECK05_004", name: "Drakonas Frieno Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, minAtk: 276, maxAtk: 276, mAtk: 276 }, -{ itemId: 585005, className: "NECK05_005", name: "Carnas Magija Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, minAtk: 276, maxAtk: 276, mAtk: 276, addMAtk: 315, script: { strArg: "Unique_Boss_Moringponia" } }, -{ itemId: 585006, className: "NECK05_006", name: "Carnas Zeisty Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, minAtk: 276, maxAtk: 276, mAtk: 276, script: { strArg: "Unique_Boss_Moringponia" } }, -{ itemId: 585007, className: "NECK05_007", name: "Carnas Pyginis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, minAtk: 276, maxAtk: 276, pAtk: 315, mAtk: 276, script: { strArg: "Unique_Boss_Moringponia" } }, -{ itemId: 585008, className: "NECK05_008", name: "Moringponia Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, minAtk: 291, maxAtk: 291, mAtk: 291 }, -{ itemId: 585009, className: "NECK05_009", name: "Moringponia Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, minAtk: 291, maxAtk: 291, mAtk: 291, addDef: 750 }, -{ itemId: 585010, className: "NECK05_010", name: "Moringponia Juoda Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, minAtk: 291, maxAtk: 291, mAtk: 291 }, -{ itemId: 585011, className: "NECK05_011", name: "Moringponia Triukas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, minAtk: 291, maxAtk: 291, mAtk: 291 }, -{ itemId: 585012, className: "NECK05_012", name: "Moringponia Isgarinti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, minAtk: 291, maxAtk: 291, mAtk: 291 }, +{ itemId: 581137, className: "NECK01_137", name: "Ritual Necklace", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 5149, sellPrice: 1900, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 581138, className: "NECK01_138", name: "Superior Ritual Necklace", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 50, maxAtk: 50, mAtk: 50 }, +{ itemId: 581139, className: "NECK01_139", name: "Key Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 2601, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 50, maxAtk: 50, mAtk: 50 }, +{ itemId: 581140, className: "NECK01_140", name: "Superior Key Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 2970, equipType1: "Neck", minLevel: 170, equipExpGroup: "Equip", minAtk: 70, maxAtk: 70, mAtk: 70 }, +{ itemId: 581141, className: "NECK01_141", name: "Sage Necklace", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Neck", minLevel: 170, equipExpGroup: "Equip", minAtk: 70, maxAtk: 70, mAtk: 70 }, +{ itemId: 581142, className: "NECK01_142", name: "Superior Sage Necklace", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Neck", minLevel: 170, equipExpGroup: "Equip", minAtk: 70, maxAtk: 70, mAtk: 70 }, +{ itemId: 581143, className: "NECK01_143", name: "Guardian Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 4761, equipType1: "Neck", minLevel: 220, equipExpGroup: "Equip", minAtk: 91, maxAtk: 91, mAtk: 91 }, +{ itemId: 581144, className: "NECK01_144", name: "Superior Guardian Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 4780, equipType1: "Neck", minLevel: 220, equipExpGroup: "Equip", minAtk: 91, maxAtk: 91, mAtk: 91 }, +{ itemId: 581145, className: "NECK01_145", name: "Slightly Broken Anti-Dark Property Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32, darkRes: 55 }, +{ itemId: 581146, className: "NECK01_146", name: "Slightly Broken Anti-Cold Property Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32, iceRes: 55 }, +{ itemId: 581147, className: "NECK01_147", name: "Slightly Broken Kantravi Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 581148, className: "NECK01_148", name: "Slightly Broken Tablet Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 582101, className: "NECK02_101", name: "String Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 345, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 2, maxAtk: 2, mAtk: 2 }, +{ itemId: 582102, className: "NECK02_102", name: "Panto Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Neck", minLevel: 15, equipExpGroup: "Equip", minAtk: 9, maxAtk: 9, mAtk: 9 }, +{ itemId: 582103, className: "NECK02_103", name: "Pyrlight Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Neck", minLevel: 40, equipExpGroup: "Equip", minAtk: 20, maxAtk: 20, mAtk: 20 }, +{ itemId: 582104, className: "NECK02_104", name: "Cryolight Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Neck", minLevel: 40, equipExpGroup: "Equip", minAtk: 20, maxAtk: 20, mAtk: 20 }, +{ itemId: 582105, className: "NECK02_105", name: "Magic Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1102, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 36, maxAtk: 36, mAtk: 36 }, +{ itemId: 582106, className: "NECK02_106", name: "Strength Pendant", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 36, maxAtk: 36, pAtk: 10, mAtk: 36 }, +{ itemId: 582107, className: "NECK02_107", name: "Pyluma Chain", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 9312, sellPrice: 1862, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56, fireRes: 21 }, +{ itemId: 582108, className: "NECK02_108", name: "Icema Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1862, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56, iceRes: 21 }, +{ itemId: 582109, className: "NECK02_109", name: "Poizma Chain", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 9312, sellPrice: 1862, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56, poisonRes: 21 }, +{ itemId: 582110, className: "NECK02_110", name: "Lightna Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1862, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56, lightningRes: 21 }, +{ itemId: 582111, className: "NECK02_111", name: "Health Stone", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56 }, +{ itemId: 582112, className: "NECK02_112", name: "Warrior Pendant", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 14551, sellPrice: 2950, equipType1: "Neck", minLevel: 170, equipExpGroup: "Equip", minAtk: 78, maxAtk: 78, pAtk: 28, mAtk: 78, fireRes: -30, iceRes: -30 }, +{ itemId: 582113, className: "NECK02_113", name: "Cyclops Eye", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1200, sellPrice: 907, equipType1: "Neck", minLevel: 40, equipExpGroup: "Equip", minAtk: 20, maxAtk: 20, mAtk: 20, darkRes: 10 }, +{ itemId: 582114, className: "NECK02_114", name: "Bone Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1200, sellPrice: 345, equipType1: "Neck", minLevel: 15, equipExpGroup: "Equip", minAtk: 9, maxAtk: 9, mAtk: 9, earthRes: 7 }, +{ itemId: 582115, className: "NECK02_115", name: "Carnivore Necklace", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1200, sellPrice: 345, equipType1: "Neck", minLevel: 15, equipExpGroup: "Equip", minAtk: 9, maxAtk: 9, mAtk: 9, poisonRes: 9 }, +{ itemId: 582116, className: "NECK02_116", name: "Kepa Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 274, equipType1: "Neck", minLevel: 15, equipExpGroup: "Equip", minAtk: 8, maxAtk: 8, mAtk: 8 }, +{ itemId: 582117, className: "NECK02_117", name: "Formine Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Neck", minLevel: 15, equipExpGroup: "Equip", minAtk: 9, maxAtk: 9, mAtk: 9, darkRes: 3 }, +{ itemId: 582118, className: "NECK02_118", name: "Nebelet Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 0, equipType1: "Neck", minLevel: 40, equipExpGroup: "Equip", minAtk: 20, maxAtk: 20, mAtk: 20 }, +{ itemId: 582119, className: "NECK02_119", name: "Bronza Medal", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Neck", minLevel: 15, equipExpGroup: "Equip", minAtk: 9, maxAtk: 9, mAtk: 9 }, +{ itemId: 582120, className: "NECK02_120", name: "Argint Medal", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 4536, sellPrice: 907, equipType1: "Neck", minLevel: 45, equipExpGroup: "Equip", minAtk: 22, maxAtk: 22, mAtk: 22 }, +{ itemId: 582121, className: "NECK02_121", name: "Auru Medal", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 36, maxAtk: 36, mAtk: 36 }, +{ itemId: 582122, className: "NECK02_122", name: "Platina Medal", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1638, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 36, maxAtk: 36, mAtk: 36 }, +{ itemId: 582123, className: "NECK02_123", name: "Anti-Dark Property Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56, darkRes: 61 }, +{ itemId: 582124, className: "NECK02_124", name: "Anti-Cold Property Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56, iceRes: 61 }, +{ itemId: 582125, className: "NECK02_125", name: "Kantravi Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56 }, +{ itemId: 582126, className: "NECK02_126", name: "Tablet Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56 }, +{ itemId: 582127, className: "NECK02_127", name: "Agny Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 3920, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56, iceRes: -35 }, +{ itemId: 582128, className: "NECK02_128", name: "Electra Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Neck", minLevel: 270, equipExpGroup: "Equip", minAtk: 123, maxAtk: 123, mAtk: 123, addMAtk: 30, earthRes: -40 }, +{ itemId: 582129, className: "NECK02_129", name: "Ledas Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Neck", minLevel: 270, equipExpGroup: "Equip", minAtk: 123, maxAtk: 123, mAtk: 123, addMAtk: 30, lightningRes: -40 }, +{ itemId: 582130, className: "NECK02_130", name: "Fyrmes Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 345, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 36, maxAtk: 36, mAtk: 36, addMAtk: 10 }, +{ itemId: 582131, className: "NECK02_131", name: "Predji Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 345, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 36, maxAtk: 36, pAtk: 10, mAtk: 36 }, +{ itemId: 582132, className: "NECK02_132", name: "Zemej Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Neck", minLevel: 270, equipExpGroup: "Equip", minAtk: 123, maxAtk: 123, mAtk: 123, addMAtk: 30, fireRes: -40 }, +{ itemId: 583101, className: "NECK03_101", name: "Conqueror", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 14551, sellPrice: 3900, equipType1: "Neck", minLevel: 170, equipExpGroup: "Equip", minAtk: 86, maxAtk: 86, mAtk: 86 }, +{ itemId: 583102, className: "NECK03_102", name: "Petamion", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 61, maxAtk: 61, mAtk: 61 }, +{ itemId: 583103, className: "NECK03_103", name: "Electus", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 61, maxAtk: 61, mAtk: 61, fireRes: -15, lightningRes: -60 }, +{ itemId: 583104, className: "NECK03_104", name: "Saphie Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Neck", minLevel: 40, equipExpGroup: "Equip", minAtk: 22, maxAtk: 22, mAtk: 22, addMDef: 5, fireRes: 10 }, +{ itemId: 583105, className: "NECK03_105", name: "Abomination Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 436, equipType1: "Neck", minLevel: 40, equipExpGroup: "Equip", minAtk: 22, maxAtk: 22, mAtk: 22, darkRes: 5 }, +{ itemId: 583106, className: "NECK03_106", name: "Maven Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 4876, equipType1: "Neck", minLevel: 220, equipExpGroup: "Equip", minAtk: 111, maxAtk: 111, mAtk: 111, darkRes: 31 }, +{ itemId: 583107, className: "NECK03_107", name: "Rhevisan Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 3112, equipType1: "Neck", minLevel: 170, equipExpGroup: "Equip", minAtk: 86, maxAtk: 86, mAtk: 86 }, +{ itemId: 583110, className: "NECK03_110", name: "Dhrag Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 6619, equipType1: "Neck", minLevel: 270, equipExpGroup: "Equip", minAtk: 136, maxAtk: 136, mAtk: 136, addMDef: 5, fireRes: 10, holyRes: 10, darkRes: 5 }, +{ itemId: 583112, className: "NECK03_112", name: "Kietas Necklace", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 23904, sellPrice: 3920, equipType1: "Neck", minLevel: 260, equipExpGroup: "Equip", minAtk: 131, maxAtk: 131, mAtk: 131 }, +{ itemId: 583113, className: "NECK03_113", name: "Pejnus Necklace", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 23904, sellPrice: 3920, equipType1: "Neck", minLevel: 260, equipExpGroup: "Equip", minAtk: 131, maxAtk: 131, mAtk: 131 }, +{ itemId: 583114, className: "NECK03_114", name: "Nelajmes Necklace", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 29280, sellPrice: 4780, equipType1: "Neck", minLevel: 300, equipExpGroup: "Equip", minAtk: 150, maxAtk: 150, mAtk: 150 }, +{ itemId: 583115, className: "NECK03_115", name: "Rupesciu Necklace", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 29280, sellPrice: 4780, equipType1: "Neck", minLevel: 300, equipExpGroup: "Equip", minAtk: 150, maxAtk: 150, mAtk: 150 }, +{ itemId: 583116, className: "NECK03_116", name: "Worspej Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 5856, equipType1: "Neck", minLevel: 315, equipExpGroup: "Equip", minAtk: 158, maxAtk: 158, mAtk: 158, darkRes: -50 }, +{ itemId: 583117, className: "NECK03_117", name: "Symaere Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 5856, equipType1: "Neck", minLevel: 315, equipExpGroup: "Equip", minAtk: 158, maxAtk: 158, mAtk: 158, earthRes: -35 }, +{ itemId: 583118, className: "NECK03_118", name: "Mejstra Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 19603, sellPrice: 5856, equipType1: "Neck", minLevel: 220, equipExpGroup: "Equip", minAtk: 111, maxAtk: 111, mAtk: 111, addMAtk: 49 }, +{ itemId: 583119, className: "NECK03_119", name: "Svijes Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 19603, sellPrice: 5856, equipType1: "Neck", minLevel: 220, equipExpGroup: "Equip", minAtk: 111, maxAtk: 111, mAtk: 111 }, +{ itemId: 583120, className: "NECK03_120", name: "Atikha Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 19603, sellPrice: 5856, equipType1: "Neck", minLevel: 220, equipExpGroup: "Equip", minAtk: 111, maxAtk: 111, pAtk: 75, mAtk: 111 }, +{ itemId: 583121, className: "NECK03_121", name: "Manosierdi Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 19603, sellPrice: 5856, equipType1: "Neck", minLevel: 220, equipExpGroup: "Equip", minAtk: 111, maxAtk: 111, mAtk: 111 }, +{ itemId: 583122, className: "NECK03_122", name: "General's Gift", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6558, equipType1: "Neck", minLevel: 330, equipExpGroup: "Equip", minAtk: 165, maxAtk: 165, pAtk: 32, mAtk: 165 }, +{ itemId: 583123, className: "NECK03_123", name: "Gift of Demise", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6558, equipType1: "Neck", minLevel: 330, equipExpGroup: "Equip", minAtk: 165, maxAtk: 165, mAtk: 165, addMAtk: 32 }, +{ itemId: 583124, className: "NECK03_124", name: "Graduation Gift", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6558, equipType1: "Neck", minLevel: 330, equipExpGroup: "Equip", minAtk: 165, maxAtk: 165, mAtk: 165 }, +{ itemId: 584101, className: "NECK04_101", name: "Guardian", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Neck", minLevel: 75, equipExpGroup: "Equip", minAtk: 44, maxAtk: 44, mAtk: 44, fireRes: 25, iceRes: 25, poisonRes: 25 }, +{ itemId: 584102, className: "NECK04_102", name: "Max Petamion", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Neck", minLevel: 170, equipExpGroup: "Equip", minAtk: 98, maxAtk: 98, mAtk: 98 }, +{ itemId: 584103, className: "NECK04_103", name: "Animus", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Neck", minLevel: 170, equipExpGroup: "Equip", minAtk: 98, maxAtk: 98, mAtk: 98, addMAtk: 33 }, +{ itemId: 584104, className: "NECK04_104", name: "Lolopanther Medal", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 5856, equipType1: "Neck", minLevel: 270, equipExpGroup: "Equip", minAtk: 197, maxAtk: 197, mAtk: 197 }, +{ itemId: 584105, className: "NECK04_105", name: "Terrallion", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 4761, equipType1: "Neck", minLevel: 220, equipExpGroup: "Equip", minAtk: 111, maxAtk: 111, mAtk: 111 }, +{ itemId: 584106, className: "NECK04_106", name: "Solmiki Medal", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 7771, equipType1: "Neck", minLevel: 330, equipExpGroup: "Equip", minAtk: 240, maxAtk: 240, mAtk: 240 }, +{ itemId: 584107, className: "NECK04_107", name: "Solmiki Medal (Leather)", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 7771, equipType1: "Neck", minLevel: 330, equipExpGroup: "Equip", minAtk: 240, maxAtk: 240, mAtk: 240 }, +{ itemId: 584108, className: "NECK04_108", name: "Solmiki Medal (Plate)", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 7771, equipType1: "Neck", minLevel: 330, equipExpGroup: "Equip", minAtk: 240, maxAtk: 240, mAtk: 240 }, +{ itemId: 584109, className: "NECK04_109", name: "Varpas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Neck", minLevel: 315, equipExpGroup: "Equip", minAtk: 179, maxAtk: 179, mAtk: 179 }, +{ itemId: 584110, className: "NECK04_110", name: "Verijo Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Neck", minLevel: 315, equipExpGroup: "Equip", minAtk: 179, maxAtk: 179, mAtk: 179 }, +{ itemId: 584111, className: "NECK04_111", name: "Lynnki Sit Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Neck", minLevel: 315, equipExpGroup: "Equip", minAtk: 179, maxAtk: 179, mAtk: 179, addMAtk: 49 }, +{ itemId: 584112, className: "NECK04_112", name: "Kite Moor Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Neck", minLevel: 315, equipExpGroup: "Equip", minAtk: 179, maxAtk: 179, mAtk: 179 }, +{ itemId: 584113, className: "NECK04_113", name: "Pasiutes Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Neck", minLevel: 315, equipExpGroup: "Equip", minAtk: 179, maxAtk: 179, pAtk: 112, mAtk: 179 }, +{ itemId: 584114, className: "NECK04_114", name: "Frieno Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Neck", minLevel: 315, equipExpGroup: "Equip", minAtk: 179, maxAtk: 179, mAtk: 179 }, +{ itemId: 584115, className: "NECK04_115", name: "Nepagristas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Neck", minLevel: 350, equipExpGroup: "Equip", minAtk: 199, maxAtk: 199, mAtk: 199 }, +{ itemId: 584116, className: "NECK04_116", name: "Nematomas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Neck", minLevel: 350, equipExpGroup: "Equip", minAtk: 199, maxAtk: 199, mAtk: 199, addMaxAtk: 123 }, +{ itemId: 584117, className: "NECK04_117", name: "Rangovas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Neck", minLevel: 350, equipExpGroup: "Equip", minAtk: 199, maxAtk: 199, mAtk: 199, addMDef: 152 }, +{ itemId: 584118, className: "NECK04_118", name: "Abyss Irredian Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, equipExpGroup: "Equip", minAtk: 216, maxAtk: 216, mAtk: 216, addMaxAtk: 235 }, +{ itemId: 584119, className: "NECK04_119", name: "Cevisa Irredian Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, equipExpGroup: "Equip", minAtk: 216, maxAtk: 216, mAtk: 216, addDef: 432 }, +{ itemId: 584120, className: "NECK04_120", name: "Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, equipExpGroup: "Equip", minAtk: 227, maxAtk: 227, mAtk: 227 }, +{ itemId: 584121, className: "NECK04_121", name: "Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, equipExpGroup: "Equip", minAtk: 227, maxAtk: 227, mAtk: 227, addDef: 600 }, +{ itemId: 584122, className: "NECK04_122", name: "Juoda Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, equipExpGroup: "Equip", minAtk: 227, maxAtk: 227, mAtk: 227 }, +{ itemId: 584123, className: "NECK04_123", name: "Isbikimas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 9312, sellPrice: 0, equipType1: "Neck", minLevel: 120, equipExpGroup: "Equip", minAtk: 70, maxAtk: 70, mAtk: 70 }, +{ itemId: 585001, className: "NECK05_001", name: "Drakonas Lynnki Sit Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, equipExpGroup: "Equip", minAtk: 276, maxAtk: 276, mAtk: 276, addMAtk: 235 }, +{ itemId: 585002, className: "NECK05_002", name: "Drakonas Kite Moor Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, equipExpGroup: "Equip", minAtk: 276, maxAtk: 276, mAtk: 276 }, +{ itemId: 585003, className: "NECK05_003", name: "Drakonas Pasiutes Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, equipExpGroup: "Equip", minAtk: 276, maxAtk: 276, mAtk: 276 }, +{ itemId: 585004, className: "NECK05_004", name: "Drakonas Frieno Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, equipExpGroup: "Equip", minAtk: 276, maxAtk: 276, mAtk: 276 }, +{ itemId: 585005, className: "NECK05_005", name: "Carnas Magija Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, equipExpGroup: "Equip", minAtk: 276, maxAtk: 276, mAtk: 276, addMAtk: 315, script: { strArg: "Unique_Boss_Moringponia" } }, +{ itemId: 585006, className: "NECK05_006", name: "Carnas Zeisty Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, equipExpGroup: "Equip", minAtk: 276, maxAtk: 276, mAtk: 276, script: { strArg: "Unique_Boss_Moringponia" } }, +{ itemId: 585007, className: "NECK05_007", name: "Carnas Pyginis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, equipExpGroup: "Equip", minAtk: 276, maxAtk: 276, pAtk: 315, mAtk: 276, script: { strArg: "Unique_Boss_Moringponia" } }, +{ itemId: 585008, className: "NECK05_008", name: "Moringponia Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, equipExpGroup: "Equip", minAtk: 291, maxAtk: 291, mAtk: 291 }, +{ itemId: 585009, className: "NECK05_009", name: "Moringponia Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, equipExpGroup: "Equip", minAtk: 291, maxAtk: 291, mAtk: 291, addDef: 750 }, +{ itemId: 585010, className: "NECK05_010", name: "Moringponia Juoda Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, equipExpGroup: "Equip", minAtk: 291, maxAtk: 291, mAtk: 291 }, +{ itemId: 585011, className: "NECK05_011", name: "Moringponia Triukas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, equipExpGroup: "Equip", minAtk: 291, maxAtk: 291, mAtk: 291 }, +{ itemId: 585012, className: "NECK05_012", name: "Moringponia Isgarinti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Neck", minLevel: 400, equipExpGroup: "Equip", minAtk: 291, maxAtk: 291, mAtk: 291 }, { itemId: 600001, className: "BRC99_101", name: "Lord Hamondale's Bracelet", type: "Equip", group: "Armor", weight: 5, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, minAtk: 3, maxAtk: 3, mAtk: 3, addMAtk: 33 }, { itemId: 600002, className: "BRC99_102", name: "Knight Commander Uska's Bangle", type: "Equip", group: "Armor", weight: 5, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, minAtk: 3, maxAtk: 3, pAtk: 33, mAtk: 3 }, { itemId: 600003, className: "BRC99_103", name: "Lord Hamondale's Bracelet (30-Days)", type: "Equip", group: "Armor", weight: 5, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, minAtk: 3, maxAtk: 3, mAtk: 3, addMAtk: 33 }, @@ -2146,129 +2146,129 @@ { itemId: 600029, className: "BRC99_114_guildshop_7d", name: "Adventurer's Bracelet (7 Days)", type: "Equip", group: "Armor", weight: 5, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, minAtk: 227, maxAtk: 227, mAtk: 227 }, { itemId: 600900, className: "ForgeryNeck", name: "Forgery_Neck", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0 }, { itemId: 601105, className: "BRC01_105", name: "Grooved Bangle", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, minAtk: 9, maxAtk: 9, mAtk: 9, addMaxAtk: 2 }, -{ itemId: 601110, className: "BRC01_110", name: "Leather Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 345, equipType1: "Ring", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2, addMinAtk: 2 }, +{ itemId: 601110, className: "BRC01_110", name: "Leather Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 345, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 2, maxAtk: 2, mAtk: 2, addMinAtk: 2 }, { itemId: 601111, className: "BRC01_111", name: "Light Ronesa's Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 73, equipType1: "Ring", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, { itemId: 601112, className: "BRC01_112", name: "Superior Ronesa's Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8 }, { itemId: 601113, className: "BRC01_113", name: "Ronesa's Ring Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8 }, { itemId: 601114, className: "BRC01_114", name: "Ronesa's Noble Bracelet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 2184, sellPrice: 345, equipType1: "Ring", minLevel: 40, minAtk: 18, maxAtk: 18, mAtk: 18 }, -{ itemId: 601115, className: "BRC01_115", name: "Iron Bangle", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, minAtk: 9, maxAtk: 9, mAtk: 9, addDef: 2 }, -{ itemId: 601116, className: "BRC01_116", name: "Superior Bangle of Health", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 601117, className: "BRC01_117", name: "Superior Magical Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 601118, className: "BRC01_118", name: "Superior Bangle of Accuracy", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 601119, className: "BRC01_119", name: "Light Superior Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 601120, className: "BRC01_120", name: "Light Iron Bangle", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 240, sellPrice: 345, equipType1: "Ring", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2, addDef: 1 }, +{ itemId: 601115, className: "BRC01_115", name: "Iron Bangle", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, equipExpGroup: "Equip", minAtk: 9, maxAtk: 9, mAtk: 9, addDef: 2 }, +{ itemId: 601116, className: "BRC01_116", name: "Superior Bangle of Health", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 601117, className: "BRC01_117", name: "Superior Magical Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 601118, className: "BRC01_118", name: "Superior Bangle of Accuracy", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 601119, className: "BRC01_119", name: "Light Superior Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 601120, className: "BRC01_120", name: "Light Iron Bangle", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 240, sellPrice: 345, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 2, maxAtk: 2, mAtk: 2, addDef: 1 }, { itemId: 601121, className: "BRC01_121", name: "Ronesa's Klaipeda Bracelet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 5149, sellPrice: 907, equipType1: "Ring", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 601122, className: "BRC01_122", name: "Wooden Bangle", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 240, sellPrice: 147, equipType1: "Ring", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, -{ itemId: 601123, className: "BRC01_123", name: "Vubbe Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 0, equipType1: "Ring", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8 }, -{ itemId: 601124, className: "BRC01_124", name: "Superior Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8 }, -{ itemId: 601125, className: "BRC01_125", name: "Ring Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, minAtk: 8, maxAtk: 8, mAtk: 8 }, -{ itemId: 601126, className: "BRC01_126", name: "Noble Bracelet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Ring", minLevel: 40, minAtk: 18, maxAtk: 18, mAtk: 18 }, -{ itemId: 601127, className: "BRC01_127", name: "Forest Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Ring", minLevel: 40, minAtk: 18, maxAtk: 18, mAtk: 18 }, -{ itemId: 601128, className: "BRC01_128", name: "Rokas Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Ring", minLevel: 40, minAtk: 18, maxAtk: 18, mAtk: 18 }, -{ itemId: 601129, className: "BRC01_129", name: "Klaipeda Bracelet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 5149, sellPrice: 1102, equipType1: "Ring", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 601130, className: "BRC01_130", name: "Stone Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 601131, className: "BRC01_131", name: "Silver Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 601132, className: "BRC01_132", name: "Pearl Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1862, equipType1: "Ring", minLevel: 120, minAtk: 50, maxAtk: 50, mAtk: 50 }, -{ itemId: 601133, className: "BRC01_133", name: "Superior Pearl Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Ring", minLevel: 120, minAtk: 50, maxAtk: 50, mAtk: 50 }, -{ itemId: 601134, className: "BRC01_134", name: "Rune Bracelet", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 9312, sellPrice: 2601, equipType1: "Ring", minLevel: 120, minAtk: 50, maxAtk: 50, mAtk: 50 }, -{ itemId: 601135, className: "BRC01_135", name: "Superior Rune Bracelet", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 14551, sellPrice: 2930, equipType1: "Ring", minLevel: 170, minAtk: 70, maxAtk: 70, mAtk: 70 }, -{ itemId: 601136, className: "BRC01_136", name: "Star Bracelet", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 14551, sellPrice: 3900, equipType1: "Ring", minLevel: 170, minAtk: 70, maxAtk: 70, mAtk: 70 }, -{ itemId: 601137, className: "BRC01_137", name: "Superior Star Bracelet", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Ring", minLevel: 170, minAtk: 70, maxAtk: 70, mAtk: 70 }, -{ itemId: 601138, className: "BRC01_138", name: "Gem Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 3955, equipType1: "Ring", minLevel: 220, minAtk: 91, maxAtk: 91, mAtk: 91 }, -{ itemId: 601139, className: "BRC01_139", name: "Superior Gem Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 4780, equipType1: "Ring", minLevel: 220, minAtk: 91, maxAtk: 91, mAtk: 91 }, -{ itemId: 601140, className: "BRC01_140", name: "Broken Anti-Dark Property Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32, darkRes: 55 }, -{ itemId: 601141, className: "BRC01_141", name: "Broken Anti-Cold Property Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32, iceRes: 55 }, -{ itemId: 601142, className: "BRC01_142", name: "Broken Kantravi Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 601143, className: "BRC01_143", name: "Broken Tablet Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, minAtk: 32, maxAtk: 32, mAtk: 32 }, -{ itemId: 602101, className: "BRC02_101", name: "Crystal Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, minAtk: 9, maxAtk: 9, mAtk: 9, addMaxAtk: 10 }, -{ itemId: 602102, className: "BRC02_102", name: "Shine Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, minAtk: 9, maxAtk: 9, mAtk: 9 }, -{ itemId: 602103, className: "BRC02_103", name: "Battle Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Ring", minLevel: 40, minAtk: 20, maxAtk: 20, pAtk: 5, mAtk: 20, addDef: 1 }, -{ itemId: 602104, className: "BRC02_104", name: "Poison Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Ring", minLevel: 40, minAtk: 20, maxAtk: 20, mAtk: 20 }, -{ itemId: 602105, className: "BRC02_105", name: "Plants Bracelet", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 5149, sellPrice: 1102, equipType1: "Ring", minLevel: 75, minAtk: 36, maxAtk: 36, mAtk: 36 }, -{ itemId: 602106, className: "BRC02_106", name: "Control Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, minAtk: 36, maxAtk: 36, mAtk: 36 }, -{ itemId: 602107, className: "BRC02_107", name: "Hunter Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1900, equipType1: "Ring", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56 }, -{ itemId: 602108, className: "BRC02_108", name: "Bracer of Archer", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Ring", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56, addMinAtk: 11 }, -{ itemId: 602109, className: "BRC02_109", name: "Wizard Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 2910, equipType1: "Ring", minLevel: 170, minAtk: 78, maxAtk: 78, mAtk: 78, addMAtk: 32 }, -{ itemId: 602110, className: "BRC02_110", name: "Rapid Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 3900, equipType1: "Ring", minLevel: 170, minAtk: 78, maxAtk: 78, mAtk: 78 }, -{ itemId: 602111, className: "BRC02_111", name: "Glass Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Ring", minLevel: 170, minAtk: 78, maxAtk: 78, mAtk: 78, addMDef: 20 }, -{ itemId: 602112, className: "BRC02_112", name: "Merregina Bangle", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, minAtk: 9, maxAtk: 9, mAtk: 9, poisonRes: 9 }, -{ itemId: 602113, className: "BRC02_113", name: "Bearkaras Bracelet", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 5149, sellPrice: 1245, equipType1: "Ring", minLevel: 75, minAtk: 36, maxAtk: 36, pAtk: 8, mAtk: 36 }, -{ itemId: 602114, className: "BRC02_114", name: "Novice Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Ring", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2 }, -{ itemId: 602115, className: "BRC02_115", name: "Kranto Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 0, equipType1: "Ring", minLevel: 220, minAtk: 101, maxAtk: 101, mAtk: 101 }, -{ itemId: 602116, className: "BRC02_116", name: "Bronza Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, minAtk: 9, maxAtk: 9, mAtk: 9 }, -{ itemId: 602117, className: "BRC02_117", name: "Argint Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Ring", minLevel: 40, minAtk: 20, maxAtk: 20, mAtk: 20 }, -{ itemId: 602118, className: "BRC02_118", name: "Auru Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, minAtk: 36, maxAtk: 36, mAtk: 36 }, -{ itemId: 602119, className: "BRC02_119", name: "Platina Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1638, equipType1: "Ring", minLevel: 75, minAtk: 36, maxAtk: 36, mAtk: 36 }, -{ itemId: 602120, className: "BRC02_120", name: "Anti-Dark Property Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Ring", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56, darkRes: 61 }, -{ itemId: 602121, className: "BRC02_121", name: "Anti-Cold Property Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Ring", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56, iceRes: 61 }, -{ itemId: 602122, className: "BRC02_122", name: "Kantravi Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Ring", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56 }, -{ itemId: 602123, className: "BRC02_123", name: "Tablet Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Ring", minLevel: 120, minAtk: 56, maxAtk: 56, mAtk: 56 }, -{ itemId: 602124, className: "BRC02_124", name: "Fyrmes Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 345, equipType1: "Ring", minLevel: 75, minAtk: 36, maxAtk: 36, mAtk: 36, addMAtk: 10 }, -{ itemId: 602125, className: "BRC02_125", name: "Predji Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 345, equipType1: "Ring", minLevel: 75, minAtk: 36, maxAtk: 36, pAtk: 10, mAtk: 36 }, -{ itemId: 603101, className: "BRC03_101", name: "Gladiator Band", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1862, equipType1: "Ring", minLevel: 75, minAtk: 39, maxAtk: 39, mAtk: 39 }, -{ itemId: 603102, className: "BRC03_102", name: "Bracelet of Linne", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Ring", minLevel: 120, minAtk: 61, maxAtk: 61, mAtk: 61, poisonRes: 10 }, -{ itemId: 603103, className: "BRC03_103", name: "Pora", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 19603, sellPrice: 4838, equipType1: "Ring", minLevel: 220, minAtk: 111, maxAtk: 111, mAtk: 111, darkRes: 21 }, -{ itemId: 603104, className: "BRC03_104", name: "Pore", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 19603, sellPrice: 4838, equipType1: "Ring", minLevel: 220, minAtk: 111, maxAtk: 111, mAtk: 111, holyRes: 21 }, -{ itemId: 603105, className: "BRC03_105", name: "Zachariel Bangle", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, minAtk: 39, maxAtk: 39, mAtk: 39 }, -{ itemId: 603106, className: "BRC03_106", name: "Abomination Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 436, equipType1: "Ring", minLevel: 40, minAtk: 22, maxAtk: 22, mAtk: 22, darkRes: 4 }, -{ itemId: 603107, className: "BRC03_107", name: "Elements Dance", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 48, equipType1: "Ring", minLevel: 170, minAtk: 86, maxAtk: 86, mAtk: 86, addMDef: -105, fireRes: 147, iceRes: 147, lightningRes: 147, poisonRes: 147 }, -{ itemId: 603108, className: "BRC03_108", name: "Archmage Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 4780, equipType1: "Ring", minLevel: 220, minAtk: 111, maxAtk: 111, mAtk: 111, addMAtk: 40 }, -{ itemId: 603109, className: "BRC03_109", name: "Rhevisan Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 3112, equipType1: "Ring", minLevel: 170, minAtk: 86, maxAtk: 86, mAtk: 86, addMDef: 20 }, -{ itemId: 603110, className: "BRC03_110", name: "Smurto Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 23904, sellPrice: 3920, equipType1: "Ring", minLevel: 260, minAtk: 131, maxAtk: 131, pAtk: 18, mAtk: 131 }, -{ itemId: 603111, className: "BRC03_111", name: "Ismintis Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 23904, sellPrice: 3900, equipType1: "Ring", minLevel: 260, minAtk: 131, maxAtk: 131, mAtk: 131, addMAtk: 40 }, -{ itemId: 603112, className: "BRC03_112", name: "Stipiria Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 3920, equipType1: "Ring", minLevel: 300, minAtk: 150, maxAtk: 150, pAtk: 25, mAtk: 150 }, -{ itemId: 603113, className: "BRC03_113", name: "Svenus Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 3920, equipType1: "Ring", minLevel: 300, minAtk: 150, maxAtk: 150, mAtk: 150, addMAtk: 45 }, -{ itemId: 603114, className: "BRC03_114", name: "Worspej Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 4800, equipType1: "Ring", minLevel: 315, minAtk: 158, maxAtk: 158, mAtk: 158, addDef: 10 }, -{ itemId: 603115, className: "BRC03_115", name: "Viproti Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 4800, equipType1: "Ring", minLevel: 315, minAtk: 158, maxAtk: 158, mAtk: 158, addDef: 15 }, -{ itemId: 603116, className: "BRC03_116", name: "Basme Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 3920, equipType1: "Ring", minLevel: 315, minAtk: 158, maxAtk: 158, mAtk: 158, addDef: 10, fireRes: 87, iceRes: -80, earthRes: 15 }, -{ itemId: 603117, className: "BRC03_117", name: "Symaere Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 3920, equipType1: "Ring", minLevel: 315, minAtk: 158, maxAtk: 158, mAtk: 158, addDef: 10, iceRes: 15, holyRes: 86, darkRes: -70 }, -{ itemId: 603118, className: "BRC03_118", name: "Mejstra Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 1862, equipType1: "Ring", minLevel: 220, minAtk: 111, maxAtk: 111, mAtk: 111, addMAtk: 37 }, -{ itemId: 603119, className: "BRC03_119", name: "Svijes Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 1862, equipType1: "Ring", minLevel: 220, minAtk: 111, maxAtk: 111, mAtk: 111, addMAtk: 12 }, -{ itemId: 603120, className: "BRC03_120", name: "Dhrag Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 5856, equipType1: "Ring", minLevel: 270, minAtk: 136, maxAtk: 136, mAtk: 136, addMDef: 20 }, -{ itemId: 603121, className: "BRC03_121", name: "Atikha Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 1862, equipType1: "Ring", minLevel: 220, minAtk: 111, maxAtk: 111, mAtk: 111 }, -{ itemId: 603122, className: "BRC03_122", name: "Manosierdi Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 1862, equipType1: "Ring", minLevel: 220, minAtk: 111, maxAtk: 111, mAtk: 111 }, -{ itemId: 603123, className: "BRC03_123", name: "Achiva Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 1862, equipType1: "Ring", minLevel: 315, minAtk: 158, maxAtk: 158, mAtk: 158 }, -{ itemId: 603124, className: "BRC03_124", name: "Mirti Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 1862, equipType1: "Ring", minLevel: 315, minAtk: 158, maxAtk: 158, pAtk: 23, mAtk: 158 }, -{ itemId: 603125, className: "BRC03_125", name: "Ufhor Pearl Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 1862, equipType1: "Ring", minLevel: 315, minAtk: 158, maxAtk: 158, mAtk: 158, addMAtk: 31 }, -{ itemId: 603126, className: "BRC03_126", name: "Pik'o Pearl Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 1862, equipType1: "Ring", minLevel: 315, minAtk: 158, maxAtk: 158, mAtk: 158 }, -{ itemId: 603127, className: "BRC03_127", name: "Himil Legacy", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 2234, equipType1: "Ring", minLevel: 330, minAtk: 165, maxAtk: 165, mAtk: 165 }, -{ itemId: 603128, className: "BRC03_128", name: "Schaffen Bracelet Fragment", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 2234, equipType1: "Ring", minLevel: 330, minAtk: 165, maxAtk: 165, mAtk: 165 }, -{ itemId: 603129, className: "BRC03_129", name: "Heretic's Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 2234, equipType1: "Ring", minLevel: 330, minAtk: 165, maxAtk: 165, mAtk: 165 }, -{ itemId: 604101, className: "BRC04_101", name: "Sissel Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 4761, equipType1: "Ring", minLevel: 170, minAtk: 98, maxAtk: 98, pAtk: 21, mAtk: 98 }, -{ itemId: 604102, className: "BRC04_102", name: "Lolopanther Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 5856, equipType1: "Ring", minLevel: 270, minAtk: 197, maxAtk: 197, mAtk: 197, addDef: 23, darkRes: 45 }, -{ itemId: 604103, className: "BRC04_103", name: "Phada", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 3920, equipType1: "Ring", minLevel: 220, minAtk: 126, maxAtk: 126, pAtk: 30, mAtk: 126 }, -{ itemId: 604104, className: "BRC04_104", name: "Solmiki Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 7771, equipType1: "Ring", minLevel: 330, minAtk: 240, maxAtk: 240, mAtk: 240, addDef: 49, holyRes: 91, darkRes: 91 }, -{ itemId: 604105, className: "BRC04_105", name: "Solmiki Bracelet (Leather)", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 7771, equipType1: "Ring", minLevel: 330, minAtk: 240, maxAtk: 240, mAtk: 240, addDef: 49, holyRes: 91, darkRes: 91 }, -{ itemId: 604106, className: "BRC04_106", name: "Solmiki Bracelet (Plate)", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 7771, equipType1: "Ring", minLevel: 330, minAtk: 240, maxAtk: 240, mAtk: 240, addDef: 49, holyRes: 91, darkRes: 91 }, -{ itemId: 604107, className: "BRC04_107", name: "Varpas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6655, equipType1: "Ring", minLevel: 315, minAtk: 179, maxAtk: 179, mAtk: 179, addDef: -25 }, -{ itemId: 604108, className: "BRC04_108", name: "Verijo Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6655, equipType1: "Ring", minLevel: 315, minAtk: 179, maxAtk: 179, mAtk: 179, addMAtk: 60, addDef: -20 }, -{ itemId: 604109, className: "BRC04_109", name: "Lynnki Sit Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6655, equipType1: "Ring", minLevel: 315, minAtk: 179, maxAtk: 179, mAtk: 179, addMAtk: 37 }, -{ itemId: 604110, className: "BRC04_110", name: "Kite Moor Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6655, equipType1: "Ring", minLevel: 315, minAtk: 179, maxAtk: 179, mAtk: 179, addMAtk: 17 }, -{ itemId: 604111, className: "BRC04_111", name: "Pasiutes Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6655, equipType1: "Ring", minLevel: 315, minAtk: 179, maxAtk: 179, mAtk: 179 }, -{ itemId: 604112, className: "BRC04_112", name: "Frieno Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6655, equipType1: "Ring", minLevel: 315, minAtk: 179, maxAtk: 179, mAtk: 179 }, -{ itemId: 604113, className: "BRC04_113", name: "Akro Galia Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 4780, equipType1: "Ring", minLevel: 270, minAtk: 154, maxAtk: 154, mAtk: 154, addMAtk: 40 }, -{ itemId: 604114, className: "BRC04_114", name: "Aiskus Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 4780, equipType1: "Ring", minLevel: 270, minAtk: 154, maxAtk: 154, mAtk: 154 }, -{ itemId: 604115, className: "BRC04_115", name: "Nepagristas Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33279, sellPrice: 4780, equipType1: "Ring", minLevel: 350, minAtk: 199, maxAtk: 199, pAtk: 30, mAtk: 199 }, -{ itemId: 604116, className: "BRC04_116", name: "Nematomas Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33279, sellPrice: 4780, equipType1: "Ring", minLevel: 350, minAtk: 199, maxAtk: 199, mAtk: 199, addMaxAtk: 125 }, -{ itemId: 604117, className: "BRC04_117", name: "Rangovas Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33279, sellPrice: 4780, equipType1: "Ring", minLevel: 350, minAtk: 199, maxAtk: 199, mAtk: 199, addDef: 40 }, -{ itemId: 604118, className: "BRC04_118", name: "Abyss Irredian Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 34194, sellPrice: 4780, equipType1: "Ring", minLevel: 380, minAtk: 216, maxAtk: 216, mAtk: 216 }, -{ itemId: 604119, className: "BRC04_119", name: "Cevisa Irredian Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 34194, sellPrice: 4780, equipType1: "Ring", minLevel: 380, minAtk: 216, maxAtk: 216, mAtk: 216, addMDef: 235 }, -{ itemId: 604120, className: "BRC04_120", name: "Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, minAtk: 227, maxAtk: 227, mAtk: 227 }, -{ itemId: 604121, className: "BRC04_121", name: "Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, minAtk: 227, maxAtk: 227, mAtk: 227, addDef: 200 }, -{ itemId: 604122, className: "BRC04_122", name: "Juoda Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, minAtk: 227, maxAtk: 227, mAtk: 227 }, -{ itemId: 604123, className: "BRC04_123", name: "Isbikimas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 14551, sellPrice: 6655, equipType1: "Ring", minLevel: 170, minAtk: 98, maxAtk: 98, pAtk: 50, mAtk: 98, addMAtk: 50 }, -{ itemId: 605001, className: "BRC05_001", name: "Drakonas Lynnki Sit Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 6655, equipType1: "Ring", minLevel: 380, minAtk: 276, maxAtk: 276, mAtk: 276 }, -{ itemId: 605002, className: "BRC05_002", name: "Drakonas Kite Moor Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 6655, equipType1: "Ring", minLevel: 380, minAtk: 276, maxAtk: 276, mAtk: 276 }, -{ itemId: 605003, className: "BRC05_003", name: "Drakonas Pasiutes Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 6655, equipType1: "Ring", minLevel: 380, minAtk: 276, maxAtk: 276, mAtk: 276 }, -{ itemId: 605004, className: "BRC05_004", name: "Drakonas Frieno Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 6655, equipType1: "Ring", minLevel: 380, minAtk: 276, maxAtk: 276, mAtk: 276 }, -{ itemId: 605005, className: "BRC05_005", name: "Carnas Magija Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 6655, equipType1: "Ring", minLevel: 380, minAtk: 276, maxAtk: 276, mAtk: 276, addMAtk: 75 }, -{ itemId: 605006, className: "BRC05_006", name: "Carnas Zeisty Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 6655, equipType1: "Ring", minLevel: 380, minAtk: 276, maxAtk: 276, mAtk: 276 }, -{ itemId: 605007, className: "BRC05_007", name: "Carnas Pyginis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 6655, equipType1: "Ring", minLevel: 380, minAtk: 276, maxAtk: 276, pAtk: 75, mAtk: 276 }, -{ itemId: 605008, className: "BRC05_008", name: "Moringponia Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, minAtk: 291, maxAtk: 291, mAtk: 291 }, -{ itemId: 605009, className: "BRC05_009", name: "Moringponia Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, minAtk: 291, maxAtk: 291, mAtk: 291, addDef: 250 }, -{ itemId: 605010, className: "BRC05_010", name: "Moringponia Juoda Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, minAtk: 291, maxAtk: 291, mAtk: 291 }, -{ itemId: 605011, className: "BRC05_011", name: "Moringponia Triukas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, minAtk: 291, maxAtk: 291, mAtk: 291 }, -{ itemId: 605012, className: "BRC05_012", name: "Moringponia Isgarinti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, minAtk: 291, maxAtk: 291, mAtk: 291 }, +{ itemId: 601122, className: "BRC01_122", name: "Wooden Bangle", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 240, sellPrice: 147, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 2, maxAtk: 2, mAtk: 2 }, +{ itemId: 601123, className: "BRC01_123", name: "Vubbe Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 0, equipType1: "Ring", minLevel: 15, equipExpGroup: "Equip", minAtk: 8, maxAtk: 8, mAtk: 8 }, +{ itemId: 601124, className: "BRC01_124", name: "Superior Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, equipExpGroup: "Equip", minAtk: 8, maxAtk: 8, mAtk: 8 }, +{ itemId: 601125, className: "BRC01_125", name: "Ring Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, equipExpGroup: "Equip", minAtk: 8, maxAtk: 8, mAtk: 8 }, +{ itemId: 601126, className: "BRC01_126", name: "Noble Bracelet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Ring", minLevel: 40, equipExpGroup: "Equip", minAtk: 18, maxAtk: 18, mAtk: 18 }, +{ itemId: 601127, className: "BRC01_127", name: "Forest Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Ring", minLevel: 40, equipExpGroup: "Equip", minAtk: 18, maxAtk: 18, mAtk: 18 }, +{ itemId: 601128, className: "BRC01_128", name: "Rokas Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Ring", minLevel: 40, equipExpGroup: "Equip", minAtk: 18, maxAtk: 18, mAtk: 18 }, +{ itemId: 601129, className: "BRC01_129", name: "Klaipeda Bracelet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 5149, sellPrice: 1102, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 601130, className: "BRC01_130", name: "Stone Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 601131, className: "BRC01_131", name: "Silver Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 601132, className: "BRC01_132", name: "Pearl Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1862, equipType1: "Ring", minLevel: 120, equipExpGroup: "Equip", minAtk: 50, maxAtk: 50, mAtk: 50 }, +{ itemId: 601133, className: "BRC01_133", name: "Superior Pearl Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Ring", minLevel: 120, equipExpGroup: "Equip", minAtk: 50, maxAtk: 50, mAtk: 50 }, +{ itemId: 601134, className: "BRC01_134", name: "Rune Bracelet", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 9312, sellPrice: 2601, equipType1: "Ring", minLevel: 120, equipExpGroup: "Equip", minAtk: 50, maxAtk: 50, mAtk: 50 }, +{ itemId: 601135, className: "BRC01_135", name: "Superior Rune Bracelet", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 14551, sellPrice: 2930, equipType1: "Ring", minLevel: 170, equipExpGroup: "Equip", minAtk: 70, maxAtk: 70, mAtk: 70 }, +{ itemId: 601136, className: "BRC01_136", name: "Star Bracelet", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 14551, sellPrice: 3900, equipType1: "Ring", minLevel: 170, equipExpGroup: "Equip", minAtk: 70, maxAtk: 70, mAtk: 70 }, +{ itemId: 601137, className: "BRC01_137", name: "Superior Star Bracelet", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Ring", minLevel: 170, equipExpGroup: "Equip", minAtk: 70, maxAtk: 70, mAtk: 70 }, +{ itemId: 601138, className: "BRC01_138", name: "Gem Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 3955, equipType1: "Ring", minLevel: 220, equipExpGroup: "Equip", minAtk: 91, maxAtk: 91, mAtk: 91 }, +{ itemId: 601139, className: "BRC01_139", name: "Superior Gem Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 4780, equipType1: "Ring", minLevel: 220, equipExpGroup: "Equip", minAtk: 91, maxAtk: 91, mAtk: 91 }, +{ itemId: 601140, className: "BRC01_140", name: "Broken Anti-Dark Property Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32, darkRes: 55 }, +{ itemId: 601141, className: "BRC01_141", name: "Broken Anti-Cold Property Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32, iceRes: 55 }, +{ itemId: 601142, className: "BRC01_142", name: "Broken Kantravi Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 601143, className: "BRC01_143", name: "Broken Tablet Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 32, maxAtk: 32, mAtk: 32 }, +{ itemId: 602101, className: "BRC02_101", name: "Crystal Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, equipExpGroup: "Equip", minAtk: 9, maxAtk: 9, mAtk: 9, addMaxAtk: 10 }, +{ itemId: 602102, className: "BRC02_102", name: "Shine Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, equipExpGroup: "Equip", minAtk: 9, maxAtk: 9, mAtk: 9 }, +{ itemId: 602103, className: "BRC02_103", name: "Battle Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Ring", minLevel: 40, equipExpGroup: "Equip", minAtk: 20, maxAtk: 20, pAtk: 5, mAtk: 20, addDef: 1 }, +{ itemId: 602104, className: "BRC02_104", name: "Poison Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Ring", minLevel: 40, equipExpGroup: "Equip", minAtk: 20, maxAtk: 20, mAtk: 20 }, +{ itemId: 602105, className: "BRC02_105", name: "Plants Bracelet", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 5149, sellPrice: 1102, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 36, maxAtk: 36, mAtk: 36 }, +{ itemId: 602106, className: "BRC02_106", name: "Control Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 36, maxAtk: 36, mAtk: 36 }, +{ itemId: 602107, className: "BRC02_107", name: "Hunter Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1900, equipType1: "Ring", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56 }, +{ itemId: 602108, className: "BRC02_108", name: "Bracer of Archer", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Ring", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56, addMinAtk: 11 }, +{ itemId: 602109, className: "BRC02_109", name: "Wizard Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 2910, equipType1: "Ring", minLevel: 170, equipExpGroup: "Equip", minAtk: 78, maxAtk: 78, mAtk: 78, addMAtk: 32 }, +{ itemId: 602110, className: "BRC02_110", name: "Rapid Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 3900, equipType1: "Ring", minLevel: 170, equipExpGroup: "Equip", minAtk: 78, maxAtk: 78, mAtk: 78 }, +{ itemId: 602111, className: "BRC02_111", name: "Glass Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 3920, equipType1: "Ring", minLevel: 170, equipExpGroup: "Equip", minAtk: 78, maxAtk: 78, mAtk: 78, addMDef: 20 }, +{ itemId: 602112, className: "BRC02_112", name: "Merregina Bangle", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, equipExpGroup: "Equip", minAtk: 9, maxAtk: 9, mAtk: 9, poisonRes: 9 }, +{ itemId: 602113, className: "BRC02_113", name: "Bearkaras Bracelet", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 5149, sellPrice: 1245, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 36, maxAtk: 36, pAtk: 8, mAtk: 36 }, +{ itemId: 602114, className: "BRC02_114", name: "Novice Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 48, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 2, maxAtk: 2, mAtk: 2 }, +{ itemId: 602115, className: "BRC02_115", name: "Kranto Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 0, equipType1: "Ring", minLevel: 220, equipExpGroup: "Equip", minAtk: 101, maxAtk: 101, mAtk: 101 }, +{ itemId: 602116, className: "BRC02_116", name: "Bronza Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 1728, sellPrice: 345, equipType1: "Ring", minLevel: 15, equipExpGroup: "Equip", minAtk: 9, maxAtk: 9, mAtk: 9 }, +{ itemId: 602117, className: "BRC02_117", name: "Argint Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 907, equipType1: "Ring", minLevel: 40, equipExpGroup: "Equip", minAtk: 20, maxAtk: 20, mAtk: 20 }, +{ itemId: 602118, className: "BRC02_118", name: "Auru Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 36, maxAtk: 36, mAtk: 36 }, +{ itemId: 602119, className: "BRC02_119", name: "Platina Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1638, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 36, maxAtk: 36, mAtk: 36 }, +{ itemId: 602120, className: "BRC02_120", name: "Anti-Dark Property Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Ring", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56, darkRes: 61 }, +{ itemId: 602121, className: "BRC02_121", name: "Anti-Cold Property Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Ring", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56, iceRes: 61 }, +{ itemId: 602122, className: "BRC02_122", name: "Kantravi Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Ring", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56 }, +{ itemId: 602123, className: "BRC02_123", name: "Tablet Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 9312, sellPrice: 1621, equipType1: "Ring", minLevel: 120, equipExpGroup: "Equip", minAtk: 56, maxAtk: 56, mAtk: 56 }, +{ itemId: 602124, className: "BRC02_124", name: "Fyrmes Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 345, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 36, maxAtk: 36, mAtk: 36, addMAtk: 10 }, +{ itemId: 602125, className: "BRC02_125", name: "Predji Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 345, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 36, maxAtk: 36, pAtk: 10, mAtk: 36 }, +{ itemId: 603101, className: "BRC03_101", name: "Gladiator Band", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 5149, sellPrice: 1862, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 39, maxAtk: 39, mAtk: 39 }, +{ itemId: 603102, className: "BRC03_102", name: "Bracelet of Linne", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 9312, sellPrice: 2582, equipType1: "Ring", minLevel: 120, equipExpGroup: "Equip", minAtk: 61, maxAtk: 61, mAtk: 61, poisonRes: 10 }, +{ itemId: 603103, className: "BRC03_103", name: "Pora", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 19603, sellPrice: 4838, equipType1: "Ring", minLevel: 220, equipExpGroup: "Equip", minAtk: 111, maxAtk: 111, mAtk: 111, darkRes: 21 }, +{ itemId: 603104, className: "BRC03_104", name: "Pore", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 19603, sellPrice: 4838, equipType1: "Ring", minLevel: 220, equipExpGroup: "Equip", minAtk: 111, maxAtk: 111, mAtk: 111, holyRes: 21 }, +{ itemId: 603105, className: "BRC03_105", name: "Zachariel Bangle", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 5149, sellPrice: 1621, equipType1: "Ring", minLevel: 75, equipExpGroup: "Equip", minAtk: 39, maxAtk: 39, mAtk: 39 }, +{ itemId: 603106, className: "BRC03_106", name: "Abomination Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 2184, sellPrice: 436, equipType1: "Ring", minLevel: 40, equipExpGroup: "Equip", minAtk: 22, maxAtk: 22, mAtk: 22, darkRes: 4 }, +{ itemId: 603107, className: "BRC03_107", name: "Elements Dance", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 48, equipType1: "Ring", minLevel: 170, equipExpGroup: "Equip", minAtk: 86, maxAtk: 86, mAtk: 86, addMDef: -105, fireRes: 147, iceRes: 147, lightningRes: 147, poisonRes: 147 }, +{ itemId: 603108, className: "BRC03_108", name: "Archmage Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 4780, equipType1: "Ring", minLevel: 220, equipExpGroup: "Equip", minAtk: 111, maxAtk: 111, mAtk: 111, addMAtk: 40 }, +{ itemId: 603109, className: "BRC03_109", name: "Rhevisan Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 3112, equipType1: "Ring", minLevel: 170, equipExpGroup: "Equip", minAtk: 86, maxAtk: 86, mAtk: 86, addMDef: 20 }, +{ itemId: 603110, className: "BRC03_110", name: "Smurto Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 23904, sellPrice: 3920, equipType1: "Ring", minLevel: 260, equipExpGroup: "Equip", minAtk: 131, maxAtk: 131, pAtk: 18, mAtk: 131 }, +{ itemId: 603111, className: "BRC03_111", name: "Ismintis Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 23904, sellPrice: 3900, equipType1: "Ring", minLevel: 260, equipExpGroup: "Equip", minAtk: 131, maxAtk: 131, mAtk: 131, addMAtk: 40 }, +{ itemId: 603112, className: "BRC03_112", name: "Stipiria Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 3920, equipType1: "Ring", minLevel: 300, equipExpGroup: "Equip", minAtk: 150, maxAtk: 150, pAtk: 25, mAtk: 150 }, +{ itemId: 603113, className: "BRC03_113", name: "Svenus Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 3920, equipType1: "Ring", minLevel: 300, equipExpGroup: "Equip", minAtk: 150, maxAtk: 150, mAtk: 150, addMAtk: 45 }, +{ itemId: 603114, className: "BRC03_114", name: "Worspej Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 4800, equipType1: "Ring", minLevel: 315, equipExpGroup: "Equip", minAtk: 158, maxAtk: 158, mAtk: 158, addDef: 10 }, +{ itemId: 603115, className: "BRC03_115", name: "Viproti Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 4800, equipType1: "Ring", minLevel: 315, equipExpGroup: "Equip", minAtk: 158, maxAtk: 158, mAtk: 158, addDef: 15 }, +{ itemId: 603116, className: "BRC03_116", name: "Basme Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 3920, equipType1: "Ring", minLevel: 315, equipExpGroup: "Equip", minAtk: 158, maxAtk: 158, mAtk: 158, addDef: 10, fireRes: 87, iceRes: -80, earthRes: 15 }, +{ itemId: 603117, className: "BRC03_117", name: "Symaere Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 3920, equipType1: "Ring", minLevel: 315, equipExpGroup: "Equip", minAtk: 158, maxAtk: 158, mAtk: 158, addDef: 10, iceRes: 15, holyRes: 86, darkRes: -70 }, +{ itemId: 603118, className: "BRC03_118", name: "Mejstra Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 1862, equipType1: "Ring", minLevel: 220, equipExpGroup: "Equip", minAtk: 111, maxAtk: 111, mAtk: 111, addMAtk: 37 }, +{ itemId: 603119, className: "BRC03_119", name: "Svijes Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 1862, equipType1: "Ring", minLevel: 220, equipExpGroup: "Equip", minAtk: 111, maxAtk: 111, mAtk: 111, addMAtk: 12 }, +{ itemId: 603120, className: "BRC03_120", name: "Dhrag Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 5856, equipType1: "Ring", minLevel: 270, equipExpGroup: "Equip", minAtk: 136, maxAtk: 136, mAtk: 136, addMDef: 20 }, +{ itemId: 603121, className: "BRC03_121", name: "Atikha Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 1862, equipType1: "Ring", minLevel: 220, equipExpGroup: "Equip", minAtk: 111, maxAtk: 111, mAtk: 111 }, +{ itemId: 603122, className: "BRC03_122", name: "Manosierdi Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 1862, equipType1: "Ring", minLevel: 220, equipExpGroup: "Equip", minAtk: 111, maxAtk: 111, mAtk: 111 }, +{ itemId: 603123, className: "BRC03_123", name: "Achiva Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 1862, equipType1: "Ring", minLevel: 315, equipExpGroup: "Equip", minAtk: 158, maxAtk: 158, mAtk: 158 }, +{ itemId: 603124, className: "BRC03_124", name: "Mirti Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 1862, equipType1: "Ring", minLevel: 315, equipExpGroup: "Equip", minAtk: 158, maxAtk: 158, pAtk: 23, mAtk: 158 }, +{ itemId: 603125, className: "BRC03_125", name: "Ufhor Pearl Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 1862, equipType1: "Ring", minLevel: 315, equipExpGroup: "Equip", minAtk: 158, maxAtk: 158, mAtk: 158, addMAtk: 31 }, +{ itemId: 603126, className: "BRC03_126", name: "Pik'o Pearl Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 1862, equipType1: "Ring", minLevel: 315, equipExpGroup: "Equip", minAtk: 158, maxAtk: 158, mAtk: 158 }, +{ itemId: 603127, className: "BRC03_127", name: "Himil Legacy", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 2234, equipType1: "Ring", minLevel: 330, equipExpGroup: "Equip", minAtk: 165, maxAtk: 165, mAtk: 165 }, +{ itemId: 603128, className: "BRC03_128", name: "Schaffen Bracelet Fragment", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 2234, equipType1: "Ring", minLevel: 330, equipExpGroup: "Equip", minAtk: 165, maxAtk: 165, mAtk: 165 }, +{ itemId: 603129, className: "BRC03_129", name: "Heretic's Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29280, sellPrice: 2234, equipType1: "Ring", minLevel: 330, equipExpGroup: "Equip", minAtk: 165, maxAtk: 165, mAtk: 165 }, +{ itemId: 604101, className: "BRC04_101", name: "Sissel Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 14551, sellPrice: 4761, equipType1: "Ring", minLevel: 170, equipExpGroup: "Equip", minAtk: 98, maxAtk: 98, pAtk: 21, mAtk: 98 }, +{ itemId: 604102, className: "BRC04_102", name: "Lolopanther Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 5856, equipType1: "Ring", minLevel: 270, equipExpGroup: "Equip", minAtk: 197, maxAtk: 197, mAtk: 197, addDef: 23, darkRes: 45 }, +{ itemId: 604103, className: "BRC04_103", name: "Phada", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 19603, sellPrice: 3920, equipType1: "Ring", minLevel: 220, equipExpGroup: "Equip", minAtk: 126, maxAtk: 126, pAtk: 30, mAtk: 126 }, +{ itemId: 604104, className: "BRC04_104", name: "Solmiki Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 7771, equipType1: "Ring", minLevel: 330, equipExpGroup: "Equip", minAtk: 240, maxAtk: 240, mAtk: 240, addDef: 49, holyRes: 91, darkRes: 91 }, +{ itemId: 604105, className: "BRC04_105", name: "Solmiki Bracelet (Leather)", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 7771, equipType1: "Ring", minLevel: 330, equipExpGroup: "Equip", minAtk: 240, maxAtk: 240, mAtk: 240, addDef: 49, holyRes: 91, darkRes: 91 }, +{ itemId: 604106, className: "BRC04_106", name: "Solmiki Bracelet (Plate)", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 7771, equipType1: "Ring", minLevel: 330, equipExpGroup: "Equip", minAtk: 240, maxAtk: 240, mAtk: 240, addDef: 49, holyRes: 91, darkRes: 91 }, +{ itemId: 604107, className: "BRC04_107", name: "Varpas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6655, equipType1: "Ring", minLevel: 315, equipExpGroup: "Equip", minAtk: 179, maxAtk: 179, mAtk: 179, addDef: -25 }, +{ itemId: 604108, className: "BRC04_108", name: "Verijo Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6655, equipType1: "Ring", minLevel: 315, equipExpGroup: "Equip", minAtk: 179, maxAtk: 179, mAtk: 179, addMAtk: 60, addDef: -20 }, +{ itemId: 604109, className: "BRC04_109", name: "Lynnki Sit Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6655, equipType1: "Ring", minLevel: 315, equipExpGroup: "Equip", minAtk: 179, maxAtk: 179, mAtk: 179, addMAtk: 37 }, +{ itemId: 604110, className: "BRC04_110", name: "Kite Moor Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6655, equipType1: "Ring", minLevel: 315, equipExpGroup: "Equip", minAtk: 179, maxAtk: 179, mAtk: 179, addMAtk: 17 }, +{ itemId: 604111, className: "BRC04_111", name: "Pasiutes Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6655, equipType1: "Ring", minLevel: 315, equipExpGroup: "Equip", minAtk: 179, maxAtk: 179, mAtk: 179 }, +{ itemId: 604112, className: "BRC04_112", name: "Frieno Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 29280, sellPrice: 6655, equipType1: "Ring", minLevel: 315, equipExpGroup: "Equip", minAtk: 179, maxAtk: 179, mAtk: 179 }, +{ itemId: 604113, className: "BRC04_113", name: "Akro Galia Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 4780, equipType1: "Ring", minLevel: 270, equipExpGroup: "Equip", minAtk: 154, maxAtk: 154, mAtk: 154, addMAtk: 40 }, +{ itemId: 604114, className: "BRC04_114", name: "Aiskus Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24000, sellPrice: 4780, equipType1: "Ring", minLevel: 270, equipExpGroup: "Equip", minAtk: 154, maxAtk: 154, mAtk: 154 }, +{ itemId: 604115, className: "BRC04_115", name: "Nepagristas Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33279, sellPrice: 4780, equipType1: "Ring", minLevel: 350, equipExpGroup: "Equip", minAtk: 199, maxAtk: 199, pAtk: 30, mAtk: 199 }, +{ itemId: 604116, className: "BRC04_116", name: "Nematomas Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33279, sellPrice: 4780, equipType1: "Ring", minLevel: 350, equipExpGroup: "Equip", minAtk: 199, maxAtk: 199, mAtk: 199, addMaxAtk: 125 }, +{ itemId: 604117, className: "BRC04_117", name: "Rangovas Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33279, sellPrice: 4780, equipType1: "Ring", minLevel: 350, equipExpGroup: "Equip", minAtk: 199, maxAtk: 199, mAtk: 199, addDef: 40 }, +{ itemId: 604118, className: "BRC04_118", name: "Abyss Irredian Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 34194, sellPrice: 4780, equipType1: "Ring", minLevel: 380, equipExpGroup: "Equip", minAtk: 216, maxAtk: 216, mAtk: 216 }, +{ itemId: 604119, className: "BRC04_119", name: "Cevisa Irredian Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 34194, sellPrice: 4780, equipType1: "Ring", minLevel: 380, equipExpGroup: "Equip", minAtk: 216, maxAtk: 216, mAtk: 216, addMDef: 235 }, +{ itemId: 604120, className: "BRC04_120", name: "Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, equipExpGroup: "Equip", minAtk: 227, maxAtk: 227, mAtk: 227 }, +{ itemId: 604121, className: "BRC04_121", name: "Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, equipExpGroup: "Equip", minAtk: 227, maxAtk: 227, mAtk: 227, addDef: 200 }, +{ itemId: 604122, className: "BRC04_122", name: "Juoda Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, equipExpGroup: "Equip", minAtk: 227, maxAtk: 227, mAtk: 227 }, +{ itemId: 604123, className: "BRC04_123", name: "Isbikimas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 14551, sellPrice: 6655, equipType1: "Ring", minLevel: 170, equipExpGroup: "Equip", minAtk: 98, maxAtk: 98, pAtk: 50, mAtk: 98, addMAtk: 50 }, +{ itemId: 605001, className: "BRC05_001", name: "Drakonas Lynnki Sit Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 6655, equipType1: "Ring", minLevel: 380, equipExpGroup: "Equip", minAtk: 276, maxAtk: 276, mAtk: 276 }, +{ itemId: 605002, className: "BRC05_002", name: "Drakonas Kite Moor Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 6655, equipType1: "Ring", minLevel: 380, equipExpGroup: "Equip", minAtk: 276, maxAtk: 276, mAtk: 276 }, +{ itemId: 605003, className: "BRC05_003", name: "Drakonas Pasiutes Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 6655, equipType1: "Ring", minLevel: 380, equipExpGroup: "Equip", minAtk: 276, maxAtk: 276, mAtk: 276 }, +{ itemId: 605004, className: "BRC05_004", name: "Drakonas Frieno Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 6655, equipType1: "Ring", minLevel: 380, equipExpGroup: "Equip", minAtk: 276, maxAtk: 276, mAtk: 276 }, +{ itemId: 605005, className: "BRC05_005", name: "Carnas Magija Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 6655, equipType1: "Ring", minLevel: 380, equipExpGroup: "Equip", minAtk: 276, maxAtk: 276, mAtk: 276, addMAtk: 75 }, +{ itemId: 605006, className: "BRC05_006", name: "Carnas Zeisty Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 6655, equipType1: "Ring", minLevel: 380, equipExpGroup: "Equip", minAtk: 276, maxAtk: 276, mAtk: 276 }, +{ itemId: 605007, className: "BRC05_007", name: "Carnas Pyginis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 6655, equipType1: "Ring", minLevel: 380, equipExpGroup: "Equip", minAtk: 276, maxAtk: 276, pAtk: 75, mAtk: 276 }, +{ itemId: 605008, className: "BRC05_008", name: "Moringponia Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, equipExpGroup: "Equip", minAtk: 291, maxAtk: 291, mAtk: 291 }, +{ itemId: 605009, className: "BRC05_009", name: "Moringponia Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, equipExpGroup: "Equip", minAtk: 291, maxAtk: 291, mAtk: 291, addDef: 250 }, +{ itemId: 605010, className: "BRC05_010", name: "Moringponia Juoda Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, equipExpGroup: "Equip", minAtk: 291, maxAtk: 291, mAtk: 291 }, +{ itemId: 605011, className: "BRC05_011", name: "Moringponia Triukas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, equipExpGroup: "Equip", minAtk: 291, maxAtk: 291, mAtk: 291 }, +{ itemId: 605012, className: "BRC05_012", name: "Moringponia Isgarinti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 38765, sellPrice: 6655, equipType1: "Ring", minLevel: 400, equipExpGroup: "Equip", minAtk: 291, maxAtk: 291, mAtk: 291 }, { itemId: 609901, className: "BRC_TEST_01", name: "Skill 1 Bracelet", type: "Equip", group: "Armor", weight: 5, maxStack: 1, price: 2000, sellPrice: 100, equipType1: "Ring", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2, leftHandSkill: "Common_TEST1" }, { itemId: 609902, className: "BRC_TEST_02", name: "Skill 2 Bracelet", type: "Equip", group: "Armor", weight: 5, maxStack: 1, price: 2000, sellPrice: 100, equipType1: "Ring", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2, leftHandSkill: "Common_TEST2" }, { itemId: 609903, className: "BRC_TEST_03", name: "Skill 3 Bracelet", type: "Equip", group: "Armor", weight: 5, maxStack: 1, price: 2000, sellPrice: 100, equipType1: "Ring", minLevel: 1, minAtk: 2, maxAtk: 2, mAtk: 2, leftHandSkill: "Common_TEST3" }, @@ -3052,18 +3052,18 @@ { itemId: 635153, className: "E2_NECK03_113", name: "[Event] Savior's Necklace (30 Days)", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 8106, sellPrice: 3920, equipType1: "Neck", minLevel: 100 }, { itemId: 635154, className: "E2_BRC03_112", name: "[Event] Savior's Band (30 Days)", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 8106, sellPrice: 3920, equipType1: "Ring", minLevel: 100, pAtk: 25 }, { itemId: 635155, className: "E2_BRC03_113", name: "[Event] Savior's Bracelet (30 Days)", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 8106, sellPrice: 3920, equipType1: "Ring", minLevel: 100, addMAtk: 45 }, -{ itemId: 635158, className: "E_TOP03_130", name: "[Event] Newt Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 726, mDef: 1452, material: "Cloth" }, -{ itemId: 635159, className: "E_TOP03_131", name: "[Event] Newt Leather Armor", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 1089, mDef: 1089, material: "Leather" }, -{ itemId: 635160, className: "E_TOP03_132", name: "[Event] Newt Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, def: 1452, mDef: 726, material: "Iron", fireRes: 23 }, -{ itemId: 635161, className: "E_LEG03_130", name: "[Event] Newt Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 726, mDef: 1452, material: "Cloth" }, -{ itemId: 635162, className: "E_LEG03_131", name: "[Event] Newt Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 1089, mDef: 1089, material: "Leather" }, -{ itemId: 635163, className: "E_LEG03_132", name: "[Event] Newt Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, def: 1452, mDef: 726, material: "Iron", fireRes: 21 }, -{ itemId: 635164, className: "E_FOOT03_130", name: "[Event] Newt Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 484, mDef: 968, material: "Cloth" }, -{ itemId: 635165, className: "E_FOOT03_131", name: "[Event] Newt Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 726, mDef: 726, material: "Leather" }, -{ itemId: 635166, className: "E_FOOT03_132", name: "[Event] Newt Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, def: 968, mDef: 484, material: "Iron" }, -{ itemId: 635167, className: "E_HAND03_130", name: "[Event] Newt Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, def: 484, mDef: 968, material: "Cloth" }, -{ itemId: 635168, className: "E_HAND03_131", name: "[Event] Newt Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, pAtk: 19, def: 726, mDef: 726, material: "Leather" }, -{ itemId: 635169, className: "E_HAND03_132", name: "[Event] Newt Plate Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, def: 968, mDef: 484, material: "Iron" }, +{ itemId: 635158, className: "E_TOP03_130", name: "[Event] Newt Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 726, mDef: 1452, material: "Cloth" }, +{ itemId: 635159, className: "E_TOP03_131", name: "[Event] Newt Leather Armor", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1089, mDef: 1089, material: "Leather" }, +{ itemId: 635160, className: "E_TOP03_132", name: "[Event] Newt Plate Armor", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1452, mDef: 726, material: "Iron", fireRes: 23 }, +{ itemId: 635161, className: "E_LEG03_130", name: "[Event] Newt Pants", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 726, mDef: 1452, material: "Cloth" }, +{ itemId: 635162, className: "E_LEG03_131", name: "[Event] Newt Leather Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1089, mDef: 1089, material: "Leather" }, +{ itemId: 635163, className: "E_LEG03_132", name: "[Event] Newt Plate Leggings", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 36000, sellPrice: 8784, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1452, mDef: 726, material: "Iron", fireRes: 21 }, +{ itemId: 635164, className: "E_FOOT03_130", name: "[Event] Newt Boots", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 484, mDef: 968, material: "Cloth" }, +{ itemId: 635165, className: "E_FOOT03_131", name: "[Event] Newt Leather Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 726, mDef: 726, material: "Leather" }, +{ itemId: 635166, className: "E_FOOT03_132", name: "[Event] Newt Plate Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 968, mDef: 484, material: "Iron" }, +{ itemId: 635167, className: "E_HAND03_130", name: "[Event] Newt Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 484, mDef: 968, material: "Cloth" }, +{ itemId: 635168, className: "E_HAND03_131", name: "[Event] Newt Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", pAtk: 19, def: 726, mDef: 726, material: "Leather" }, +{ itemId: 635169, className: "E_HAND03_132", name: "[Event] Newt Plate Gauntlets", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 18000, sellPrice: 4392, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 968, mDef: 484, material: "Iron" }, { itemId: 635191, className: "TOP01_124_EVENT_1710_NEWCHARACTER", name: "[Event] Vubbe Armor ( 30 Days)", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Shirt", minLevel: 15, def: 79, mDef: 79, material: "Leather" }, { itemId: 635192, className: "LEG01_124_EVENT_1710_NEWCHARACTER", name: "[Event] Vubbe Pants (30 Days)", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 2592, sellPrice: 518, equipType1: "Pants", minLevel: 15, def: 79, mDef: 79, material: "Leather" }, { itemId: 635202, className: "TOP01_106_EVENT_1710_NEWCHARACTER", name: "[Event] Mark Tunic (30 Days)", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 3276, sellPrice: 1360, equipType1: "Shirt", minLevel: 40, def: 178, mDef: 178, material: "Leather" }, @@ -3089,19 +3089,19 @@ { itemId: 635261, className: "FOOT04_131_STEMA_DLC", name: "Primus Jevenellis Leather Boots [Untradable]", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 1065, mDef: 1065, material: "Leather" }, { itemId: 635262, className: "FOOT04_132_STEMA_DLC", name: "Primus Basticle Greaves [Untradable]", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 1420, mDef: 710, material: "Iron" }, { itemId: 635278, className: "SHD04_112_STEMA_DLC", name: "Primus Raffye Shield [Untradable]", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 350, def: 4260, mDef: 0, material: "Iron" }, -{ itemId: 635294, className: "SHD04_105_STEAM_NT", name: "Emengard Shield [Untradable]", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29280, sellPrice: 8868, equipType1: "Shield", minLevel: 315, def: 3840, mDef: 0, addDef: 22, addMDef: 440, material: "Iron" }, -{ itemId: 635295, className: "TOP04_127_STEAM_NT", name: "Primus Oksinis Robe [Untradable]", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 960, mDef: 1920, material: "Cloth" }, -{ itemId: 635296, className: "TOP04_128_STEAM_NT", name: "Primus Kaulas Leather Armor [Untradable]", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 1440, mDef: 1440, material: "Leather" }, -{ itemId: 635297, className: "TOP04_129_STEAM_NT", name: "Primus Krisius Plate Armor [Untradable]", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 1920, mDef: 960, material: "Iron" }, -{ itemId: 635298, className: "LEG04_127_STEAM_NT", name: "Primus Oksinis Pants [Untradable]", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 960, mDef: 1920, material: "Cloth" }, -{ itemId: 635299, className: "LEG04_128_STEAM_NT", name: "Primus Kaulas Leather Pants [Untradable]", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 1440, mDef: 1440, material: "Leather" }, -{ itemId: 635300, className: "LEG04_129_STEAM_NT", name: "Primus Krisius Plate Pants [Untradable]", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 1920, mDef: 960, material: "Iron" }, -{ itemId: 635301, className: "HAND04_128_STEAM_NT", name: "Primus Oksinis Gloves [Untradable]", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 640, mDef: 1280, material: "Cloth" }, -{ itemId: 635302, className: "HAND04_129_STEAM_NT", name: "Primus Kaulas Leather Gloves [Untradable]", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 960, mDef: 960, material: "Leather" }, -{ itemId: 635303, className: "HAND04_130_STEAM_NT", name: "Primus Krisius Gauntlets [Untradable]", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 1280, mDef: 640, material: "Iron" }, -{ itemId: 635304, className: "FOOT04_127_STEAM_NT", name: "Primus Oksinis Boots [Untradable]", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 640, mDef: 1280, material: "Cloth" }, -{ itemId: 635305, className: "FOOT04_128_STEAM_NT", name: "Primus Kaulas Leather Boots [Untradable]", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 960, mDef: 960, material: "Leather" }, -{ itemId: 635306, className: "FOOT04_129_STEAM_NT", name: "Primus Krisius Greaves [Untradable]", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 1280, mDef: 640, material: "Iron" }, +{ itemId: 635294, className: "SHD04_105_STEAM_NT", name: "Emengard Shield [Untradable]", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29280, sellPrice: 8868, equipType1: "Shield", minLevel: 315, equipExpGroup: "Equip", def: 3840, mDef: 0, addDef: 22, addMDef: 440, material: "Iron" }, +{ itemId: 635295, className: "TOP04_127_STEAM_NT", name: "Primus Oksinis Robe [Untradable]", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 960, mDef: 1920, material: "Cloth" }, +{ itemId: 635296, className: "TOP04_128_STEAM_NT", name: "Primus Kaulas Leather Armor [Untradable]", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1440, mDef: 1440, material: "Leather" }, +{ itemId: 635297, className: "TOP04_129_STEAM_NT", name: "Primus Krisius Plate Armor [Untradable]", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1920, mDef: 960, material: "Iron" }, +{ itemId: 635298, className: "LEG04_127_STEAM_NT", name: "Primus Oksinis Pants [Untradable]", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 960, mDef: 1920, material: "Cloth" }, +{ itemId: 635299, className: "LEG04_128_STEAM_NT", name: "Primus Kaulas Leather Pants [Untradable]", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1440, mDef: 1440, material: "Leather" }, +{ itemId: 635300, className: "LEG04_129_STEAM_NT", name: "Primus Krisius Plate Pants [Untradable]", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1920, mDef: 960, material: "Iron" }, +{ itemId: 635301, className: "HAND04_128_STEAM_NT", name: "Primus Oksinis Gloves [Untradable]", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 640, mDef: 1280, material: "Cloth" }, +{ itemId: 635302, className: "HAND04_129_STEAM_NT", name: "Primus Kaulas Leather Gloves [Untradable]", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 960, mDef: 960, material: "Leather" }, +{ itemId: 635303, className: "HAND04_130_STEAM_NT", name: "Primus Krisius Gauntlets [Untradable]", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 1280, mDef: 640, material: "Iron" }, +{ itemId: 635304, className: "FOOT04_127_STEAM_NT", name: "Primus Oksinis Boots [Untradable]", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 640, mDef: 1280, material: "Cloth" }, +{ itemId: 635305, className: "FOOT04_128_STEAM_NT", name: "Primus Kaulas Leather Boots [Untradable]", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 960, mDef: 960, material: "Leather" }, +{ itemId: 635306, className: "FOOT04_129_STEAM_NT", name: "Primus Krisius Greaves [Untradable]", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 1280, mDef: 640, material: "Iron" }, { itemId: 635321, className: "TOP04_125_EVENT_1710_NEWCHARACTER", name: "[Event] Primus Albinosas Leather Armor (30 Days)", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, def: 1237, mDef: 1237, material: "Leather" }, { itemId: 635322, className: "LEG04_125_EVENT_1710_NEWCHARACTER", name: "[Event] Primus Albinosas Leather Pants (30 Days)", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, def: 1237, mDef: 1237, material: "Leather" }, { itemId: 635337, className: "TOP04_128_EVENT_1710_NEWCHARACTER", name: "[Event] Primus Kaulas Leather Armor (30 Days)", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 1440, mDef: 1440, material: "Leather" }, @@ -3122,51 +3122,51 @@ { itemId: 635441, className: "SHD03_310_NEWCHARACTER", name: "[Event] Berthas Pajoritas Shield (30 Days)", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 19603, sellPrice: 0, equipType1: "Shield", minLevel: 220, def: 2376, mDef: 2376, material: "Shield" }, { itemId: 635442, className: "SHD04_110_NEWCHARACTER", name: "[Event] Primus Migantis Shield (30 Days)", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Shield", minLevel: 270, def: 3300, mDef: 3300, material: "Shield" }, { itemId: 635443, className: "SHD04_111_NEWCHARACTER", name: "[Event] Primus Pevordimas Shield (30 Days)", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 29280, sellPrice: 0, equipType1: "Shield", minLevel: 315, def: 3840, mDef: 3840, material: "Shield" }, -{ itemId: 635466, className: "SHD04_115_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, def: 4620, mDef: 4620, addMDef: 358, material: "Shield" }, -{ itemId: 635482, className: "SHD04_116_EVENT_1812_XMAS", name: "[Event] Asio Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, def: 4620, mDef: 4620, addMDef: 357, material: "Shield" }, +{ itemId: 635466, className: "SHD04_115_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, equipExpGroup: "Equip", def: 4620, mDef: 4620, addMDef: 358, material: "Shield" }, +{ itemId: 635482, className: "SHD04_116_EVENT_1812_XMAS", name: "[Event] Asio Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, equipExpGroup: "Equip", def: 4620, mDef: 4620, addMDef: 357, material: "Shield" }, { itemId: 635498, className: "SHD04_113_NEWCHARACTER2", name: "[Event] Masinios Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 350, def: 4260, mDef: 4260, addMDef: 437, material: "Shield", strike: 234 }, { itemId: 635507, className: "Steam_Event_costume_Com_17", name: "Male Festival Costume (30 Days)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Outer", minLevel: 1 }, { itemId: 635508, className: "Steam_Event_costume_Com_18", name: "Female Festival Costume (30 Days)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Outer", minLevel: 1 }, -{ itemId: 635541, className: "Event_SHD05_103", name: "[Event] Savinose Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 6220, mDef: 6220, material: "Shield" }, -{ itemId: 635542, className: "Event_HAND05_107", name: "[Event] Savinose Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1036, mDef: 2073, material: "Cloth" }, -{ itemId: 635543, className: "Event_FOOT05_107", name: "[Event] Savinose Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1036, mDef: 2073, material: "Cloth" }, -{ itemId: 635544, className: "Event_LEG05_107", name: "[Event] Savinose Pilgriste Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1555, mDef: 3110, material: "Cloth" }, -{ itemId: 635545, className: "Event_TOP05_107", name: "[Event] Savinose Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1555, mDef: 3110, material: "Cloth" }, -{ itemId: 635546, className: "Event_HAND05_108", name: "[Event] Savinose Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1555, mDef: 1555, material: "Leather" }, -{ itemId: 635547, className: "Event_FOOT05_108", name: "[Event] Savinose Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1555, mDef: 1555, material: "Leather" }, -{ itemId: 635548, className: "Event_LEG05_108", name: "[Event] Savinose Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 2332, mDef: 2332, material: "Leather" }, -{ itemId: 635549, className: "Event_TOP05_108", name: "[Event] Savniose Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 2332, mDef: 2332, material: "Leather" }, -{ itemId: 635550, className: "Event_HAND05_109", name: "[Event] Savinose Akmo Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 2073, mDef: 1036, material: "Iron" }, -{ itemId: 635551, className: "Event_FOOT05_109", name: "[Event] Savinose Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 2073, mDef: 1036, material: "Iron" }, -{ itemId: 635552, className: "Event_LEG05_109", name: "[Event] Savinose Akmo Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 3110, mDef: 1555, material: "Iron" }, -{ itemId: 635553, className: "Event_TOP05_109", name: "[Event] Savinose Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 3110, mDef: 1555, material: "Iron" }, -{ itemId: 635561, className: "SHD04_116_EVENT_NewChar01", name: "[Event] Asio Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, def: 4620, mDef: 4620, addMDef: 357, material: "Shield" }, -{ itemId: 635588, className: "FOREVER_SHD05_103", name: "[4ever] Savinose Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 6220, mDef: 6220, material: "Shield" }, -{ itemId: 635589, className: "FOREVER_HAND05_107", name: "[4ever] Savinose Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1036, mDef: 2073, material: "Cloth" }, -{ itemId: 635590, className: "FOREVER_FOOT05_107", name: "[4ever] Savinose Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1036, mDef: 2073, material: "Cloth" }, -{ itemId: 635591, className: "FOREVER_LEG05_107", name: "[4ever] Savinose Pilgriste Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1555, mDef: 3110, material: "Cloth" }, -{ itemId: 635592, className: "FOREVER_TOP05_107", name: "[4ever] Savinose Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1555, mDef: 3110, material: "Cloth" }, -{ itemId: 635593, className: "FOREVER_HAND05_108", name: "[4ever] Savinose Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1555, mDef: 1555, material: "Leather" }, -{ itemId: 635594, className: "FOREVER_FOOT05_108", name: "[4ever] Savinose Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1555, mDef: 1555, material: "Leather" }, -{ itemId: 635595, className: "FOREVER_LEG05_108", name: "[4ever] Savinose Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 2332, mDef: 2332, material: "Leather" }, -{ itemId: 635596, className: "FOREVER_TOP05_108", name: "[4ever] Savinose Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 2332, mDef: 2332, material: "Leather" }, -{ itemId: 635597, className: "FOREVER_HAND05_109", name: "[4ever] Savinose Akmo Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 2073, mDef: 1036, material: "Iron" }, -{ itemId: 635598, className: "FOREVER_FOOT05_109", name: "[4ever] Savinose Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 2073, mDef: 1036, material: "Iron" }, -{ itemId: 635599, className: "FOREVER_LEG05_109", name: "[4ever] Savinose Akmo Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 3110, mDef: 1555, material: "Iron" }, -{ itemId: 635600, className: "FOREVER_TOP05_109", name: "[4ever] Savinose Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 3110, mDef: 1555, material: "Iron" }, -{ itemId: 635616, className: "2020NEWYEAR_SHD05_103", name: "[Blossom Pack] Savinose Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 6220, mDef: 6220, material: "Shield" }, -{ itemId: 635617, className: "2020NEWYEAR_HAND05_107", name: "[Blossom Pack] Savinose Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1036, mDef: 2073, material: "Cloth" }, -{ itemId: 635618, className: "2020NEWYEAR_FOOT05_107", name: "[Blossom Pack] Savinose Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1036, mDef: 2073, material: "Cloth" }, -{ itemId: 635619, className: "2020NEWYEAR_LEG05_107", name: "[Blossom Pack] Savinose Pilgriste Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1555, mDef: 3110, material: "Cloth" }, -{ itemId: 635620, className: "2020NEWYEAR_TOP05_107", name: "[Blossom Pack] Savinose Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1555, mDef: 3110, material: "Cloth" }, -{ itemId: 635621, className: "2020NEWYEAR_HAND05_108", name: "[Blossom Pack] Savinose Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1555, mDef: 1555, material: "Leather" }, -{ itemId: 635622, className: "2020NEWYEAR_FOOT05_108", name: "[Blossom Pack] Savinose Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1555, mDef: 1555, material: "Leather" }, -{ itemId: 635623, className: "2020NEWYEAR_LEG05_108", name: "[Blossom Pack] Savinose Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 2332, mDef: 2332, material: "Leather" }, -{ itemId: 635624, className: "2020NEWYEAR_TOP05_108", name: "[Blossom Pack] Savinose Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 2332, mDef: 2332, material: "Leather" }, -{ itemId: 635625, className: "2020NEWYEAR_HAND05_109", name: "[Blossom Pack] Savinose Akmo Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 2073, mDef: 1036, material: "Iron" }, -{ itemId: 635626, className: "2020NEWYEAR_FOOT05_109", name: "[Blossom Pack] Savinose Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 2073, mDef: 1036, material: "Iron" }, -{ itemId: 635627, className: "2020NEWYEAR_LEG05_109", name: "[Blossom Pack] Savinose Akmo Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 3110, mDef: 1555, material: "Iron" }, -{ itemId: 635628, className: "2020NEWYEAR_TOP05_109", name: "[Blossom Pack] Savinose Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 3110, mDef: 1555, material: "Iron" }, +{ itemId: 635541, className: "Event_SHD05_103", name: "[Event] Savinose Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 6220, mDef: 6220, material: "Shield" }, +{ itemId: 635542, className: "Event_HAND05_107", name: "[Event] Savinose Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth" }, +{ itemId: 635543, className: "Event_FOOT05_107", name: "[Event] Savinose Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth" }, +{ itemId: 635544, className: "Event_LEG05_107", name: "[Event] Savinose Pilgriste Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth" }, +{ itemId: 635545, className: "Event_TOP05_107", name: "[Event] Savinose Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth" }, +{ itemId: 635546, className: "Event_HAND05_108", name: "[Event] Savinose Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather" }, +{ itemId: 635547, className: "Event_FOOT05_108", name: "[Event] Savinose Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather" }, +{ itemId: 635548, className: "Event_LEG05_108", name: "[Event] Savinose Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather" }, +{ itemId: 635549, className: "Event_TOP05_108", name: "[Event] Savniose Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather" }, +{ itemId: 635550, className: "Event_HAND05_109", name: "[Event] Savinose Akmo Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron" }, +{ itemId: 635551, className: "Event_FOOT05_109", name: "[Event] Savinose Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron" }, +{ itemId: 635552, className: "Event_LEG05_109", name: "[Event] Savinose Akmo Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron" }, +{ itemId: 635553, className: "Event_TOP05_109", name: "[Event] Savinose Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron" }, +{ itemId: 635561, className: "SHD04_116_EVENT_NewChar01", name: "[Event] Asio Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, equipExpGroup: "Equip", def: 4620, mDef: 4620, addMDef: 357, material: "Shield" }, +{ itemId: 635588, className: "FOREVER_SHD05_103", name: "[4ever] Savinose Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 6220, mDef: 6220, material: "Shield" }, +{ itemId: 635589, className: "FOREVER_HAND05_107", name: "[4ever] Savinose Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth" }, +{ itemId: 635590, className: "FOREVER_FOOT05_107", name: "[4ever] Savinose Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth" }, +{ itemId: 635591, className: "FOREVER_LEG05_107", name: "[4ever] Savinose Pilgriste Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth" }, +{ itemId: 635592, className: "FOREVER_TOP05_107", name: "[4ever] Savinose Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth" }, +{ itemId: 635593, className: "FOREVER_HAND05_108", name: "[4ever] Savinose Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather" }, +{ itemId: 635594, className: "FOREVER_FOOT05_108", name: "[4ever] Savinose Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather" }, +{ itemId: 635595, className: "FOREVER_LEG05_108", name: "[4ever] Savinose Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather" }, +{ itemId: 635596, className: "FOREVER_TOP05_108", name: "[4ever] Savinose Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather" }, +{ itemId: 635597, className: "FOREVER_HAND05_109", name: "[4ever] Savinose Akmo Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron" }, +{ itemId: 635598, className: "FOREVER_FOOT05_109", name: "[4ever] Savinose Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron" }, +{ itemId: 635599, className: "FOREVER_LEG05_109", name: "[4ever] Savinose Akmo Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron" }, +{ itemId: 635600, className: "FOREVER_TOP05_109", name: "[4ever] Savinose Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron" }, +{ itemId: 635616, className: "2020NEWYEAR_SHD05_103", name: "[Blossom Pack] Savinose Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 6220, mDef: 6220, material: "Shield" }, +{ itemId: 635617, className: "2020NEWYEAR_HAND05_107", name: "[Blossom Pack] Savinose Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth" }, +{ itemId: 635618, className: "2020NEWYEAR_FOOT05_107", name: "[Blossom Pack] Savinose Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth" }, +{ itemId: 635619, className: "2020NEWYEAR_LEG05_107", name: "[Blossom Pack] Savinose Pilgriste Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth" }, +{ itemId: 635620, className: "2020NEWYEAR_TOP05_107", name: "[Blossom Pack] Savinose Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth" }, +{ itemId: 635621, className: "2020NEWYEAR_HAND05_108", name: "[Blossom Pack] Savinose Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather" }, +{ itemId: 635622, className: "2020NEWYEAR_FOOT05_108", name: "[Blossom Pack] Savinose Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather" }, +{ itemId: 635623, className: "2020NEWYEAR_LEG05_108", name: "[Blossom Pack] Savinose Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather" }, +{ itemId: 635624, className: "2020NEWYEAR_TOP05_108", name: "[Blossom Pack] Savinose Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather" }, +{ itemId: 635625, className: "2020NEWYEAR_HAND05_109", name: "[Blossom Pack] Savinose Akmo Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron" }, +{ itemId: 635626, className: "2020NEWYEAR_FOOT05_109", name: "[Blossom Pack] Savinose Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron" }, +{ itemId: 635627, className: "2020NEWYEAR_LEG05_109", name: "[Blossom Pack] Savinose Akmo Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron" }, +{ itemId: 635628, className: "2020NEWYEAR_TOP05_109", name: "[Blossom Pack] Savinose Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron" }, { itemId: 635637, className: "EVENT_1803_Hat_628305_NoTrade", name: "[Event] Pink Candy", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, { itemId: 636010, className: "T_TOP01_139", name: "[Kupole] Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Shirt", minLevel: 1, def: 729, mDef: 729, material: "Leather" }, { itemId: 636011, className: "T_LEG01_139", name: "[Kupole] Leather Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Pants", minLevel: 1, def: 729, mDef: 729, material: "Leather" }, @@ -3183,7 +3183,7 @@ { itemId: 636022, className: "T_NECK100_101", name: "[Kupole] Kupole Necklace", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 91, maxAtk: 91, mAtk: 91 }, { itemId: 636023, className: "T_BRC100_101", name: "[Kupole] Kupole Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, minAtk: 91, maxAtk: 91, mAtk: 91, addMinAtk: 2 }, { itemId: 636024, className: "T_SHD100_101", name: "[Kupole] Steel Buckler", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 1944, mDef: 1944, material: "Shield" }, -{ itemId: 636044, className: "T_SHD03_110", name: "[Kupole] Lion Head Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 3379, mDef: 3379, addDef: 15, addMDef: 325, material: "Shield" }, +{ itemId: 636044, className: "T_SHD03_110", name: "[Kupole] Lion Head Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 3379, mDef: 3379, addDef: 15, addMDef: 325, material: "Shield" }, { itemId: 636052, className: "SHD04_113_NEWCHARACTER_KU", name: "[Kupole] Masinios Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 350, def: 4260, mDef: 4260, addMDef: 437, material: "Shield", strike: 234 }, { itemId: 636110, className: "PC_TOP01_139", name: "[PP] Leather Armor", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Shirt", minLevel: 1, def: 34, mDef: 34, material: "Leather", script: { strArg: "PC_Equip" } }, { itemId: 636111, className: "PC_LEG01_139", name: "[PP] Leather Pants", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Pants", minLevel: 1, def: 34, mDef: 34, material: "Leather", script: { strArg: "PC_Equip" } }, @@ -3203,60 +3203,60 @@ { itemId: 636410, className: "POPO_SHOP_3D_SHD100_101", name: "[Popo Shop] Shield (3 Days)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 63, mDef: 63, material: "Shield", script: { strArg: "Growth_Item_Rare" } }, { itemId: 636460, className: "POPO_SHOP_7D_SHD100_101", name: "[Popo Shop] Shield (7 Days)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 63, mDef: 63, material: "Shield", script: { strArg: "Growth_Item_Rare" } }, { itemId: 636510, className: "STEAM_TO_BEGIN_1_SHD04_117", name: "To begin: Shield", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 72, mDef: 72, material: "Shield", script: { strArg: "Growth_Item_Unique" } }, -{ itemId: 636616, className: "PVP_SHD05_103", name: "Savinose Legva Shield (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 6220, mDef: 6220, material: "Shield", script: { strArg: "pvp_Mine" } }, -{ itemId: 636617, className: "PVP_HAND05_107", name: "Savinose Pilgriste Gloves (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Gloves", minLevel: 1, def: 1036, mDef: 2073, material: "Cloth", script: { strArg: "pvp_Mine" } }, -{ itemId: 636618, className: "PVP_FOOT05_107", name: "Savinose Pilgriste Boots (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Boots", minLevel: 1, def: 1036, mDef: 2073, material: "Cloth", script: { strArg: "pvp_Mine" } }, -{ itemId: 636619, className: "PVP_LEG05_107", name: "Savinose Pilgriste Pants (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Pants", minLevel: 1, def: 1555, mDef: 3110, material: "Cloth", script: { strArg: "pvp_Mine" } }, -{ itemId: 636620, className: "PVP_TOP05_107", name: "Savinose Pilgriste Robe (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Shirt", minLevel: 1, def: 1555, mDef: 3110, material: "Cloth", script: { strArg: "pvp_Mine" } }, -{ itemId: 636621, className: "PVP_HAND05_108", name: "Savinose Vymedzai Leather Gloves (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Gloves", minLevel: 1, def: 1555, mDef: 1555, material: "Leather", script: { strArg: "pvp_Mine" } }, -{ itemId: 636622, className: "PVP_FOOT05_108", name: "Savinose Vymedzai Leather Boots (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Boots", minLevel: 1, def: 1555, mDef: 1555, material: "Leather", script: { strArg: "pvp_Mine" } }, -{ itemId: 636623, className: "PVP_LEG05_108", name: "Savinose Vymedzai Leather Pants (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Pants", minLevel: 1, def: 2332, mDef: 2332, material: "Leather", script: { strArg: "pvp_Mine" } }, -{ itemId: 636624, className: "PVP_TOP05_108", name: "Savniose Vymedzai Leather Armor (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Shirt", minLevel: 1, def: 2332, mDef: 2332, material: "Leather", script: { strArg: "pvp_Mine" } }, -{ itemId: 636625, className: "PVP_HAND05_109", name: "Savinose Akmo Gauntlets (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Gloves", minLevel: 1, def: 2073, mDef: 1036, material: "Iron", script: { strArg: "pvp_Mine" } }, -{ itemId: 636626, className: "PVP_FOOT05_109", name: "Savinose Akmo Greaves (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Boots", minLevel: 1, def: 2073, mDef: 1036, material: "Iron", script: { strArg: "pvp_Mine" } }, -{ itemId: 636627, className: "PVP_LEG05_109", name: "Savinose Akmo Plate Pants (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Pants", minLevel: 1, def: 3110, mDef: 1555, material: "Iron", script: { strArg: "pvp_Mine" } }, -{ itemId: 636628, className: "PVP_TOP05_109", name: "Savinose Akmo Plate Armor (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Shirt", minLevel: 1, def: 3110, mDef: 1555, material: "Iron", script: { strArg: "pvp_Mine" } }, -{ itemId: 636629, className: "PVP_NECK04_115", name: "Nepagristas Necklace (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 199, maxAtk: 199, mAtk: 199, script: { strArg: "pvp_Mine" } }, -{ itemId: 636630, className: "PVP_NECK04_116", name: "Nematomas Necklace (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 199, maxAtk: 199, mAtk: 199, addMaxAtk: 123, script: { strArg: "pvp_Mine" } }, -{ itemId: 636631, className: "PVP_NECK04_117", name: "Rangovas Necklace (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 199, maxAtk: 199, mAtk: 199, addMDef: 152, script: { strArg: "pvp_Mine" } }, -{ itemId: 636632, className: "PVP_NECK04_118", name: "Abyss Irredian Necklace (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 216, maxAtk: 216, mAtk: 216, addMaxAtk: 235, script: { strArg: "pvp_Mine" } }, -{ itemId: 636633, className: "PVP_NECK04_119", name: "Cevisa Irredian Necklace (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 216, maxAtk: 216, mAtk: 216, addDef: 432, script: { strArg: "pvp_Mine" } }, -{ itemId: 636634, className: "PVP_BRC04_115", name: "Nepagristas Bracelet (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 4780, equipType1: "Ring", minLevel: 1, minAtk: 199, maxAtk: 199, pAtk: 30, mAtk: 199, script: { strArg: "pvp_Mine" } }, -{ itemId: 636635, className: "PVP_BRC04_116", name: "Nematomas Bracelet (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 4780, equipType1: "Ring", minLevel: 1, minAtk: 199, maxAtk: 199, mAtk: 199, addMaxAtk: 125, script: { strArg: "pvp_Mine" } }, -{ itemId: 636636, className: "PVP_BRC04_117", name: "Rangovas Bracelet (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 4780, equipType1: "Ring", minLevel: 1, minAtk: 199, maxAtk: 199, mAtk: 199, addDef: 40, script: { strArg: "pvp_Mine" } }, -{ itemId: 636637, className: "PVP_BRC04_118", name: "Abyss Irredian Bracelet (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 4780, equipType1: "Ring", minLevel: 1, minAtk: 216, maxAtk: 216, mAtk: 216, script: { strArg: "pvp_Mine" } }, -{ itemId: 636638, className: "PVP_BRC04_119", name: "Cevisa Irredian Bracelet (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 4780, equipType1: "Ring", minLevel: 1, minAtk: 216, maxAtk: 216, mAtk: 216, addMDef: 235, script: { strArg: "pvp_Mine" } }, -{ itemId: 636653, className: "PVP_SHD04_122", name: "Vaivora Shield - Concentrated Defense (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 5220, mDef: 5220, material: "Shield", script: { strArg: "pvp_Mine" } }, -{ itemId: 636683, className: "PVP_EP12_NECK05_HIGH_001", name: "Karaliene Juoda Necklace (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, -{ itemId: 636684, className: "PVP_EP12_NECK05_HIGH_002", name: "Karaliene Isgarinti Necklace (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, -{ itemId: 636685, className: "PVP_EP12_NECK05_HIGH_003", name: "Karaliene Kantribe Necklace (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 312, maxAtk: 312, mAtk: 312, addDef: 2500, script: { strArg: "pvp_Mine" } }, -{ itemId: 636686, className: "PVP_EP12_NECK05_HIGH_004", name: "Karaliene Vargeras Necklace (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 312, maxAtk: 312, mAtk: 312, addMDef: 2500, script: { strArg: "pvp_Mine" } }, -{ itemId: 636687, className: "PVP_EP12_NECK05_HIGH_005", name: "Karaliene Pyktis Necklace (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 312, maxAtk: 312, mAtk: 312, middleSizeBonus: 1500, script: { strArg: "pvp_Mine" } }, -{ itemId: 636688, className: "PVP_EP12_NECK05_HIGH_006", name: "Karaliene Triukas Necklace (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, -{ itemId: 636689, className: "PVP_EP12_NECK05_HIGH_007", name: "Karaliene Prideti Necklace (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, -{ itemId: 636690, className: "PVP_EP12_BRC05_HIGH_001", name: "Karaliene Juoda Bracelet (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, -{ itemId: 636691, className: "PVP_EP12_BRC05_HIGH_002", name: "Karaliene Isgarinti Bracelet (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, -{ itemId: 636692, className: "PVP_EP12_BRC05_HIGH_003", name: "Karaliene Kantribe Bracelet (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 6655, equipType1: "Ring", minLevel: 1, minAtk: 312, maxAtk: 312, mAtk: 312, addDef: 1250, script: { strArg: "pvp_Mine" } }, -{ itemId: 636693, className: "PVP_EP12_BRC05_HIGH_004", name: "Karaliene Vargeras Bracelet (20 Minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 6655, equipType1: "Ring", minLevel: 1, minAtk: 312, maxAtk: 312, mAtk: 312, addMDef: 1250, script: { strArg: "pvp_Mine" } }, -{ itemId: 636694, className: "PVP_EP12_BRC05_HIGH_005", name: "Karaliene Pyktis Bracelet (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 6655, equipType1: "Ring", minLevel: 1, minAtk: 312, maxAtk: 312, mAtk: 312, middleSizeBonus: 500, script: { strArg: "pvp_Mine" } }, -{ itemId: 636695, className: "PVP_EP12_BRC05_HIGH_006", name: "Karaliene Triukas Bracelet (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 6655, equipType1: "Ring", minLevel: 1, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, -{ itemId: 636696, className: "PVP_EP12_BRC05_HIGH_007", name: "Karaliene Prideti Bracelet (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 6655, equipType1: "Ring", minLevel: 1, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, -{ itemId: 636708, className: "Event_SHD05_104", name: "[Moonlight] Skiaclipse Varna Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 6220, mDef: 6220, material: "Shield" }, +{ itemId: 636616, className: "PVP_SHD05_103", name: "Savinose Legva Shield (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 6220, mDef: 6220, material: "Shield", script: { strArg: "pvp_Mine" } }, +{ itemId: 636617, className: "PVP_HAND05_107", name: "Savinose Pilgriste Gloves (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Gloves", minLevel: 1, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth", script: { strArg: "pvp_Mine" } }, +{ itemId: 636618, className: "PVP_FOOT05_107", name: "Savinose Pilgriste Boots (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth", script: { strArg: "pvp_Mine" } }, +{ itemId: 636619, className: "PVP_LEG05_107", name: "Savinose Pilgriste Pants (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Pants", minLevel: 1, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth", script: { strArg: "pvp_Mine" } }, +{ itemId: 636620, className: "PVP_TOP05_107", name: "Savinose Pilgriste Robe (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth", script: { strArg: "pvp_Mine" } }, +{ itemId: 636621, className: "PVP_HAND05_108", name: "Savinose Vymedzai Leather Gloves (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Gloves", minLevel: 1, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather", script: { strArg: "pvp_Mine" } }, +{ itemId: 636622, className: "PVP_FOOT05_108", name: "Savinose Vymedzai Leather Boots (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather", script: { strArg: "pvp_Mine" } }, +{ itemId: 636623, className: "PVP_LEG05_108", name: "Savinose Vymedzai Leather Pants (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Pants", minLevel: 1, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather", script: { strArg: "pvp_Mine" } }, +{ itemId: 636624, className: "PVP_TOP05_108", name: "Savniose Vymedzai Leather Armor (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather", script: { strArg: "pvp_Mine" } }, +{ itemId: 636625, className: "PVP_HAND05_109", name: "Savinose Akmo Gauntlets (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Gloves", minLevel: 1, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron", script: { strArg: "pvp_Mine" } }, +{ itemId: 636626, className: "PVP_FOOT05_109", name: "Savinose Akmo Greaves (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron", script: { strArg: "pvp_Mine" } }, +{ itemId: 636627, className: "PVP_LEG05_109", name: "Savinose Akmo Plate Pants (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Pants", minLevel: 1, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron", script: { strArg: "pvp_Mine" } }, +{ itemId: 636628, className: "PVP_TOP05_109", name: "Savinose Akmo Plate Armor (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron", script: { strArg: "pvp_Mine" } }, +{ itemId: 636629, className: "PVP_NECK04_115", name: "Nepagristas Necklace (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 199, maxAtk: 199, mAtk: 199, script: { strArg: "pvp_Mine" } }, +{ itemId: 636630, className: "PVP_NECK04_116", name: "Nematomas Necklace (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 199, maxAtk: 199, mAtk: 199, addMaxAtk: 123, script: { strArg: "pvp_Mine" } }, +{ itemId: 636631, className: "PVP_NECK04_117", name: "Rangovas Necklace (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 199, maxAtk: 199, mAtk: 199, addMDef: 152, script: { strArg: "pvp_Mine" } }, +{ itemId: 636632, className: "PVP_NECK04_118", name: "Abyss Irredian Necklace (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 216, maxAtk: 216, mAtk: 216, addMaxAtk: 235, script: { strArg: "pvp_Mine" } }, +{ itemId: 636633, className: "PVP_NECK04_119", name: "Cevisa Irredian Necklace (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 216, maxAtk: 216, mAtk: 216, addDef: 432, script: { strArg: "pvp_Mine" } }, +{ itemId: 636634, className: "PVP_BRC04_115", name: "Nepagristas Bracelet (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 4780, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 199, maxAtk: 199, pAtk: 30, mAtk: 199, script: { strArg: "pvp_Mine" } }, +{ itemId: 636635, className: "PVP_BRC04_116", name: "Nematomas Bracelet (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 4780, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 199, maxAtk: 199, mAtk: 199, addMaxAtk: 125, script: { strArg: "pvp_Mine" } }, +{ itemId: 636636, className: "PVP_BRC04_117", name: "Rangovas Bracelet (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 4780, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 199, maxAtk: 199, mAtk: 199, addDef: 40, script: { strArg: "pvp_Mine" } }, +{ itemId: 636637, className: "PVP_BRC04_118", name: "Abyss Irredian Bracelet (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 4780, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 216, maxAtk: 216, mAtk: 216, script: { strArg: "pvp_Mine" } }, +{ itemId: 636638, className: "PVP_BRC04_119", name: "Cevisa Irredian Bracelet (20 min)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 4780, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 216, maxAtk: 216, mAtk: 216, addMDef: 235, script: { strArg: "pvp_Mine" } }, +{ itemId: 636653, className: "PVP_SHD04_122", name: "Vaivora Shield - Concentrated Defense (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 5220, mDef: 5220, material: "Shield", script: { strArg: "pvp_Mine" } }, +{ itemId: 636683, className: "PVP_EP12_NECK05_HIGH_001", name: "Karaliene Juoda Necklace (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, +{ itemId: 636684, className: "PVP_EP12_NECK05_HIGH_002", name: "Karaliene Isgarinti Necklace (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, +{ itemId: 636685, className: "PVP_EP12_NECK05_HIGH_003", name: "Karaliene Kantribe Necklace (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, addDef: 2500, script: { strArg: "pvp_Mine" } }, +{ itemId: 636686, className: "PVP_EP12_NECK05_HIGH_004", name: "Karaliene Vargeras Necklace (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, addMDef: 2500, script: { strArg: "pvp_Mine" } }, +{ itemId: 636687, className: "PVP_EP12_NECK05_HIGH_005", name: "Karaliene Pyktis Necklace (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, middleSizeBonus: 1500, script: { strArg: "pvp_Mine" } }, +{ itemId: 636688, className: "PVP_EP12_NECK05_HIGH_006", name: "Karaliene Triukas Necklace (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, +{ itemId: 636689, className: "PVP_EP12_NECK05_HIGH_007", name: "Karaliene Prideti Necklace (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, +{ itemId: 636690, className: "PVP_EP12_BRC05_HIGH_001", name: "Karaliene Juoda Bracelet (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, +{ itemId: 636691, className: "PVP_EP12_BRC05_HIGH_002", name: "Karaliene Isgarinti Bracelet (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, +{ itemId: 636692, className: "PVP_EP12_BRC05_HIGH_003", name: "Karaliene Kantribe Bracelet (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 6655, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, addDef: 1250, script: { strArg: "pvp_Mine" } }, +{ itemId: 636693, className: "PVP_EP12_BRC05_HIGH_004", name: "Karaliene Vargeras Bracelet (20 Minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 6655, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, addMDef: 1250, script: { strArg: "pvp_Mine" } }, +{ itemId: 636694, className: "PVP_EP12_BRC05_HIGH_005", name: "Karaliene Pyktis Bracelet (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 6655, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, middleSizeBonus: 500, script: { strArg: "pvp_Mine" } }, +{ itemId: 636695, className: "PVP_EP12_BRC05_HIGH_006", name: "Karaliene Triukas Bracelet (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 6655, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, +{ itemId: 636696, className: "PVP_EP12_BRC05_HIGH_007", name: "Karaliene Prideti Bracelet (20 minutes)", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 6655, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "pvp_Mine" } }, +{ itemId: 636708, className: "Event_SHD05_104", name: "[Moonlight] Skiaclipse Varna Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 6220, mDef: 6220, material: "Shield" }, { itemId: 636811, className: "NEWYEAR_WEAPON_SHD100_102", name: "[Harvest] Shield", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 92, mDef: 92, material: "Shield", script: { strArg: "Growth_Item_Legend" } }, -{ itemId: 636901, className: "Grimoire_TOP04_139", name: "[Event] Ignas Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 1155, mDef: 2310, material: "Cloth" }, -{ itemId: 636902, className: "Grimoire_TOP04_140", name: "[Event] Ignas Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 1732, mDef: 1732, material: "Leather" }, -{ itemId: 636903, className: "Grimoire_TOP04_141", name: "[Event] Ignas Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 2310, mDef: 1155, material: "Iron" }, -{ itemId: 636904, className: "Grimoire_LEG04_139", name: "[Event] Ignas Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 1155, mDef: 2310, material: "Cloth" }, -{ itemId: 636905, className: "Grimoire_LEG04_140", name: "[Event] Ignas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 1732, mDef: 1732, material: "Leather" }, -{ itemId: 636906, className: "Grimoire_LEG04_141", name: "[Event] Ignas Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 2310, mDef: 1155, material: "Iron" }, -{ itemId: 636907, className: "Grimoire_FOOT04_139", name: "[Event] Ignas Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 770, mDef: 1540, material: "Cloth" }, -{ itemId: 636908, className: "Grimoire_FOOT04_140", name: "[Event] Ignas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 1155, mDef: 1155, material: "Leather" }, -{ itemId: 636909, className: "Grimoire_FOOT04_141", name: "[Event] Ignas Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 1540, mDef: 770, material: "Iron" }, -{ itemId: 636910, className: "Grimoire_HAND04_140", name: "[Event] Ignas Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 770, mDef: 1540, material: "Cloth" }, -{ itemId: 636911, className: "Grimoire_HAND04_141", name: "[Event] Ignas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 1155, mDef: 1155, material: "Leather" }, -{ itemId: 636912, className: "Grimoire_HAND04_142", name: "[Event] Ignas Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 1540, mDef: 770, material: "Iron" }, -{ itemId: 636924, className: "Grimoire_SHD04_116", name: "[Event] Asio Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, def: 4620, mDef: 4620, addMDef: 357, material: "Shield" }, -{ itemId: 636940, className: "Grimoire_SHD04_115", name: "[Event] Wastrel Zvaigzde Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, def: 4620, mDef: 4620, addMDef: 358, material: "Shield" }, +{ itemId: 636901, className: "Grimoire_TOP04_139", name: "[Event] Ignas Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 2310, material: "Cloth" }, +{ itemId: 636902, className: "Grimoire_TOP04_140", name: "[Event] Ignas Leather Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 1732, mDef: 1732, material: "Leather" }, +{ itemId: 636903, className: "Grimoire_TOP04_141", name: "[Event] Ignas Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 2310, mDef: 1155, material: "Iron" }, +{ itemId: 636904, className: "Grimoire_LEG04_139", name: "[Event] Ignas Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 2310, material: "Cloth" }, +{ itemId: 636905, className: "Grimoire_LEG04_140", name: "[Event] Ignas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 1732, mDef: 1732, material: "Leather" }, +{ itemId: 636906, className: "Grimoire_LEG04_141", name: "[Event] Ignas Plate Pants", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 2310, mDef: 1155, material: "Iron" }, +{ itemId: 636907, className: "Grimoire_FOOT04_139", name: "[Event] Ignas Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 770, mDef: 1540, material: "Cloth" }, +{ itemId: 636908, className: "Grimoire_FOOT04_140", name: "[Event] Ignas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 1155, material: "Leather" }, +{ itemId: 636909, className: "Grimoire_FOOT04_141", name: "[Event] Ignas Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 1540, mDef: 770, material: "Iron" }, +{ itemId: 636910, className: "Grimoire_HAND04_140", name: "[Event] Ignas Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 770, mDef: 1540, material: "Cloth" }, +{ itemId: 636911, className: "Grimoire_HAND04_141", name: "[Event] Ignas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 1155, material: "Leather" }, +{ itemId: 636912, className: "Grimoire_HAND04_142", name: "[Event] Ignas Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 1540, mDef: 770, material: "Iron" }, +{ itemId: 636924, className: "Grimoire_SHD04_116", name: "[Event] Asio Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, equipExpGroup: "Equip", def: 4620, mDef: 4620, addMDef: 357, material: "Shield" }, +{ itemId: 636940, className: "Grimoire_SHD04_115", name: "[Event] Wastrel Zvaigzde Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, equipExpGroup: "Equip", def: 4620, mDef: 4620, addMDef: 358, material: "Shield" }, { itemId: 637017, className: "wing_inspector_bundle", name: "Knapsack", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Wing", minLevel: 1 }, { itemId: 637019, className: "wing_inspector_scroll2", name: "Top Secret Royal Scrolls", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Wing", minLevel: 1 }, { itemId: 637999, className: "WingTest", name: "Wing Test", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Wing", minLevel: 1 }, @@ -3350,71 +3350,71 @@ { itemId: 639838, className: "LEG03_116_QUEST_REWARD", name: "Kedoran Virtov Plate Pants", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 29405, sellPrice: 0, equipType1: "Pants", minLevel: 220, def: 1188, mDef: 594, material: "Iron", fireRes: 21 }, { itemId: 639839, className: "FOOT03_116_QUEST_REWARD", name: "Kedoran Virtov Plate Boots", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Boots", minLevel: 220, def: 792, mDef: 396, material: "Iron" }, { itemId: 639840, className: "HAND03_116_QUEST_REWARD", name: "Kedoran Virtov Plate Gloves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 14702, sellPrice: 0, equipType1: "Gloves", minLevel: 220, def: 792, mDef: 396, material: "Iron" }, -{ itemId: 639856, className: "SHD04_105_QUEST_REWARD_NT", name: "Kedoran Emengard Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29280, sellPrice: 8868, equipType1: "Shield", minLevel: 315, def: 3840, mDef: 3840, addDef: 22, addMDef: 440, material: "Shield" }, +{ itemId: 639856, className: "SHD04_105_QUEST_REWARD_NT", name: "Kedoran Emengard Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 29280, sellPrice: 8868, equipType1: "Shield", minLevel: 315, equipExpGroup: "Equip", def: 3840, mDef: 3840, addDef: 22, addMDef: 440, material: "Shield" }, { itemId: 639872, className: "SHD04_112_QUEST_REWARD", name: "Kedoran Raffye Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Shield", minLevel: 350, def: 4260, mDef: 4260, material: "Shield" }, -{ itemId: 639880, className: "SHD04_114_QUEST_REWARD", name: "Kedoran Zvaigzde Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, def: 4620, mDef: 4620, material: "Shield" }, -{ itemId: 639890, className: "TOP04_136_QUEST_REWARD", name: "Kedoran Planeta Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 1155, mDef: 2310, material: "Cloth" }, -{ itemId: 639892, className: "TOP04_137_QUEST_REWARD", name: "Kedoran Ukas Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 1732, mDef: 1732, material: "Leather" }, -{ itemId: 639893, className: "TOP04_138_QUEST_REWARD", name: "Kedoran Galaktikos Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, def: 2310, mDef: 1155, material: "Iron" }, -{ itemId: 639894, className: "LEG04_136_QUEST_REWARD", name: "Kedoran Planeta Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 1155, mDef: 2310, material: "Cloth" }, -{ itemId: 639895, className: "LEG04_137_QUEST_REWARD", name: "Kedoran Ukas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 1732, mDef: 1732, material: "Leather" }, -{ itemId: 639896, className: "LEG04_138_QUEST_REWARD", name: "Kedoran Galaktikos Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, def: 2310, mDef: 1155, material: "Iron" }, -{ itemId: 639897, className: "FOOT04_133_QUEST_REWARD", name: "Kedoran Planeta Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 770, mDef: 1540, material: "Cloth" }, -{ itemId: 639898, className: "FOOT04_134_QUEST_REWARD", name: "Kedoran Ukas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 1155, mDef: 1155, material: "Leather" }, -{ itemId: 639899, className: "FOOT04_135_QUEST_REWARD", name: "Kedoran Galaktikos Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, def: 1540, mDef: 770, material: "Iron" }, -{ itemId: 639900, className: "HAND04_137_QUEST_REWARD", name: "Kedoran Planeta Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 770, mDef: 1540, material: "Cloth" }, -{ itemId: 639901, className: "HAND04_138_QUEST_REWARD", name: "Kedoran Ukas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 1155, mDef: 1155, material: "Leather" }, -{ itemId: 639902, className: "HAND04_139_QUEST_REWARD", name: "Kedoran Galaktikos Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, def: 1540, mDef: 770, material: "Iron" }, -{ itemId: 639910, className: "SHD04_110_QUEST_REWARD", name: "Kedoran Primus Migantis Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Shield", minLevel: 270, def: 3300, mDef: 3300, material: "Shield" }, -{ itemId: 639919, className: "TOP04_124_QUEST_REWARD", name: "Kedoran Primus Kalinis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, def: 825, mDef: 1650, material: "Cloth" }, -{ itemId: 639920, className: "TOP04_125_QUEST_REWARD", name: "Kedoran Primus Albinosas Leather Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, def: 1237, mDef: 1237, material: "Leather" }, -{ itemId: 639921, className: "TOP04_126_QUEST_REWARD", name: "Kedoran Primus Tajtanas Plate Armor", type: "Equip", group: "Armor", weight: 230, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, def: 1650, mDef: 825, material: "Iron" }, -{ itemId: 639922, className: "LEG04_124_QUEST_REWARD", name: "Kedoran Primus Kalinis Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, def: 825, mDef: 1650, material: "Cloth" }, -{ itemId: 639923, className: "LEG04_125_QUEST_REWARD", name: "Kedoran Primus Albinosas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, def: 1237, mDef: 1237, material: "Leather" }, -{ itemId: 639924, className: "LEG04_126_QUEST_REWARD", name: "Kedoran Primus Tajtanas Plate Pants", type: "Equip", group: "Armor", weight: 220, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, def: 1650, mDef: 825, material: "Iron" }, -{ itemId: 639925, className: "FOOT04_124_QUEST_REWARD", name: "Kedoran Primus Kalinis Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, def: 550, mDef: 1100, material: "Cloth" }, -{ itemId: 639926, className: "FOOT04_125_QUEST_REWARD", name: "Kedoran Primus Albinosas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, def: 825, mDef: 825, material: "Leather" }, -{ itemId: 639927, className: "FOOT04_126_QUEST_REWARD", name: "Kedoran Primus Tajtanas Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, def: 1100, mDef: 550, material: "Iron" }, -{ itemId: 639928, className: "HAND04_125_QUEST_REWARD", name: "Kedoran Primus Kalinis Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, def: 550, mDef: 1100, material: "Cloth" }, -{ itemId: 639929, className: "HAND04_126_QUEST_REWARD", name: "Kedoran Primus Albinosas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, def: 825, mDef: 825, material: "Leather" }, -{ itemId: 639930, className: "HAND04_127_QUEST_REWARD", name: "Kedoran Primus Tajtanas Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, def: 1100, mDef: 550, material: "Iron" }, -{ itemId: 639931, className: "TOP04_127_QUEST_REWARD", name: "Kedoran Primus Oksinis Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 960, mDef: 1920, material: "Cloth" }, -{ itemId: 639932, className: "TOP04_128_QUEST_REWARD", name: "Kedoran Primus Kaulas Leather Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 1440, mDef: 1440, material: "Leather" }, -{ itemId: 639933, className: "TOP04_129_QUEST_REWARD", name: "Kedoran Primus Krisius Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, def: 1920, mDef: 960, material: "Iron" }, -{ itemId: 639934, className: "LEG04_127_QUEST_REWARD", name: "Kedoran Primus Oksinis Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 960, mDef: 1920, material: "Cloth" }, -{ itemId: 639935, className: "LEG04_128_QUEST_REWARD", name: "Kedoran Primus Kaulas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 1440, mDef: 1440, material: "Leather" }, -{ itemId: 639936, className: "LEG04_129_QUEST_REWARD", name: "Kedoran Primus Krisius Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, def: 1920, mDef: 960, material: "Iron" }, -{ itemId: 639937, className: "FOOT04_127_QUEST_REWARD", name: "Kedoran Primus Oksinis Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 640, mDef: 1280, material: "Cloth" }, -{ itemId: 639938, className: "FOOT04_128_QUEST_REWARD", name: "Kedoran Primus Kaulas Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 960, mDef: 960, material: "Leather" }, -{ itemId: 639939, className: "FOOT04_129_QUEST_REWARD", name: "Kedoran Primus Krisius Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, def: 1280, mDef: 640, material: "Iron" }, -{ itemId: 639940, className: "HAND04_128_QUEST_REWARD", name: "Kedoran Primus Oksinis Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 640, mDef: 1280, material: "Cloth" }, -{ itemId: 639941, className: "HAND04_129_QUEST_REWARD", name: "Kedoran Primus Kaulas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 960, mDef: 960, material: "Leather" }, -{ itemId: 639942, className: "HAND04_130_QUEST_REWARD", name: "Kedoran Primus Krisius Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, def: 1280, mDef: 640, material: "Iron" }, -{ itemId: 639943, className: "TOP04_130_QUEST_REWARD", name: "Kedoran Primus Irellis Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 1065, mDef: 2130, material: "Cloth" }, -{ itemId: 639944, className: "TOP04_131_QUEST_REWARD", name: "Kedoran Primus Jevenellis Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 1597, mDef: 1597, material: "Leather" }, -{ itemId: 639945, className: "TOP04_132_QUEST_REWARD", name: "Kedoran Primus Basticle Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, def: 2130, mDef: 1065, material: "Iron" }, -{ itemId: 639946, className: "LEG04_130_QUEST_REWARD", name: "Kedoran Primus Irellis Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 1065, mDef: 2130, material: "Cloth" }, -{ itemId: 639947, className: "LEG04_131_QUEST_REWARD", name: "Kedoran Primus Jevenellis Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 1597, mDef: 1597, material: "Leather" }, -{ itemId: 639948, className: "LEG04_132_QUEST_REWARD", name: "Kedoran Primus Basticle Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, def: 2130, mDef: 1065, material: "Iron" }, -{ itemId: 639949, className: "FOOT04_130_QUEST_REWARD", name: "Kedoran Primus Irellis Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 710, mDef: 1420, material: "Cloth" }, -{ itemId: 639950, className: "FOOT04_131_QUEST_REWARD", name: "Kedoran Primus Jevenellis Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 1065, mDef: 1065, material: "Leather" }, -{ itemId: 639951, className: "FOOT04_132_QUEST_REWARD", name: "Kedoran Primus Basticle Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, def: 1420, mDef: 710, material: "Iron" }, -{ itemId: 639952, className: "HAND04_131_QUEST_REWARD", name: "Kedoran Primus Irellis Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, def: 710, mDef: 1420, material: "Cloth" }, -{ itemId: 639953, className: "HAND04_132_QUEST_REWARD", name: "Kedoran Primus Jevenellis Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, def: 1065, mDef: 1065, material: "Leather" }, -{ itemId: 639954, className: "HAND04_133_QUEST_REWARD", name: "Kedoran Primus Basticle Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, def: 1420, mDef: 710, material: "Iron" }, -{ itemId: 639962, className: "SHD04_117_QUEST_REWARD", name: "Kedoran Primus Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 4860, mDef: 4860, material: "Shield" }, -{ itemId: 639971, className: "TOP04_142_QUEST_REWARD", name: "Kedoran Primus Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1215, mDef: 2430, material: "Cloth" }, -{ itemId: 639972, className: "TOP04_143_QUEST_REWARD", name: "Kedoran Primus Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1822, mDef: 1822, material: "Leather" }, -{ itemId: 639973, className: "TOP04_144_QUEST_REWARD", name: "Kedoran Primus Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 2430, mDef: 1215, material: "Iron" }, -{ itemId: 639974, className: "LEG04_142_QUEST_REWARD", name: "Kedoran Primus Pilgriste Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1215, mDef: 2430, material: "Cloth" }, -{ itemId: 639975, className: "LEG04_143_QUEST_REWARD", name: "Kedoran Primus Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1822, mDef: 1822, material: "Leather" }, -{ itemId: 639976, className: "LEG04_144_QUEST_REWARD", name: "Kedoran Primus Akmo Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 2430, mDef: 1215, material: "Iron" }, -{ itemId: 639977, className: "FOOT04_142_QUEST_REWARD", name: "Kedoran Primus Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 810, mDef: 1620, material: "Cloth" }, -{ itemId: 639978, className: "FOOT04_143_QUEST_REWARD", name: "Kedoran Primus Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1215, mDef: 1215, material: "Leather" }, -{ itemId: 639979, className: "FOOT04_144_QUEST_REWARD", name: "Kedoran Primus Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1620, mDef: 810, material: "Iron" }, -{ itemId: 639980, className: "HAND04_144_QUEST_REWARD", name: "Kedoran Primus Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 810, mDef: 1620, material: "Cloth" }, -{ itemId: 639981, className: "HAND04_145_QUEST_REWARD", name: "Kedoran Primus Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1215, mDef: 1215, material: "Leather" }, -{ itemId: 639982, className: "HAND04_146_QUEST_REWARD", name: "Kedoran Primus Akmo Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1620, mDef: 810, material: "Iron" }, +{ itemId: 639880, className: "SHD04_114_QUEST_REWARD", name: "Kedoran Zvaigzde Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Shield", minLevel: 380, equipExpGroup: "Equip", def: 4620, mDef: 4620, material: "Shield" }, +{ itemId: 639890, className: "TOP04_136_QUEST_REWARD", name: "Kedoran Planeta Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 2310, material: "Cloth" }, +{ itemId: 639892, className: "TOP04_137_QUEST_REWARD", name: "Kedoran Ukas Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 1732, mDef: 1732, material: "Leather" }, +{ itemId: 639893, className: "TOP04_138_QUEST_REWARD", name: "Kedoran Galaktikos Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Shirt", minLevel: 380, equipExpGroup: "Equip", def: 2310, mDef: 1155, material: "Iron" }, +{ itemId: 639894, className: "LEG04_136_QUEST_REWARD", name: "Kedoran Planeta Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 2310, material: "Cloth" }, +{ itemId: 639895, className: "LEG04_137_QUEST_REWARD", name: "Kedoran Ukas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 1732, mDef: 1732, material: "Leather" }, +{ itemId: 639896, className: "LEG04_138_QUEST_REWARD", name: "Kedoran Galaktikos Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 51291, sellPrice: 0, equipType1: "Pants", minLevel: 380, equipExpGroup: "Equip", def: 2310, mDef: 1155, material: "Iron" }, +{ itemId: 639897, className: "FOOT04_133_QUEST_REWARD", name: "Kedoran Planeta Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 770, mDef: 1540, material: "Cloth" }, +{ itemId: 639898, className: "FOOT04_134_QUEST_REWARD", name: "Kedoran Ukas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 1155, material: "Leather" }, +{ itemId: 639899, className: "FOOT04_135_QUEST_REWARD", name: "Kedoran Galaktikos Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Boots", minLevel: 380, equipExpGroup: "Equip", def: 1540, mDef: 770, material: "Iron" }, +{ itemId: 639900, className: "HAND04_137_QUEST_REWARD", name: "Kedoran Planeta Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 770, mDef: 1540, material: "Cloth" }, +{ itemId: 639901, className: "HAND04_138_QUEST_REWARD", name: "Kedoran Ukas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 1155, mDef: 1155, material: "Leather" }, +{ itemId: 639902, className: "HAND04_139_QUEST_REWARD", name: "Kedoran Galaktikos Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 25645, sellPrice: 0, equipType1: "Gloves", minLevel: 380, equipExpGroup: "Equip", def: 1540, mDef: 770, material: "Iron" }, +{ itemId: 639910, className: "SHD04_110_QUEST_REWARD", name: "Kedoran Primus Migantis Shield", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 24000, sellPrice: 0, equipType1: "Shield", minLevel: 270, equipExpGroup: "Equip", def: 3300, mDef: 3300, material: "Shield" }, +{ itemId: 639919, className: "TOP04_124_QUEST_REWARD", name: "Kedoran Primus Kalinis Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 825, mDef: 1650, material: "Cloth" }, +{ itemId: 639920, className: "TOP04_125_QUEST_REWARD", name: "Kedoran Primus Albinosas Leather Armor", type: "Equip", group: "Armor", weight: 160, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1237, mDef: 1237, material: "Leather" }, +{ itemId: 639921, className: "TOP04_126_QUEST_REWARD", name: "Kedoran Primus Tajtanas Plate Armor", type: "Equip", group: "Armor", weight: 230, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Shirt", minLevel: 270, equipExpGroup: "Equip", def: 1650, mDef: 825, material: "Iron" }, +{ itemId: 639922, className: "LEG04_124_QUEST_REWARD", name: "Kedoran Primus Kalinis Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 825, mDef: 1650, material: "Cloth" }, +{ itemId: 639923, className: "LEG04_125_QUEST_REWARD", name: "Kedoran Primus Albinosas Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1237, mDef: 1237, material: "Leather" }, +{ itemId: 639924, className: "LEG04_126_QUEST_REWARD", name: "Kedoran Primus Tajtanas Plate Pants", type: "Equip", group: "Armor", weight: 220, maxStack: 1, price: 36000, sellPrice: 0, equipType1: "Pants", minLevel: 270, equipExpGroup: "Equip", def: 1650, mDef: 825, material: "Iron" }, +{ itemId: 639925, className: "FOOT04_124_QUEST_REWARD", name: "Kedoran Primus Kalinis Boots", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 550, mDef: 1100, material: "Cloth" }, +{ itemId: 639926, className: "FOOT04_125_QUEST_REWARD", name: "Kedoran Primus Albinosas Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 825, mDef: 825, material: "Leather" }, +{ itemId: 639927, className: "FOOT04_126_QUEST_REWARD", name: "Kedoran Primus Tajtanas Greaves", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Boots", minLevel: 270, equipExpGroup: "Equip", def: 1100, mDef: 550, material: "Iron" }, +{ itemId: 639928, className: "HAND04_125_QUEST_REWARD", name: "Kedoran Primus Kalinis Gloves", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 550, mDef: 1100, material: "Cloth" }, +{ itemId: 639929, className: "HAND04_126_QUEST_REWARD", name: "Kedoran Primus Albinosas Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 825, mDef: 825, material: "Leather" }, +{ itemId: 639930, className: "HAND04_127_QUEST_REWARD", name: "Kedoran Primus Tajtanas Gauntlets", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 18000, sellPrice: 0, equipType1: "Gloves", minLevel: 270, equipExpGroup: "Equip", def: 1100, mDef: 550, material: "Iron" }, +{ itemId: 639931, className: "TOP04_127_QUEST_REWARD", name: "Kedoran Primus Oksinis Robe", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 960, mDef: 1920, material: "Cloth" }, +{ itemId: 639932, className: "TOP04_128_QUEST_REWARD", name: "Kedoran Primus Kaulas Leather Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1440, mDef: 1440, material: "Leather" }, +{ itemId: 639933, className: "TOP04_129_QUEST_REWARD", name: "Kedoran Primus Krisius Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Shirt", minLevel: 315, equipExpGroup: "Equip", def: 1920, mDef: 960, material: "Iron" }, +{ itemId: 639934, className: "LEG04_127_QUEST_REWARD", name: "Kedoran Primus Oksinis Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 960, mDef: 1920, material: "Cloth" }, +{ itemId: 639935, className: "LEG04_128_QUEST_REWARD", name: "Kedoran Primus Kaulas Leather Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1440, mDef: 1440, material: "Leather" }, +{ itemId: 639936, className: "LEG04_129_QUEST_REWARD", name: "Kedoran Primus Krisius Plate Pants", type: "Equip", group: "Armor", weight: 200, maxStack: 1, price: 43920, sellPrice: 0, equipType1: "Pants", minLevel: 315, equipExpGroup: "Equip", def: 1920, mDef: 960, material: "Iron" }, +{ itemId: 639937, className: "FOOT04_127_QUEST_REWARD", name: "Kedoran Primus Oksinis Boots", type: "Equip", group: "Armor", weight: 25, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 640, mDef: 1280, material: "Cloth" }, +{ itemId: 639938, className: "FOOT04_128_QUEST_REWARD", name: "Kedoran Primus Kaulas Leather Boots", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 960, mDef: 960, material: "Leather" }, +{ itemId: 639939, className: "FOOT04_129_QUEST_REWARD", name: "Kedoran Primus Krisius Greaves", type: "Equip", group: "Armor", weight: 60, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Boots", minLevel: 315, equipExpGroup: "Equip", def: 1280, mDef: 640, material: "Iron" }, +{ itemId: 639940, className: "HAND04_128_QUEST_REWARD", name: "Kedoran Primus Oksinis Gloves", type: "Equip", group: "Armor", weight: 20, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 640, mDef: 1280, material: "Cloth" }, +{ itemId: 639941, className: "HAND04_129_QUEST_REWARD", name: "Kedoran Primus Kaulas Leather Gloves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 960, mDef: 960, material: "Leather" }, +{ itemId: 639942, className: "HAND04_130_QUEST_REWARD", name: "Kedoran Primus Krisius Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 21960, sellPrice: 0, equipType1: "Gloves", minLevel: 315, equipExpGroup: "Equip", def: 1280, mDef: 640, material: "Iron" }, +{ itemId: 639943, className: "TOP04_130_QUEST_REWARD", name: "Kedoran Primus Irellis Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 1065, mDef: 2130, material: "Cloth" }, +{ itemId: 639944, className: "TOP04_131_QUEST_REWARD", name: "Kedoran Primus Jevenellis Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 1597, mDef: 1597, material: "Leather" }, +{ itemId: 639945, className: "TOP04_132_QUEST_REWARD", name: "Kedoran Primus Basticle Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Shirt", minLevel: 350, equipExpGroup: "Equip", def: 2130, mDef: 1065, material: "Iron" }, +{ itemId: 639946, className: "LEG04_130_QUEST_REWARD", name: "Kedoran Primus Irellis Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 1065, mDef: 2130, material: "Cloth" }, +{ itemId: 639947, className: "LEG04_131_QUEST_REWARD", name: "Kedoran Primus Jevenellis Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 1597, mDef: 1597, material: "Leather" }, +{ itemId: 639948, className: "LEG04_132_QUEST_REWARD", name: "Kedoran Primus Basticle Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 49919, sellPrice: 0, equipType1: "Pants", minLevel: 350, equipExpGroup: "Equip", def: 2130, mDef: 1065, material: "Iron" }, +{ itemId: 639949, className: "FOOT04_130_QUEST_REWARD", name: "Kedoran Primus Irellis Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 710, mDef: 1420, material: "Cloth" }, +{ itemId: 639950, className: "FOOT04_131_QUEST_REWARD", name: "Kedoran Primus Jevenellis Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 1065, mDef: 1065, material: "Leather" }, +{ itemId: 639951, className: "FOOT04_132_QUEST_REWARD", name: "Kedoran Primus Basticle Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Boots", minLevel: 350, equipExpGroup: "Equip", def: 1420, mDef: 710, material: "Iron" }, +{ itemId: 639952, className: "HAND04_131_QUEST_REWARD", name: "Kedoran Primus Irellis Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", def: 710, mDef: 1420, material: "Cloth" }, +{ itemId: 639953, className: "HAND04_132_QUEST_REWARD", name: "Kedoran Primus Jevenellis Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", def: 1065, mDef: 1065, material: "Leather" }, +{ itemId: 639954, className: "HAND04_133_QUEST_REWARD", name: "Kedoran Primus Basticle Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 24959, sellPrice: 0, equipType1: "Gloves", minLevel: 350, equipExpGroup: "Equip", def: 1420, mDef: 710, material: "Iron" }, +{ itemId: 639962, className: "SHD04_117_QUEST_REWARD", name: "Kedoran Primus Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 4860, mDef: 4860, material: "Shield" }, +{ itemId: 639971, className: "TOP04_142_QUEST_REWARD", name: "Kedoran Primus Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 2430, material: "Cloth" }, +{ itemId: 639972, className: "TOP04_143_QUEST_REWARD", name: "Kedoran Primus Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1822, mDef: 1822, material: "Leather" }, +{ itemId: 639973, className: "TOP04_144_QUEST_REWARD", name: "Kedoran Primus Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 2430, mDef: 1215, material: "Iron" }, +{ itemId: 639974, className: "LEG04_142_QUEST_REWARD", name: "Kedoran Primus Pilgriste Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 2430, material: "Cloth" }, +{ itemId: 639975, className: "LEG04_143_QUEST_REWARD", name: "Kedoran Primus Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1822, mDef: 1822, material: "Leather" }, +{ itemId: 639976, className: "LEG04_144_QUEST_REWARD", name: "Kedoran Primus Akmo Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 2430, mDef: 1215, material: "Iron" }, +{ itemId: 639977, className: "FOOT04_142_QUEST_REWARD", name: "Kedoran Primus Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 810, mDef: 1620, material: "Cloth" }, +{ itemId: 639978, className: "FOOT04_143_QUEST_REWARD", name: "Kedoran Primus Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 1215, material: "Leather" }, +{ itemId: 639979, className: "FOOT04_144_QUEST_REWARD", name: "Kedoran Primus Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1620, mDef: 810, material: "Iron" }, +{ itemId: 639980, className: "HAND04_144_QUEST_REWARD", name: "Kedoran Primus Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 810, mDef: 1620, material: "Cloth" }, +{ itemId: 639981, className: "HAND04_145_QUEST_REWARD", name: "Kedoran Primus Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1215, mDef: 1215, material: "Leather" }, +{ itemId: 639982, className: "HAND04_146_QUEST_REWARD", name: "Kedoran Primus Akmo Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1620, mDef: 810, material: "Iron" }, { itemId: 750000, className: "skintone1", name: "Basic Skin 1", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Skin", equipType2: "Premium", minLevel: 1, script: { strArg: "skintone1" } }, { itemId: 750001, className: "skintone2", name: "Basic Skin 2", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Skin", equipType2: "Premium", minLevel: 1, script: { strArg: "skintone2" } }, { itemId: 750002, className: "skintone3", name: "Basic Skin 3", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Skin", equipType2: "Premium", minLevel: 1, script: { strArg: "skintone3" } }, @@ -3434,21 +3434,21 @@ { itemId: 6360006, className: "Hat_628295_teamtrade", name: "[Event] Grey Cat Ears", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, { itemId: 6360007, className: "Hat_628073_teamtrade", name: "[Event] Fried Egg", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, { itemId: 6360111, className: "FOREVER_WEAPON_SHD100_102", name: "[4ever] Shield", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 92, mDef: 92, material: "Shield", script: { strArg: "Growth_Item_Legend" } }, -{ itemId: 6370110, className: "PVP_SHD04_122_1", name: "Vaivora Shield - Coordination (20 minutes)", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 5220, mDef: 5220, material: "Shield", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370117, className: "PVP_SHD04_122_2", name: "Vaivora Dagger - Shield (20 minutes)", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 5220, mDef: 5220, material: "Shield", script: { strArg: "pvp_Mine" } }, -{ itemId: 6530016, className: "EP11_SHD05_103", name: "[EP11] Savinose Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 6220, mDef: 6220, material: "Shield" }, -{ itemId: 6530017, className: "EP11_HAND05_107", name: "[EP11] Savinose Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1036, mDef: 2073, material: "Cloth" }, -{ itemId: 6530018, className: "EP11_FOOT05_107", name: "[EP11] Savinose Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1036, mDef: 2073, material: "Cloth" }, -{ itemId: 6530019, className: "EP11_LEG05_107", name: "[EP11] Savinose Pilgriste Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1555, mDef: 3110, material: "Cloth" }, -{ itemId: 6530020, className: "EP11_TOP05_107", name: "[EP11] Savinose Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1555, mDef: 3110, material: "Cloth" }, -{ itemId: 6530021, className: "EP11_HAND05_108", name: "[EP11] Savinose Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1555, mDef: 1555, material: "Leather" }, -{ itemId: 6530022, className: "EP11_FOOT05_108", name: "[EP11] Savinose Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1555, mDef: 1555, material: "Leather" }, -{ itemId: 6530023, className: "EP11_LEG05_108", name: "[EP11] Savinose Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 2332, mDef: 2332, material: "Leather" }, -{ itemId: 6530024, className: "EP11_TOP05_108", name: "[EP11] Savinose Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 2332, mDef: 2332, material: "Leather" }, -{ itemId: 6530025, className: "EP11_HAND05_109", name: "[EP11] Savinose Akmo Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 2073, mDef: 1036, material: "Iron" }, -{ itemId: 6530026, className: "EP11_FOOT05_109", name: "[EP11] Savinose Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 2073, mDef: 1036, material: "Iron" }, -{ itemId: 6530027, className: "EP11_LEG05_109", name: "[EP11] Savinose Akmo Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 3110, mDef: 1555, material: "Iron" }, -{ itemId: 6530028, className: "EP11_TOP05_109", name: "[EP11] Savinose Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 3110, mDef: 1555, material: "Iron" }, +{ itemId: 6370110, className: "PVP_SHD04_122_1", name: "Vaivora Shield - Coordination (20 minutes)", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 5220, mDef: 5220, material: "Shield", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370117, className: "PVP_SHD04_122_2", name: "Vaivora Dagger - Shield (20 minutes)", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 5220, mDef: 5220, material: "Shield", script: { strArg: "pvp_Mine" } }, +{ itemId: 6530016, className: "EP11_SHD05_103", name: "[EP11] Savinose Legva Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 6220, mDef: 6220, material: "Shield" }, +{ itemId: 6530017, className: "EP11_HAND05_107", name: "[EP11] Savinose Pilgriste Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth" }, +{ itemId: 6530018, className: "EP11_FOOT05_107", name: "[EP11] Savinose Pilgriste Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth" }, +{ itemId: 6530019, className: "EP11_LEG05_107", name: "[EP11] Savinose Pilgriste Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth" }, +{ itemId: 6530020, className: "EP11_TOP05_107", name: "[EP11] Savinose Pilgriste Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth" }, +{ itemId: 6530021, className: "EP11_HAND05_108", name: "[EP11] Savinose Vymedzai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather" }, +{ itemId: 6530022, className: "EP11_FOOT05_108", name: "[EP11] Savinose Vymedzai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather" }, +{ itemId: 6530023, className: "EP11_LEG05_108", name: "[EP11] Savinose Vymedzai Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather" }, +{ itemId: 6530024, className: "EP11_TOP05_108", name: "[EP11] Savinose Vymedzai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather" }, +{ itemId: 6530025, className: "EP11_HAND05_109", name: "[EP11] Savinose Akmo Gauntlets", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron" }, +{ itemId: 6530026, className: "EP11_FOOT05_109", name: "[EP11] Savinose Akmo Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron" }, +{ itemId: 6530027, className: "EP11_LEG05_109", name: "[EP11] Savinose Akmo Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron" }, +{ itemId: 6530028, className: "EP11_TOP05_109", name: "[EP11] Savinose Akmo Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron" }, { itemId: 6530030, className: "test_dynamic", name: "Test item", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Outer", minLevel: 1 }, { itemId: 9999993, className: "NoWeapon_Shield", name: "Empty_weapon", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0 }, { itemId: 10003143, className: "Event_Roulette_Glacier_box_2", name: "[Event] Glacia Unique Armor Selection Box", type: "Consume", group: "Armor", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { numArg1: 1 } }, @@ -3459,57 +3459,57 @@ { itemId: 10300047, className: "EVENT_Hat_629504", name: "Blue Beret", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, { itemId: 10300048, className: "EVENT_accessory_snowflower", name: "Snowflake Hairpin", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, { itemId: 10300069, className: "accessory_6th_glasses", name: "[Event] 6th Anniversary Sunglasses", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, -{ itemId: 10304000, className: "Event_NECK04_118", name: "[Event] Abyss Irredian Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, minAtk: 216, maxAtk: 216, mAtk: 216, addMaxAtk: 235 }, -{ itemId: 10304001, className: "Event_NECK04_119", name: "[Event] Cevisa Irredian Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, minAtk: 216, maxAtk: 216, mAtk: 216, addDef: 432 }, -{ itemId: 10304002, className: "Event_BRC04_118", name: "[Event] Abyss Irredian Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 34194, sellPrice: 4780, equipType1: "Ring", minLevel: 380, minAtk: 216, maxAtk: 216, mAtk: 216 }, -{ itemId: 10304003, className: "Event_BRC04_119", name: "[Event] Cevisa Irredian Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 34194, sellPrice: 4780, equipType1: "Ring", minLevel: 380, minAtk: 216, maxAtk: 216, mAtk: 216, addMDef: 235 }, -{ itemId: 10304004, className: "2020_ARBORDAY_NECK05", name: "2020 Botanic Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 110, maxAtk: 110, mAtk: 110, script: { strArg: "Arborday" } }, -{ itemId: 10304005, className: "2020_ARBORDAY_BRC05", name: "2020 Botanic Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, minAtk: 110, maxAtk: 110, mAtk: 110, script: { strArg: "Arborday" } }, -{ itemId: 10304006, className: "2021_ARBORDAY_NECK05", name: "2021 Botanic Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 121, maxAtk: 121, mAtk: 121, script: { strArg: "Arborday" } }, -{ itemId: 10304007, className: "2021_ARBORDAY_BRC05", name: "2021 Botanic Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, minAtk: 121, maxAtk: 121, mAtk: 121, script: { strArg: "Arborday" } }, -{ itemId: 10304162, className: "Event_Growth_Neck", name: "[Growth] Necklace", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, minAtk: 4, maxAtk: 4, mAtk: 4, script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, -{ itemId: 10304163, className: "Event_Growth_Brc", name: "[Growth] Bracelet", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, minAtk: 4, maxAtk: 4, mAtk: 4, script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, -{ itemId: 10306016, className: "Event_SHD05_104_Roulette", name: "[Event] Skiaclipse Varna Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 6220, mDef: 6220, material: "Shield" }, -{ itemId: 10306017, className: "Event_TOP05_111_Roulette", name: "[Event] Skiaclipse Varna Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 1555, mDef: 3110, material: "Cloth" }, -{ itemId: 10306018, className: "Event_TOP05_112_Roulette", name: "[Event] Skiaclipse Varna Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 2332, mDef: 2332, material: "Leather" }, -{ itemId: 10306019, className: "Event_TOP05_110_Roulette", name: "[Event] Skiaclipse Varna Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, def: 3110, mDef: 1555, material: "Iron" }, -{ itemId: 10306020, className: "Event_LEG05_112_Roulette", name: "[Event] Skiaclipse Varna Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 1555, mDef: 3110, material: "Cloth" }, -{ itemId: 10306021, className: "Event_LEG05_111_Roulette", name: "[Event] Skiaclipse Varna Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 2332, mDef: 2332, material: "Leather" }, -{ itemId: 10306022, className: "Event_LEG05_110_Roulette", name: "[Event] Skiaclipse Varna Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, def: 3110, mDef: 1555, material: "Iron" }, -{ itemId: 10306023, className: "Event_FOOT05_112_Roulette", name: "[Event] Skiaclipse Varna Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1036, mDef: 2073, material: "Cloth" }, -{ itemId: 10306024, className: "Event_FOOT05_111_Roulette", name: "[Event] Skiaclipse Varna Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 1555, mDef: 1555, material: "Leather" }, -{ itemId: 10306025, className: "Event_FOOT05_110_Roulette", name: "[Event] Skiaclipse Varna Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, def: 2073, mDef: 1036, material: "Iron" }, -{ itemId: 10306026, className: "Event_HAND05_112_Roulette", name: "[Event] Skiaclipse Varna Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1036, mDef: 2073, material: "Cloth" }, -{ itemId: 10306027, className: "Event_HAND05_111_Roulette", name: "[Event] Skiaclipse Varna Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 1555, mDef: 1555, material: "Leather" }, -{ itemId: 10306028, className: "Event_HAND05_110_Roulette", name: "[Event] Skiaclipse Varna Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, def: 2073, mDef: 1036, material: "Iron" }, -{ itemId: 10306029, className: "Event_EP12_FIELD_TOP_001", name: "[Event] Savinose Dysnai Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth" }, -{ itemId: 10306030, className: "Event_EP12_FIELD_TOP_002", name: "[Event] Savinose Dysnai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 3075, mDef: 3075, material: "Leather" }, -{ itemId: 10306031, className: "Event_EP12_FIELD_TOP_003", name: "[Event] Savinose Dysnai Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 4101, mDef: 2050, material: "Iron" }, -{ itemId: 10306032, className: "Event_EP12_FIELD_LEG_001", name: "[Event] Savinose Dysnai Pants ", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth" }, -{ itemId: 10306033, className: "Event_EP12_FIELD_LEG_002", name: "[Event] Savinose Dysnai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 3075, mDef: 3075, material: "Leather" }, -{ itemId: 10306034, className: "Event_EP12_FIELD_LEG_003", name: "[Event] Savinose Dysnai Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 4101, mDef: 2050, material: "Iron" }, -{ itemId: 10306035, className: "Event_EP12_FIELD_FOOT_001", name: "[Event] Savinose Dysnai Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth" }, -{ itemId: 10306036, className: "Event_EP12_FIELD_FOOT_002", name: "[Event] Savinose Dysnai Leather Boots ", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2050, mDef: 2050, material: "Leather" }, -{ itemId: 10306037, className: "Event_EP12_FIELD_FOOT_003", name: "[Event] Savinose Dysnai Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2734, mDef: 1367, material: "Iron" }, -{ itemId: 10306038, className: "Event_EP12_FIELD_HAND_001", name: "[Event] Savinose Dysnai Gloves ", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth" }, -{ itemId: 10306039, className: "Event_EP12_FIELD_HAND_002", name: "[Event] Savinose Dysnai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2050, mDef: 2050, material: "Leather" }, -{ itemId: 10306040, className: "Event_EP12_FIELD_HAND_003", name: "[Event] Savinose Dysnai Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2734, mDef: 1367, material: "Iron" }, -{ itemId: 10306048, className: "Event_EP12_FIELD_SHIELD", name: "[Event] Savinose Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, def: 7382, mDef: 7382, material: "Shield" }, -{ itemId: 10306058, className: "Event2_EP12_FIELD_TOP_001", name: "[Event] Savinose Dysnai Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth" }, -{ itemId: 10306059, className: "Event2_EP12_FIELD_TOP_002", name: "[Event] Savinose Dysnai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 3075, mDef: 3075, material: "Leather" }, -{ itemId: 10306060, className: "Event2_EP12_FIELD_TOP_003", name: "[Event] Savinose Dysnai Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 4101, mDef: 2050, material: "Iron" }, -{ itemId: 10306061, className: "Event2_EP12_FIELD_LEG_001", name: "[Event] Savinose Dysnai Pants ", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth" }, -{ itemId: 10306062, className: "Event2_EP12_FIELD_LEG_002", name: "[Event] Savinose Dysnai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 3075, mDef: 3075, material: "Leather" }, -{ itemId: 10306063, className: "Event2_EP12_FIELD_LEG_003", name: "[Event] Savinose Dysnai Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 4101, mDef: 2050, material: "Iron" }, -{ itemId: 10306064, className: "Event2_EP12_FIELD_FOOT_001", name: "[Event] Savinose Dysnai Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth" }, -{ itemId: 10306065, className: "Event2_EP12_FIELD_FOOT_002", name: "[Event] Savinose Dysnai Leather Boots ", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2050, mDef: 2050, material: "Leather" }, -{ itemId: 10306066, className: "Event2_EP12_FIELD_FOOT_003", name: "[Event] Savinose Dysnai Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2734, mDef: 1367, material: "Iron" }, -{ itemId: 10306067, className: "Event2_EP12_FIELD_HAND_001", name: "[Event] Savinose Dysnai Gloves ", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth" }, -{ itemId: 10306068, className: "Event2_EP12_FIELD_HAND_002", name: "[Event] Savinose Dysnai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2050, mDef: 2050, material: "Leather" }, -{ itemId: 10306069, className: "Event2_EP12_FIELD_HAND_003", name: "[Event] Savinose Dysnai Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2734, mDef: 1367, material: "Iron" }, -{ itemId: 10306077, className: "Event2_EP12_FIELD_SHIELD", name: "[Event] Savinose Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, def: 7382, mDef: 7382, material: "Shield" }, -{ itemId: 10306094, className: "Event_EP12_RAID_SHIELD", name: "[Event] Glacia Legenda Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, def: 7382, mDef: 7382, material: "Shield", script: { strArg: "Legenda" } }, -{ itemId: 10306123, className: "Event_EP12_RAID_SHIELD_2", name: "[Event] Glacia Legenda Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, def: 7382, mDef: 7382, material: "Shield", script: { strArg: "Legenda" } }, +{ itemId: 10304000, className: "Event_NECK04_118", name: "[Event] Abyss Irredian Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, equipExpGroup: "Equip", minAtk: 216, maxAtk: 216, mAtk: 216, addMaxAtk: 235 }, +{ itemId: 10304001, className: "Event_NECK04_119", name: "[Event] Cevisa Irredian Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Neck", minLevel: 380, equipExpGroup: "Equip", minAtk: 216, maxAtk: 216, mAtk: 216, addDef: 432 }, +{ itemId: 10304002, className: "Event_BRC04_118", name: "[Event] Abyss Irredian Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 34194, sellPrice: 4780, equipType1: "Ring", minLevel: 380, equipExpGroup: "Equip", minAtk: 216, maxAtk: 216, mAtk: 216 }, +{ itemId: 10304003, className: "Event_BRC04_119", name: "[Event] Cevisa Irredian Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 34194, sellPrice: 4780, equipType1: "Ring", minLevel: 380, equipExpGroup: "Equip", minAtk: 216, maxAtk: 216, mAtk: 216, addMDef: 235 }, +{ itemId: 10304004, className: "2020_ARBORDAY_NECK05", name: "2020 Botanic Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 110, maxAtk: 110, mAtk: 110, script: { strArg: "Arborday" } }, +{ itemId: 10304005, className: "2020_ARBORDAY_BRC05", name: "2020 Botanic Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 110, maxAtk: 110, mAtk: 110, script: { strArg: "Arborday" } }, +{ itemId: 10304006, className: "2021_ARBORDAY_NECK05", name: "2021 Botanic Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 121, maxAtk: 121, mAtk: 121, script: { strArg: "Arborday" } }, +{ itemId: 10304007, className: "2021_ARBORDAY_BRC05", name: "2021 Botanic Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 121, maxAtk: 121, mAtk: 121, script: { strArg: "Arborday" } }, +{ itemId: 10304162, className: "Event_Growth_Neck", name: "[Growth] Necklace", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", minAtk: 4, maxAtk: 4, mAtk: 4, script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, +{ itemId: 10304163, className: "Event_Growth_Brc", name: "[Growth] Bracelet", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 4, maxAtk: 4, mAtk: 4, script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, +{ itemId: 10306016, className: "Event_SHD05_104_Roulette", name: "[Event] Skiaclipse Varna Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 6220, mDef: 6220, material: "Shield" }, +{ itemId: 10306017, className: "Event_TOP05_111_Roulette", name: "[Event] Skiaclipse Varna Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth" }, +{ itemId: 10306018, className: "Event_TOP05_112_Roulette", name: "[Event] Skiaclipse Varna Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather" }, +{ itemId: 10306019, className: "Event_TOP05_110_Roulette", name: "[Event] Skiaclipse Varna Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Shirt", minLevel: 400, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron" }, +{ itemId: 10306020, className: "Event_LEG05_112_Roulette", name: "[Event] Skiaclipse Varna Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 3110, material: "Cloth" }, +{ itemId: 10306021, className: "Event_LEG05_111_Roulette", name: "[Event] Skiaclipse Varna Leather Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 2332, mDef: 2332, material: "Leather" }, +{ itemId: 10306022, className: "Event_LEG05_110_Roulette", name: "[Event] Skiaclipse Varna Plate Pants", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 58148, sellPrice: 0, equipType1: "Pants", minLevel: 400, equipExpGroup: "Equip", def: 3110, mDef: 1555, material: "Iron" }, +{ itemId: 10306023, className: "Event_FOOT05_112_Roulette", name: "[Event] Skiaclipse Varna Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth" }, +{ itemId: 10306024, className: "Event_FOOT05_111_Roulette", name: "[Event] Skiaclipse Varna Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather" }, +{ itemId: 10306025, className: "Event_FOOT05_110_Roulette", name: "[Event] Skiaclipse Varna Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Boots", minLevel: 400, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron" }, +{ itemId: 10306026, className: "Event_HAND05_112_Roulette", name: "[Event] Skiaclipse Varna Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1036, mDef: 2073, material: "Cloth" }, +{ itemId: 10306027, className: "Event_HAND05_111_Roulette", name: "[Event] Skiaclipse Varna Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 1555, mDef: 1555, material: "Leather" }, +{ itemId: 10306028, className: "Event_HAND05_110_Roulette", name: "[Event] Skiaclipse Varna Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29074, sellPrice: 0, equipType1: "Gloves", minLevel: 400, equipExpGroup: "Equip", def: 2073, mDef: 1036, material: "Iron" }, +{ itemId: 10306029, className: "Event_EP12_FIELD_TOP_001", name: "[Event] Savinose Dysnai Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth" }, +{ itemId: 10306030, className: "Event_EP12_FIELD_TOP_002", name: "[Event] Savinose Dysnai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather" }, +{ itemId: 10306031, className: "Event_EP12_FIELD_TOP_003", name: "[Event] Savinose Dysnai Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron" }, +{ itemId: 10306032, className: "Event_EP12_FIELD_LEG_001", name: "[Event] Savinose Dysnai Pants ", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth" }, +{ itemId: 10306033, className: "Event_EP12_FIELD_LEG_002", name: "[Event] Savinose Dysnai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather" }, +{ itemId: 10306034, className: "Event_EP12_FIELD_LEG_003", name: "[Event] Savinose Dysnai Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron" }, +{ itemId: 10306035, className: "Event_EP12_FIELD_FOOT_001", name: "[Event] Savinose Dysnai Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth" }, +{ itemId: 10306036, className: "Event_EP12_FIELD_FOOT_002", name: "[Event] Savinose Dysnai Leather Boots ", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather" }, +{ itemId: 10306037, className: "Event_EP12_FIELD_FOOT_003", name: "[Event] Savinose Dysnai Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron" }, +{ itemId: 10306038, className: "Event_EP12_FIELD_HAND_001", name: "[Event] Savinose Dysnai Gloves ", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth" }, +{ itemId: 10306039, className: "Event_EP12_FIELD_HAND_002", name: "[Event] Savinose Dysnai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather" }, +{ itemId: 10306040, className: "Event_EP12_FIELD_HAND_003", name: "[Event] Savinose Dysnai Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron" }, +{ itemId: 10306048, className: "Event_EP12_FIELD_SHIELD", name: "[Event] Savinose Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, equipExpGroup: "Equip", def: 7382, mDef: 7382, material: "Shield" }, +{ itemId: 10306058, className: "Event2_EP12_FIELD_TOP_001", name: "[Event] Savinose Dysnai Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth" }, +{ itemId: 10306059, className: "Event2_EP12_FIELD_TOP_002", name: "[Event] Savinose Dysnai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather" }, +{ itemId: 10306060, className: "Event2_EP12_FIELD_TOP_003", name: "[Event] Savinose Dysnai Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron" }, +{ itemId: 10306061, className: "Event2_EP12_FIELD_LEG_001", name: "[Event] Savinose Dysnai Pants ", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth" }, +{ itemId: 10306062, className: "Event2_EP12_FIELD_LEG_002", name: "[Event] Savinose Dysnai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather" }, +{ itemId: 10306063, className: "Event2_EP12_FIELD_LEG_003", name: "[Event] Savinose Dysnai Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron" }, +{ itemId: 10306064, className: "Event2_EP12_FIELD_FOOT_001", name: "[Event] Savinose Dysnai Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth" }, +{ itemId: 10306065, className: "Event2_EP12_FIELD_FOOT_002", name: "[Event] Savinose Dysnai Leather Boots ", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather" }, +{ itemId: 10306066, className: "Event2_EP12_FIELD_FOOT_003", name: "[Event] Savinose Dysnai Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron" }, +{ itemId: 10306067, className: "Event2_EP12_FIELD_HAND_001", name: "[Event] Savinose Dysnai Gloves ", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth" }, +{ itemId: 10306068, className: "Event2_EP12_FIELD_HAND_002", name: "[Event] Savinose Dysnai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather" }, +{ itemId: 10306069, className: "Event2_EP12_FIELD_HAND_003", name: "[Event] Savinose Dysnai Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron" }, +{ itemId: 10306077, className: "Event2_EP12_FIELD_SHIELD", name: "[Event] Savinose Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, equipExpGroup: "Equip", def: 7382, mDef: 7382, material: "Shield" }, +{ itemId: 10306094, className: "Event_EP12_RAID_SHIELD", name: "[Event] Glacia Legenda Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, equipExpGroup: "Equip", def: 7382, mDef: 7382, material: "Shield", script: { strArg: "Legenda" } }, +{ itemId: 10306123, className: "Event_EP12_RAID_SHIELD_2", name: "[Event] Glacia Legenda Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, equipExpGroup: "Equip", def: 7382, mDef: 7382, material: "Shield", script: { strArg: "Legenda" } }, { itemId: 10306143, className: "Event_Growth_Leather_Shirt", name: "[Growth] Leather Armor", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Shirt", minLevel: 1, def: 34, mDef: 34, material: "Leather", script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, { itemId: 10306144, className: "Event_Growth_Leather_Pants", name: "[Growth] Leather Pants", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Pants", minLevel: 1, def: 34, mDef: 34, material: "Leather", script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, { itemId: 10306145, className: "Event_Growth_Leather_Boots", name: "[Growth] Leather Boots", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Boots", minLevel: 1, def: 23, mDef: 23, material: "Leather", script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, @@ -3525,148 +3525,148 @@ { itemId: 10306155, className: "Event_Growth_Shield", name: "[Growth] Shield", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 92, mDef: 92, material: "Shield", script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, { itemId: 10308000, className: "Event_Shine_Bamboo_Leaf", name: "[Event] Shining Bamboo Leaves", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Ring", minLevel: 430 }, { itemId: 10308001, className: "Event_Lucky_Bamboo_Leaf", name: "[Event] Lucky Bamboo Leaves", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Ring", minLevel: 430 }, -{ itemId: 10310035, className: "SHD04_119_Ev", name: "[Event] Moringponia Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 4860, mDef: 4860, material: "Shield" }, -{ itemId: 10310036, className: "SHD04_120_Ev", name: "[Event] Misrus Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 4860, mDef: 4860, material: "Shield" }, -{ itemId: 10310053, className: "SHD_Galimybe", name: "Galimive Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Shield", minLevel: 430, def: 5220, mDef: 5220, material: "Shield" }, -{ itemId: 10310088, className: "SHD04_119_Ev_2", name: "[Event] Moringponia Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 4860, mDef: 4860, material: "Shield" }, -{ itemId: 10310089, className: "SHD04_120_Ev_2", name: "[Event] Misrus Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, def: 4860, mDef: 4860, material: "Shield" }, -{ itemId: 10312001, className: "Tuto_icor_1", name: "[Tutorial] Training Top", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Shirt", minLevel: 1, def: 27, mDef: 27, material: "Leather", script: { strArg: "Tutorial" } }, -{ itemId: 10312002, className: "Tuto_icor_2", name: "[Tutorial] Training Bottom", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Pants", minLevel: 1, def: 27, mDef: 27, material: "Leather", script: { strArg: "Tutorial" } }, -{ itemId: 10312003, className: "Tuto_icor_3", name: "[Tutorial] Training Shoes", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Boots", minLevel: 1, def: 18, mDef: 18, material: "Leather", script: { strArg: "Tutorial" } }, +{ itemId: 10310035, className: "SHD04_119_Ev", name: "[Event] Moringponia Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 4860, mDef: 4860, material: "Shield" }, +{ itemId: 10310036, className: "SHD04_120_Ev", name: "[Event] Misrus Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 4860, mDef: 4860, material: "Shield" }, +{ itemId: 10310053, className: "SHD_Galimybe", name: "Galimive Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Shield", minLevel: 430, equipExpGroup: "Equip", def: 5220, mDef: 5220, material: "Shield" }, +{ itemId: 10310088, className: "SHD04_119_Ev_2", name: "[Event] Moringponia Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 4860, mDef: 4860, material: "Shield" }, +{ itemId: 10310089, className: "SHD04_120_Ev_2", name: "[Event] Misrus Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Shield", minLevel: 400, equipExpGroup: "Equip", def: 4860, mDef: 4860, material: "Shield" }, +{ itemId: 10312001, className: "Tuto_icor_1", name: "[Tutorial] Training Top", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 27, mDef: 27, material: "Leather", script: { strArg: "Tutorial" } }, +{ itemId: 10312002, className: "Tuto_icor_2", name: "[Tutorial] Training Bottom", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Pants", minLevel: 1, equipExpGroup: "Equip", def: 27, mDef: 27, material: "Leather", script: { strArg: "Tutorial" } }, +{ itemId: 10312003, className: "Tuto_icor_3", name: "[Tutorial] Training Shoes", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 18, mDef: 18, material: "Leather", script: { strArg: "Tutorial" } }, { itemId: 10315000, className: "E_Lucky_Artefact_631001", name: "[Lucky Break] Lucky Four Leaf Clover", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Ring", minLevel: 1 }, -{ itemId: 10800001, className: "Episode12_EP12_FIELD_TOP_001", name: "[EP12] Savinose Dysnai Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth" }, -{ itemId: 10800002, className: "Episode12_EP12_FIELD_TOP_002", name: "[EP12] Savinose Dysnai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 3075, mDef: 3075, material: "Leather" }, -{ itemId: 10800003, className: "Episode12_EP12_FIELD_TOP_003", name: "[EP12] Savinose Dysnai Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 4101, mDef: 2050, material: "Iron" }, -{ itemId: 10800004, className: "Episode12_EP12_FIELD_LEG_001", name: "[EP12] Savinose Dysnai Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth" }, -{ itemId: 10800005, className: "Episode12_EP12_FIELD_LEG_002", name: "[EP12] Savinose Dysnai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 3075, mDef: 3075, material: "Leather" }, -{ itemId: 10800006, className: "Episode12_EP12_FIELD_LEG_003", name: "[EP12] Savinose Dysnai Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 4101, mDef: 2050, material: "Iron" }, -{ itemId: 10800007, className: "Episode12_EP12_FIELD_FOOT_001", name: "[EP12] Savinose Dysnai Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth" }, -{ itemId: 10800008, className: "Episode12_EP12_FIELD_FOOT_002", name: "[EP12] Savinose Dysnai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2050, mDef: 2050, material: "Leather" }, -{ itemId: 10800009, className: "Episode12_EP12_FIELD_FOOT_003", name: "[EP12] Savinose Dysnai Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2734, mDef: 1367, material: "Iron" }, -{ itemId: 10800010, className: "Episode12_EP12_FIELD_HAND_001", name: "[EP12] Savinose Dysnai Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth" }, -{ itemId: 10800011, className: "Episode12_EP12_FIELD_HAND_002", name: "[EP12] Savinose Dysnai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2050, mDef: 2050, material: "Leather" }, -{ itemId: 10800012, className: "Episode12_EP12_FIELD_HAND_003", name: "[EP12] Savinose Dysnai Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2734, mDef: 1367, material: "Iron" }, -{ itemId: 10800020, className: "Episode12_EP12_FIELD_SHIELD", name: "[EP12] Savinose Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, def: 7382, mDef: 7382, material: "Shield" }, -{ itemId: 10800030, className: "2021_NewYear_EP12_FIELD_TOP_001", name: "[2021] Savinose Dysnai Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth" }, -{ itemId: 10800031, className: "2021_NewYear_EP12_FIELD_TOP_002", name: "[2021] Savinose Dysnai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 3075, mDef: 3075, material: "Leather" }, -{ itemId: 10800032, className: "2021_NewYear_EP12_FIELD_TOP_003", name: "[2021] Savinose Dysnai Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 4101, mDef: 2050, material: "Iron" }, -{ itemId: 10800033, className: "2021_NewYear_EP12_FIELD_LEG_001", name: "[2021] Savinose Dysnai Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth" }, -{ itemId: 10800034, className: "2021_NewYear_EP12_FIELD_LEG_002", name: "[2021] Savinose Dysnai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 3075, mDef: 3075, material: "Leather" }, -{ itemId: 10800035, className: "2021_NewYear_EP12_FIELD_LEG_003", name: "[2021] Savinose Dysnai Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 4101, mDef: 2050, material: "Iron" }, -{ itemId: 10800036, className: "2021_NewYear_EP12_FIELD_FOOT_001", name: "[2021] Savinose Dysnai Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth" }, -{ itemId: 10800037, className: "2021_NewYear_EP12_FIELD_FOOT_002", name: "[2021] Savinose Dysnai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2050, mDef: 2050, material: "Leather" }, -{ itemId: 10800038, className: "2021_NewYear_EP12_FIELD_FOOT_003", name: "[2021] Savinose Dysnai Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2734, mDef: 1367, material: "Iron" }, -{ itemId: 10800039, className: "2021_NewYear_EP12_FIELD_HAND_001", name: "[2021] Savinose Dysnai Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth" }, -{ itemId: 10800040, className: "2021_NewYear_EP12_FIELD_HAND_002", name: "[2021] Savinose Dysnai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2050, mDef: 2050, material: "Leather" }, -{ itemId: 10800041, className: "2021_NewYear_EP12_FIELD_HAND_003", name: "[2021] Savinose Dysnai Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2734, mDef: 1367, material: "Iron" }, -{ itemId: 10800049, className: "2021_NewYear_EP12_FIELD_SHIELD", name: "[2021] Savinose Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, def: 7382, mDef: 7382, material: "Shield" }, -{ itemId: 10999008, className: "TOSHero_SHIELD", name: "Shield", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, minAtk: 1000, maxAtk: 1000, mAtk: 1000, def: 1000, mDef: 1000, script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999018, className: "TOSHero_NECK_AS", name: "Tiplante's Necklace", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, script: { strArg: "TOSHeroEquipNeck" } }, -{ itemId: 10999019, className: "TOSHero_NECK_AA", name: "Gaulim's Necklace", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, script: { strArg: "TOSHeroEquipNeck" } }, -{ itemId: 10999020, className: "TOSHero_NECK_MB", name: "Nemetria's Necklace", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, script: { strArg: "TOSHeroEquipNeck" } }, -{ itemId: 10999021, className: "TOSHero_NECK_MS", name: "Hroki's Necklace", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, script: { strArg: "TOSHeroEquipNeck" } }, -{ itemId: 10999022, className: "TOSHero_NECK_PT", name: "Winata's Necklace", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, script: { strArg: "TOSHeroEquipNeck" } }, -{ itemId: 11000000, className: "EP12_NECK05_HIGH_001", name: "Karaliene Juoda Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, -{ itemId: 11000001, className: "EP12_NECK05_HIGH_002", name: "Karaliene Isgarinti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, -{ itemId: 11000002, className: "EP12_NECK05_HIGH_003", name: "Karaliene Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, addDef: 2500, script: { strArg: "Acc_EP12" } }, -{ itemId: 11000003, className: "EP12_NECK05_HIGH_004", name: "Karaliene Vargeras Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, addMDef: 2500, script: { strArg: "Acc_EP12" } }, -{ itemId: 11000004, className: "EP12_NECK05_HIGH_005", name: "Karaliene Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, middleSizeBonus: 1500, script: { strArg: "Acc_EP12" } }, -{ itemId: 11000005, className: "EP12_NECK05_HIGH_006", name: "Karaliene Triukas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, -{ itemId: 11000006, className: "EP12_NECK05_HIGH_007", name: "Karaliene Prideti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, -{ itemId: 11000007, className: "EP12_NECK05_LOW_001", name: "Incomplete Karaliene Juoda Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, -{ itemId: 11000008, className: "EP12_NECK05_LOW_002", name: "Incomplete Karaliene Isgarinti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, -{ itemId: 11000009, className: "EP12_NECK05_LOW_003", name: "Incomplete Karaliene Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, addDef: 1800, script: { strArg: "Half_Acc_EP12" } }, -{ itemId: 11000010, className: "EP12_NECK05_LOW_004", name: "Incomplete Karaliene Vargeras Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, addMDef: 1800, script: { strArg: "Half_Acc_EP12" } }, -{ itemId: 11000011, className: "EP12_NECK05_LOW_005", name: "Incomplete Karaliene Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, middleSizeBonus: 1400, script: { strArg: "Half_Acc_EP12" } }, -{ itemId: 11000012, className: "EP12_NECK05_LOW_006", name: "Incomplete Karaliene Triukas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, -{ itemId: 11000013, className: "EP12_NECK05_LOW_007", name: "Incomplete Karaliene Prideti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, -{ itemId: 11000014, className: "EP12_NECK06_HIGH_001", name: "Luciferie Juoda Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Neck", minLevel: 450, minAtk: 360, maxAtk: 360, mAtk: 360, script: { strArg: "Luciferi" } }, -{ itemId: 11000015, className: "EP12_NECK06_HIGH_002", name: "Luciferie Isgarinti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Neck", minLevel: 450, minAtk: 360, maxAtk: 360, mAtk: 360, script: { strArg: "Luciferi" } }, -{ itemId: 11000016, className: "EP12_NECK06_HIGH_003", name: "Luciferie Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Neck", minLevel: 450, minAtk: 360, maxAtk: 360, mAtk: 360, addDef: 2750, addMDef: 2750, script: { strArg: "Luciferi" } }, -{ itemId: 11000017, className: "EP12_NECK06_HIGH_004", name: "Luciferie Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Neck", minLevel: 450, minAtk: 360, maxAtk: 360, mAtk: 360, middleSizeBonus: 1500, script: { strArg: "Luciferi" } }, -{ itemId: 11000018, className: "EP12_NECK06_HIGH_005", name: "Luciferie Triukas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Neck", minLevel: 450, minAtk: 360, maxAtk: 360, mAtk: 360, middleSizeBonus: 1500, script: { strArg: "Luciferi" } }, -{ itemId: 11000019, className: "EP12_NECK06_HIGH_006", name: "Luciferie Prideti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Neck", minLevel: 450, minAtk: 360, maxAtk: 360, mAtk: 360, script: { strArg: "Luciferi" } }, -{ itemId: 11001001, className: "EP12_BRC05_HIGH_001", name: "Karaliene Juoda Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, -{ itemId: 11001002, className: "EP12_BRC05_HIGH_002", name: "Karaliene Isgarinti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, -{ itemId: 11001003, className: "EP12_BRC05_HIGH_003", name: "Karaliene Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 6655, equipType1: "Ring", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, addDef: 1250, script: { strArg: "Acc_EP12" } }, -{ itemId: 11001004, className: "EP12_BRC05_HIGH_004", name: "Karaliene Vargeras Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 6655, equipType1: "Ring", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, addMDef: 1250, script: { strArg: "Acc_EP12" } }, -{ itemId: 11001005, className: "EP12_BRC05_HIGH_005", name: "Karaliene Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 6655, equipType1: "Ring", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, middleSizeBonus: 500, script: { strArg: "Acc_EP12" } }, -{ itemId: 11001006, className: "EP12_BRC05_HIGH_006", name: "Karaliene Triukas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 6655, equipType1: "Ring", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, -{ itemId: 11001007, className: "EP12_BRC05_HIGH_007", name: "Karaliene Prideti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 6655, equipType1: "Ring", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, -{ itemId: 11001008, className: "EP12_BRC05_LOW_001", name: "Incomplete Karaliene Juoda Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, -{ itemId: 11001009, className: "EP12_BRC05_LOW_002", name: "Incomplete Karaliene Isgarinti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, -{ itemId: 11001010, className: "EP12_BRC05_LOW_003", name: "Incomplete Karaliene Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, addDef: 850, script: { strArg: "Half_Acc_EP12" } }, -{ itemId: 11001011, className: "EP12_BRC05_LOW_004", name: "Incomplete Karaliene Vargeras Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, addMDef: 850, script: { strArg: "Half_Acc_EP12" } }, -{ itemId: 11001012, className: "EP12_BRC05_LOW_005", name: "Incomplete Karaliene Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, middleSizeBonus: 450, script: { strArg: "Half_Acc_EP12" } }, -{ itemId: 11001013, className: "EP12_BRC05_LOW_006", name: "Incomplete Karaliene Triukas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, -{ itemId: 11001014, className: "EP12_BRC05_LOW_007", name: "Incomplete Karaliene Prideti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, -{ itemId: 11001015, className: "EP12_BRC06_HIGH_001", name: "Luciferie Juoda Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Ring", minLevel: 450, minAtk: 360, maxAtk: 360, mAtk: 360, script: { strArg: "Luciferi" } }, -{ itemId: 11001016, className: "EP12_BRC06_HIGH_002", name: "Luciferie Isgarinti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Ring", minLevel: 450, minAtk: 360, maxAtk: 360, mAtk: 360, script: { strArg: "Luciferi" } }, -{ itemId: 11001017, className: "EP12_BRC06_HIGH_003", name: "Luciferie Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 6655, equipType1: "Ring", minLevel: 450, minAtk: 360, maxAtk: 360, mAtk: 360, addDef: 1375, addMDef: 1375, script: { strArg: "Luciferi" } }, -{ itemId: 11001018, className: "EP12_BRC06_HIGH_004", name: "Luciferie Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 6655, equipType1: "Ring", minLevel: 450, minAtk: 360, maxAtk: 360, mAtk: 360, middleSizeBonus: 500, script: { strArg: "Luciferi" } }, -{ itemId: 11001019, className: "EP12_BRC06_HIGH_005", name: "Luciferie Triukas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 6655, equipType1: "Ring", minLevel: 450, minAtk: 360, maxAtk: 360, mAtk: 360, middleSizeBonus: 500, script: { strArg: "Luciferi" } }, -{ itemId: 11001020, className: "EP12_BRC06_HIGH_006", name: "Luciferie Prideti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 6655, equipType1: "Ring", minLevel: 450, minAtk: 360, maxAtk: 360, mAtk: 360, script: { strArg: "Luciferi" } }, -{ itemId: 11002018, className: "EP12_SHD04_001", name: "Glacia Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Shield", minLevel: 430, def: 5220, mDef: 5220, material: "Shield" }, -{ itemId: 11003001, className: "EP12_TOP04_001", name: "Wonderous Robe - Stability", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, def: 1305, mDef: 2610, material: "Cloth" }, -{ itemId: 11003002, className: "EP12_TOP04_002", name: "Wonderous Leather Armor - Courage", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, def: 1957, mDef: 1957, material: "Leather" }, -{ itemId: 11003003, className: "EP12_TOP04_003", name: "Wonderous Plate Armor - Wisdom", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, def: 2610, mDef: 1305, material: "Iron" }, -{ itemId: 11003004, className: "EP12_LEG04_001", name: "Wonderous Pants - Stability", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, def: 1305, mDef: 2610, material: "Cloth" }, -{ itemId: 11003005, className: "EP12_LEG04_002", name: "Wonderous Leather Pants - Courage", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, def: 1957, mDef: 1957, material: "Leather" }, -{ itemId: 11003006, className: "EP12_LEG04_003", name: "Wonderous Plate Pants - Wisdom", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, def: 2610, mDef: 1305, material: "Iron" }, -{ itemId: 11003007, className: "EP12_FOOT04_001", name: "Wonderous Boots - Stability", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, def: 870, mDef: 1740, material: "Cloth" }, -{ itemId: 11003008, className: "EP12_FOOT04_002", name: "Wonderous Leather Boots - Courage", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, def: 1305, mDef: 1305, material: "Leather" }, -{ itemId: 11003009, className: "EP12_FOOT04_003", name: "Wonderous Greaves - Wisdom", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, def: 1740, mDef: 870, material: "Iron" }, -{ itemId: 11003010, className: "EP12_HAND04_001", name: "Wonderous Gloves - Stability", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, def: 870, mDef: 1740, material: "Cloth" }, -{ itemId: 11003011, className: "EP12_HAND04_002", name: "Wonderous Leather Gloves - Courage", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, def: 1305, mDef: 1305, material: "Leather" }, -{ itemId: 11003012, className: "EP12_HAND04_003", name: "Wonderous Plate Gauntlet - Wisdom", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, def: 1740, mDef: 870, material: "Iron" }, -{ itemId: 11003013, className: "EP12_TOP04_004", name: "Glacia Robe - Thaw", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, def: 1305, mDef: 2610, material: "Cloth" }, -{ itemId: 11003014, className: "EP12_TOP04_005", name: "Glacia Leather Armor - First Strike", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, def: 1957, mDef: 1957, material: "Leather" }, -{ itemId: 11003015, className: "EP12_TOP04_006", name: "Glacia Plate Armor - Imperturbable", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, def: 2610, mDef: 1305, material: "Iron" }, -{ itemId: 11003016, className: "EP12_LEG04_004", name: "Glacia Pants -Thaw", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, def: 1305, mDef: 2610, material: "Cloth" }, -{ itemId: 11003017, className: "EP12_LEG04_005", name: "Glacia Leather Pants - First Strike", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, def: 1957, mDef: 1957, material: "Leather" }, -{ itemId: 11003018, className: "EP12_LEG04_006", name: "Glacia Plate Pants - Imperturbable", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, def: 2610, mDef: 1305, material: "Iron" }, -{ itemId: 11003019, className: "EP12_FOOT04_004", name: "Glacia Boots - Thaw", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, def: 870, mDef: 1740, material: "Cloth" }, -{ itemId: 11003020, className: "EP12_FOOT04_005", name: "Glacia Leather Boots - First Strike", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, def: 1305, mDef: 1305, material: "Leather" }, -{ itemId: 11003021, className: "EP12_FOOT04_006", name: "Glacia Greaves - Imperturbable", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, def: 1740, mDef: 870, material: "Iron" }, -{ itemId: 11003022, className: "EP12_HAND04_004", name: "Glacia Gloves - Thaw", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, def: 870, mDef: 1740, material: "Cloth" }, -{ itemId: 11003023, className: "EP12_HAND04_005", name: "Glacia Leather Gloves - First Strike", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, def: 1305, mDef: 1305, material: "Leather" }, -{ itemId: 11003024, className: "EP12_HAND04_006", name: "Glacia Plate Gauntlet - Imperturbable", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, def: 1740, mDef: 870, material: "Iron" }, -{ itemId: 11003025, className: "EP12_EVIL_TOP", name: "Ziburynas Leather Armor - Overload Raid", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 2403, mDef: 2403, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, -{ itemId: 11003026, className: "EP12_EVIL_LEG", name: "Ziburynas Leather Pants - Overload Raid", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 2403, mDef: 2403, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, -{ itemId: 11003027, className: "EP12_EVIL_FOOT", name: "Ziburynas Leather Boots - Overload Raid", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1602, mDef: 1602, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, -{ itemId: 11003028, className: "EP12_EVIL_HAND", name: "Ziburynas Leather Gloves - Overload Raid", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1602, mDef: 1602, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, -{ itemId: 11003029, className: "EP12_Vakarine_TOP", name: "Vakarine Robe - Midnight Baptism", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003030, className: "EP12_Vakarine_LEG", name: "Vakarine Pants - Midnight Baptism", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003031, className: "EP12_Vakarine_FOOT", name: "Vakarine Boots - Midnight Baptism", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003032, className: "EP12_Vakarine_HAND", name: "Vakarine Gloves - Midnight Baptism", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003033, className: "EP12_Zemyna_TOP", name: "Zemyna Robe - Saint Oath", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003034, className: "EP12_Zemyna_LEG", name: "Zemyna Pants - Saint Oath", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003035, className: "EP12_Zemyna_FOOT", name: "Zemyna Boots - Saint Oath", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003036, className: "EP12_Zemyna_HAND", name: "Zemyna Gloves - Saint Oath", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003037, className: "EP12_Dalia_TOP", name: "Dahlia Robe - Infinity Blessing", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003038, className: "EP12_Dalia_LEG", name: "Dahlia Pants - Infinity Blessing", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003039, className: "EP12_Dalia_FOOT", name: "Dahlia Boots - Infinity Blessing", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003040, className: "EP12_Dalia_HAND", name: "Dahlia Gloves - Infinity Blessing", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003041, className: "EP12_EVIL_SUMMONNER_TOP", name: "Kartas Leather Armor - Harsh Imperator", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 2403, mDef: 2403, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, -{ itemId: 11003042, className: "EP12_EVIL_SUMMONNER_LEG", name: "Kartas Leather Pants - Harsh Imperator", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 2403, mDef: 2403, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, -{ itemId: 11003043, className: "EP12_EVIL_SUMMONNER_FOOT", name: "Kartas Leather Boots - Harsh Imperator", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1602, mDef: 1602, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, -{ itemId: 11003044, className: "EP12_EVIL_SUMMONNER_HAND", name: "Kartas Leather Gloves - Harsh Imperator", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1602, mDef: 1602, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, -{ itemId: 11003045, className: "EP12_Gabija_TOP", name: "Gabija Robe - Holy Flame", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003046, className: "EP12_Gabija_LEG", name: "Gabija Pants - Holy Flame", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003047, className: "EP12_Gabija_FOOT", name: "Gabija Boots - Holy Flame", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003048, className: "EP12_Gabija_HAND", name: "Gabija Gloves - Holy Flame", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003049, className: "EP12_Austeja_TOP", name: "Austeja Robe - Divine Enigma", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003050, className: "EP12_Austeja_LEG", name: "Austeja Pants - Divine Enigma", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003051, className: "EP12_Austeja_FOOT", name: "Austeja Boots - Divine Enigma", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003052, className: "EP12_Austeja_HAND", name: "Austeja Gloves - Divine Enigma", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11003053, className: "EP12_installation_TOP", name: "Rumpelstiltskin Leather Armor - Reckless Gambler", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 2403, mDef: 2403, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, -{ itemId: 11003054, className: "EP12_installation_LEG", name: "Rumpelstiltskin Leather Pants - Reckless Gambler", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 2403, mDef: 2403, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, -{ itemId: 11003055, className: "EP12_installation_FOOT", name: "Rumpelstiltskin Leather Boots - Reckless Gambler", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1602, mDef: 1602, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, -{ itemId: 11003056, className: "EP12_installation_HAND", name: "Rumpelstiltskin Leather Gloves - Reckless Gambler", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1602, mDef: 1602, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, -{ itemId: 11003057, className: "EP12_Galimybe_TOP", name: "Galimive Dysnai Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, def: 1957, mDef: 1957, material: "Leather" }, -{ itemId: 11003058, className: "EP12_Galimybe_LEG", name: "Galimive Dysnai Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, def: 1957, mDef: 1957, material: "Leather" }, -{ itemId: 11003059, className: "EP12_Galimybe_FOOT", name: "Galimive Dysnai Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, def: 1305, mDef: 1305, material: "Leather" }, -{ itemId: 11003060, className: "EP12_Galimybe_HAND", name: "Galimive Dysnai Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, def: 1305, mDef: 1305, material: "Leather" }, +{ itemId: 10800001, className: "Episode12_EP12_FIELD_TOP_001", name: "[EP12] Savinose Dysnai Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth" }, +{ itemId: 10800002, className: "Episode12_EP12_FIELD_TOP_002", name: "[EP12] Savinose Dysnai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather" }, +{ itemId: 10800003, className: "Episode12_EP12_FIELD_TOP_003", name: "[EP12] Savinose Dysnai Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron" }, +{ itemId: 10800004, className: "Episode12_EP12_FIELD_LEG_001", name: "[EP12] Savinose Dysnai Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth" }, +{ itemId: 10800005, className: "Episode12_EP12_FIELD_LEG_002", name: "[EP12] Savinose Dysnai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather" }, +{ itemId: 10800006, className: "Episode12_EP12_FIELD_LEG_003", name: "[EP12] Savinose Dysnai Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron" }, +{ itemId: 10800007, className: "Episode12_EP12_FIELD_FOOT_001", name: "[EP12] Savinose Dysnai Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth" }, +{ itemId: 10800008, className: "Episode12_EP12_FIELD_FOOT_002", name: "[EP12] Savinose Dysnai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather" }, +{ itemId: 10800009, className: "Episode12_EP12_FIELD_FOOT_003", name: "[EP12] Savinose Dysnai Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron" }, +{ itemId: 10800010, className: "Episode12_EP12_FIELD_HAND_001", name: "[EP12] Savinose Dysnai Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth" }, +{ itemId: 10800011, className: "Episode12_EP12_FIELD_HAND_002", name: "[EP12] Savinose Dysnai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather" }, +{ itemId: 10800012, className: "Episode12_EP12_FIELD_HAND_003", name: "[EP12] Savinose Dysnai Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron" }, +{ itemId: 10800020, className: "Episode12_EP12_FIELD_SHIELD", name: "[EP12] Savinose Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, equipExpGroup: "Equip", def: 7382, mDef: 7382, material: "Shield" }, +{ itemId: 10800030, className: "2021_NewYear_EP12_FIELD_TOP_001", name: "[2021] Savinose Dysnai Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth" }, +{ itemId: 10800031, className: "2021_NewYear_EP12_FIELD_TOP_002", name: "[2021] Savinose Dysnai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather" }, +{ itemId: 10800032, className: "2021_NewYear_EP12_FIELD_TOP_003", name: "[2021] Savinose Dysnai Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron" }, +{ itemId: 10800033, className: "2021_NewYear_EP12_FIELD_LEG_001", name: "[2021] Savinose Dysnai Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth" }, +{ itemId: 10800034, className: "2021_NewYear_EP12_FIELD_LEG_002", name: "[2021] Savinose Dysnai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather" }, +{ itemId: 10800035, className: "2021_NewYear_EP12_FIELD_LEG_003", name: "[2021] Savinose Dysnai Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron" }, +{ itemId: 10800036, className: "2021_NewYear_EP12_FIELD_FOOT_001", name: "[2021] Savinose Dysnai Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth" }, +{ itemId: 10800037, className: "2021_NewYear_EP12_FIELD_FOOT_002", name: "[2021] Savinose Dysnai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather" }, +{ itemId: 10800038, className: "2021_NewYear_EP12_FIELD_FOOT_003", name: "[2021] Savinose Dysnai Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron" }, +{ itemId: 10800039, className: "2021_NewYear_EP12_FIELD_HAND_001", name: "[2021] Savinose Dysnai Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth" }, +{ itemId: 10800040, className: "2021_NewYear_EP12_FIELD_HAND_002", name: "[2021] Savinose Dysnai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather" }, +{ itemId: 10800041, className: "2021_NewYear_EP12_FIELD_HAND_003", name: "[2021] Savinose Dysnai Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron" }, +{ itemId: 10800049, className: "2021_NewYear_EP12_FIELD_SHIELD", name: "[2021] Savinose Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, equipExpGroup: "Equip", def: 7382, mDef: 7382, material: "Shield" }, +{ itemId: 10999008, className: "TOSHero_SHIELD", name: "Shield", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", minAtk: 1000, maxAtk: 1000, mAtk: 1000, def: 1000, mDef: 1000, script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999018, className: "TOSHero_NECK_AS", name: "Tiplante's Necklace", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", script: { strArg: "TOSHeroEquipNeck" } }, +{ itemId: 10999019, className: "TOSHero_NECK_AA", name: "Gaulim's Necklace", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", script: { strArg: "TOSHeroEquipNeck" } }, +{ itemId: 10999020, className: "TOSHero_NECK_MB", name: "Nemetria's Necklace", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", script: { strArg: "TOSHeroEquipNeck" } }, +{ itemId: 10999021, className: "TOSHero_NECK_MS", name: "Hroki's Necklace", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", script: { strArg: "TOSHeroEquipNeck" } }, +{ itemId: 10999022, className: "TOSHero_NECK_PT", name: "Winata's Necklace", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", minLevel: 1, equipExpGroup: "Equip", script: { strArg: "TOSHeroEquipNeck" } }, +{ itemId: 11000000, className: "EP12_NECK05_HIGH_001", name: "Karaliene Juoda Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, +{ itemId: 11000001, className: "EP12_NECK05_HIGH_002", name: "Karaliene Isgarinti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, +{ itemId: 11000002, className: "EP12_NECK05_HIGH_003", name: "Karaliene Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, addDef: 2500, script: { strArg: "Acc_EP12" } }, +{ itemId: 11000003, className: "EP12_NECK05_HIGH_004", name: "Karaliene Vargeras Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, addMDef: 2500, script: { strArg: "Acc_EP12" } }, +{ itemId: 11000004, className: "EP12_NECK05_HIGH_005", name: "Karaliene Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, middleSizeBonus: 1500, script: { strArg: "Acc_EP12" } }, +{ itemId: 11000005, className: "EP12_NECK05_HIGH_006", name: "Karaliene Triukas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, +{ itemId: 11000006, className: "EP12_NECK05_HIGH_007", name: "Karaliene Prideti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, +{ itemId: 11000007, className: "EP12_NECK05_LOW_001", name: "Incomplete Karaliene Juoda Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, +{ itemId: 11000008, className: "EP12_NECK05_LOW_002", name: "Incomplete Karaliene Isgarinti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, +{ itemId: 11000009, className: "EP12_NECK05_LOW_003", name: "Incomplete Karaliene Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, addDef: 1800, script: { strArg: "Half_Acc_EP12" } }, +{ itemId: 11000010, className: "EP12_NECK05_LOW_004", name: "Incomplete Karaliene Vargeras Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, addMDef: 1800, script: { strArg: "Half_Acc_EP12" } }, +{ itemId: 11000011, className: "EP12_NECK05_LOW_005", name: "Incomplete Karaliene Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, middleSizeBonus: 1400, script: { strArg: "Half_Acc_EP12" } }, +{ itemId: 11000012, className: "EP12_NECK05_LOW_006", name: "Incomplete Karaliene Triukas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, +{ itemId: 11000013, className: "EP12_NECK05_LOW_007", name: "Incomplete Karaliene Prideti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Neck", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, +{ itemId: 11000014, className: "EP12_NECK06_HIGH_001", name: "Luciferie Juoda Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Neck", minLevel: 450, equipExpGroup: "Equip", minAtk: 360, maxAtk: 360, mAtk: 360, script: { strArg: "Luciferi" } }, +{ itemId: 11000015, className: "EP12_NECK06_HIGH_002", name: "Luciferie Isgarinti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Neck", minLevel: 450, equipExpGroup: "Equip", minAtk: 360, maxAtk: 360, mAtk: 360, script: { strArg: "Luciferi" } }, +{ itemId: 11000016, className: "EP12_NECK06_HIGH_003", name: "Luciferie Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Neck", minLevel: 450, equipExpGroup: "Equip", minAtk: 360, maxAtk: 360, mAtk: 360, addDef: 2750, addMDef: 2750, script: { strArg: "Luciferi" } }, +{ itemId: 11000017, className: "EP12_NECK06_HIGH_004", name: "Luciferie Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Neck", minLevel: 450, equipExpGroup: "Equip", minAtk: 360, maxAtk: 360, mAtk: 360, middleSizeBonus: 1500, script: { strArg: "Luciferi" } }, +{ itemId: 11000018, className: "EP12_NECK06_HIGH_005", name: "Luciferie Triukas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Neck", minLevel: 450, equipExpGroup: "Equip", minAtk: 360, maxAtk: 360, mAtk: 360, middleSizeBonus: 1500, script: { strArg: "Luciferi" } }, +{ itemId: 11000019, className: "EP12_NECK06_HIGH_006", name: "Luciferie Prideti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Neck", minLevel: 450, equipExpGroup: "Equip", minAtk: 360, maxAtk: 360, mAtk: 360, script: { strArg: "Luciferi" } }, +{ itemId: 11001001, className: "EP12_BRC05_HIGH_001", name: "Karaliene Juoda Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, +{ itemId: 11001002, className: "EP12_BRC05_HIGH_002", name: "Karaliene Isgarinti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, +{ itemId: 11001003, className: "EP12_BRC05_HIGH_003", name: "Karaliene Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 6655, equipType1: "Ring", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, addDef: 1250, script: { strArg: "Acc_EP12" } }, +{ itemId: 11001004, className: "EP12_BRC05_HIGH_004", name: "Karaliene Vargeras Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 6655, equipType1: "Ring", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, addMDef: 1250, script: { strArg: "Acc_EP12" } }, +{ itemId: 11001005, className: "EP12_BRC05_HIGH_005", name: "Karaliene Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 6655, equipType1: "Ring", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, middleSizeBonus: 500, script: { strArg: "Acc_EP12" } }, +{ itemId: 11001006, className: "EP12_BRC05_HIGH_006", name: "Karaliene Triukas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 6655, equipType1: "Ring", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, +{ itemId: 11001007, className: "EP12_BRC05_HIGH_007", name: "Karaliene Prideti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 6655, equipType1: "Ring", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Acc_EP12" } }, +{ itemId: 11001008, className: "EP12_BRC05_LOW_001", name: "Incomplete Karaliene Juoda Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, +{ itemId: 11001009, className: "EP12_BRC05_LOW_002", name: "Incomplete Karaliene Isgarinti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, +{ itemId: 11001010, className: "EP12_BRC05_LOW_003", name: "Incomplete Karaliene Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, addDef: 850, script: { strArg: "Half_Acc_EP12" } }, +{ itemId: 11001011, className: "EP12_BRC05_LOW_004", name: "Incomplete Karaliene Vargeras Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, addMDef: 850, script: { strArg: "Half_Acc_EP12" } }, +{ itemId: 11001012, className: "EP12_BRC05_LOW_005", name: "Incomplete Karaliene Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, middleSizeBonus: 450, script: { strArg: "Half_Acc_EP12" } }, +{ itemId: 11001013, className: "EP12_BRC05_LOW_006", name: "Incomplete Karaliene Triukas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, +{ itemId: 11001014, className: "EP12_BRC05_LOW_007", name: "Incomplete Karaliene Prideti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Ring", minLevel: 430, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Half_Acc_EP12" } }, +{ itemId: 11001015, className: "EP12_BRC06_HIGH_001", name: "Luciferie Juoda Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Ring", minLevel: 450, equipExpGroup: "Equip", minAtk: 360, maxAtk: 360, mAtk: 360, script: { strArg: "Luciferi" } }, +{ itemId: 11001016, className: "EP12_BRC06_HIGH_002", name: "Luciferie Isgarinti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Ring", minLevel: 450, equipExpGroup: "Equip", minAtk: 360, maxAtk: 360, mAtk: 360, script: { strArg: "Luciferi" } }, +{ itemId: 11001017, className: "EP12_BRC06_HIGH_003", name: "Luciferie Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 6655, equipType1: "Ring", minLevel: 450, equipExpGroup: "Equip", minAtk: 360, maxAtk: 360, mAtk: 360, addDef: 1375, addMDef: 1375, script: { strArg: "Luciferi" } }, +{ itemId: 11001018, className: "EP12_BRC06_HIGH_004", name: "Luciferie Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 6655, equipType1: "Ring", minLevel: 450, equipExpGroup: "Equip", minAtk: 360, maxAtk: 360, mAtk: 360, middleSizeBonus: 500, script: { strArg: "Luciferi" } }, +{ itemId: 11001019, className: "EP12_BRC06_HIGH_005", name: "Luciferie Triukas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 6655, equipType1: "Ring", minLevel: 450, equipExpGroup: "Equip", minAtk: 360, maxAtk: 360, mAtk: 360, middleSizeBonus: 500, script: { strArg: "Luciferi" } }, +{ itemId: 11001020, className: "EP12_BRC06_HIGH_006", name: "Luciferie Prideti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44342, sellPrice: 6655, equipType1: "Ring", minLevel: 450, equipExpGroup: "Equip", minAtk: 360, maxAtk: 360, mAtk: 360, script: { strArg: "Luciferi" } }, +{ itemId: 11002018, className: "EP12_SHD04_001", name: "Glacia Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Shield", minLevel: 430, equipExpGroup: "Equip", def: 5220, mDef: 5220, material: "Shield" }, +{ itemId: 11003001, className: "EP12_TOP04_001", name: "Wonderous Robe - Stability", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, equipExpGroup: "Equip", def: 1305, mDef: 2610, material: "Cloth" }, +{ itemId: 11003002, className: "EP12_TOP04_002", name: "Wonderous Leather Armor - Courage", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, equipExpGroup: "Equip", def: 1957, mDef: 1957, material: "Leather" }, +{ itemId: 11003003, className: "EP12_TOP04_003", name: "Wonderous Plate Armor - Wisdom", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, equipExpGroup: "Equip", def: 2610, mDef: 1305, material: "Iron" }, +{ itemId: 11003004, className: "EP12_LEG04_001", name: "Wonderous Pants - Stability", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, equipExpGroup: "Equip", def: 1305, mDef: 2610, material: "Cloth" }, +{ itemId: 11003005, className: "EP12_LEG04_002", name: "Wonderous Leather Pants - Courage", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, equipExpGroup: "Equip", def: 1957, mDef: 1957, material: "Leather" }, +{ itemId: 11003006, className: "EP12_LEG04_003", name: "Wonderous Plate Pants - Wisdom", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, equipExpGroup: "Equip", def: 2610, mDef: 1305, material: "Iron" }, +{ itemId: 11003007, className: "EP12_FOOT04_001", name: "Wonderous Boots - Stability", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, equipExpGroup: "Equip", def: 870, mDef: 1740, material: "Cloth" }, +{ itemId: 11003008, className: "EP12_FOOT04_002", name: "Wonderous Leather Boots - Courage", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, equipExpGroup: "Equip", def: 1305, mDef: 1305, material: "Leather" }, +{ itemId: 11003009, className: "EP12_FOOT04_003", name: "Wonderous Greaves - Wisdom", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, equipExpGroup: "Equip", def: 1740, mDef: 870, material: "Iron" }, +{ itemId: 11003010, className: "EP12_HAND04_001", name: "Wonderous Gloves - Stability", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, equipExpGroup: "Equip", def: 870, mDef: 1740, material: "Cloth" }, +{ itemId: 11003011, className: "EP12_HAND04_002", name: "Wonderous Leather Gloves - Courage", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, equipExpGroup: "Equip", def: 1305, mDef: 1305, material: "Leather" }, +{ itemId: 11003012, className: "EP12_HAND04_003", name: "Wonderous Plate Gauntlet - Wisdom", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, equipExpGroup: "Equip", def: 1740, mDef: 870, material: "Iron" }, +{ itemId: 11003013, className: "EP12_TOP04_004", name: "Glacia Robe - Thaw", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, equipExpGroup: "Equip", def: 1305, mDef: 2610, material: "Cloth" }, +{ itemId: 11003014, className: "EP12_TOP04_005", name: "Glacia Leather Armor - First Strike", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, equipExpGroup: "Equip", def: 1957, mDef: 1957, material: "Leather" }, +{ itemId: 11003015, className: "EP12_TOP04_006", name: "Glacia Plate Armor - Imperturbable", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, equipExpGroup: "Equip", def: 2610, mDef: 1305, material: "Iron" }, +{ itemId: 11003016, className: "EP12_LEG04_004", name: "Glacia Pants -Thaw", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, equipExpGroup: "Equip", def: 1305, mDef: 2610, material: "Cloth" }, +{ itemId: 11003017, className: "EP12_LEG04_005", name: "Glacia Leather Pants - First Strike", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, equipExpGroup: "Equip", def: 1957, mDef: 1957, material: "Leather" }, +{ itemId: 11003018, className: "EP12_LEG04_006", name: "Glacia Plate Pants - Imperturbable", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, equipExpGroup: "Equip", def: 2610, mDef: 1305, material: "Iron" }, +{ itemId: 11003019, className: "EP12_FOOT04_004", name: "Glacia Boots - Thaw", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, equipExpGroup: "Equip", def: 870, mDef: 1740, material: "Cloth" }, +{ itemId: 11003020, className: "EP12_FOOT04_005", name: "Glacia Leather Boots - First Strike", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, equipExpGroup: "Equip", def: 1305, mDef: 1305, material: "Leather" }, +{ itemId: 11003021, className: "EP12_FOOT04_006", name: "Glacia Greaves - Imperturbable", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, equipExpGroup: "Equip", def: 1740, mDef: 870, material: "Iron" }, +{ itemId: 11003022, className: "EP12_HAND04_004", name: "Glacia Gloves - Thaw", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, equipExpGroup: "Equip", def: 870, mDef: 1740, material: "Cloth" }, +{ itemId: 11003023, className: "EP12_HAND04_005", name: "Glacia Leather Gloves - First Strike", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, equipExpGroup: "Equip", def: 1305, mDef: 1305, material: "Leather" }, +{ itemId: 11003024, className: "EP12_HAND04_006", name: "Glacia Plate Gauntlet - Imperturbable", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, equipExpGroup: "Equip", def: 1740, mDef: 870, material: "Iron" }, +{ itemId: 11003025, className: "EP12_EVIL_TOP", name: "Ziburynas Leather Armor - Overload Raid", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 2403, mDef: 2403, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, +{ itemId: 11003026, className: "EP12_EVIL_LEG", name: "Ziburynas Leather Pants - Overload Raid", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 2403, mDef: 2403, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, +{ itemId: 11003027, className: "EP12_EVIL_FOOT", name: "Ziburynas Leather Boots - Overload Raid", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 1602, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, +{ itemId: 11003028, className: "EP12_EVIL_HAND", name: "Ziburynas Leather Gloves - Overload Raid", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 1602, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, +{ itemId: 11003029, className: "EP12_Vakarine_TOP", name: "Vakarine Robe - Midnight Baptism", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003030, className: "EP12_Vakarine_LEG", name: "Vakarine Pants - Midnight Baptism", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003031, className: "EP12_Vakarine_FOOT", name: "Vakarine Boots - Midnight Baptism", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003032, className: "EP12_Vakarine_HAND", name: "Vakarine Gloves - Midnight Baptism", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003033, className: "EP12_Zemyna_TOP", name: "Zemyna Robe - Saint Oath", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003034, className: "EP12_Zemyna_LEG", name: "Zemyna Pants - Saint Oath", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003035, className: "EP12_Zemyna_FOOT", name: "Zemyna Boots - Saint Oath", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003036, className: "EP12_Zemyna_HAND", name: "Zemyna Gloves - Saint Oath", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003037, className: "EP12_Dalia_TOP", name: "Dahlia Robe - Infinity Blessing", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003038, className: "EP12_Dalia_LEG", name: "Dahlia Pants - Infinity Blessing", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003039, className: "EP12_Dalia_FOOT", name: "Dahlia Boots - Infinity Blessing", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003040, className: "EP12_Dalia_HAND", name: "Dahlia Gloves - Infinity Blessing", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003041, className: "EP12_EVIL_SUMMONNER_TOP", name: "Kartas Leather Armor - Harsh Imperator", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 2403, mDef: 2403, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, +{ itemId: 11003042, className: "EP12_EVIL_SUMMONNER_LEG", name: "Kartas Leather Pants - Harsh Imperator", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 2403, mDef: 2403, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, +{ itemId: 11003043, className: "EP12_EVIL_SUMMONNER_FOOT", name: "Kartas Leather Boots - Harsh Imperator", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 1602, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, +{ itemId: 11003044, className: "EP12_EVIL_SUMMONNER_HAND", name: "Kartas Leather Gloves - Harsh Imperator", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 1602, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, +{ itemId: 11003045, className: "EP12_Gabija_TOP", name: "Gabija Robe - Holy Flame", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003046, className: "EP12_Gabija_LEG", name: "Gabija Pants - Holy Flame", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003047, className: "EP12_Gabija_FOOT", name: "Gabija Boots - Holy Flame", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003048, className: "EP12_Gabija_HAND", name: "Gabija Gloves - Holy Flame", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003049, className: "EP12_Austeja_TOP", name: "Austeja Robe - Divine Enigma", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003050, className: "EP12_Austeja_LEG", name: "Austeja Pants - Divine Enigma", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 3204, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003051, className: "EP12_Austeja_FOOT", name: "Austeja Boots - Divine Enigma", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003052, className: "EP12_Austeja_HAND", name: "Austeja Gloves - Divine Enigma", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1068, mDef: 2136, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11003053, className: "EP12_installation_TOP", name: "Rumpelstiltskin Leather Armor - Reckless Gambler", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 2403, mDef: 2403, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, +{ itemId: 11003054, className: "EP12_installation_LEG", name: "Rumpelstiltskin Leather Pants - Reckless Gambler", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 2403, mDef: 2403, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, +{ itemId: 11003055, className: "EP12_installation_FOOT", name: "Rumpelstiltskin Leather Boots - Reckless Gambler", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 1602, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, +{ itemId: 11003056, className: "EP12_installation_HAND", name: "Rumpelstiltskin Leather Gloves - Reckless Gambler", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1602, mDef: 1602, material: "Leather", script: { strArg: "evil", numArg1: 1 } }, +{ itemId: 11003057, className: "EP12_Galimybe_TOP", name: "Galimive Dysnai Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Shirt", minLevel: 430, equipExpGroup: "Equip", def: 1957, mDef: 1957, material: "Leather" }, +{ itemId: 11003058, className: "EP12_Galimybe_LEG", name: "Galimive Dysnai Pants", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 59519, sellPrice: 0, equipType1: "Pants", minLevel: 430, equipExpGroup: "Equip", def: 1957, mDef: 1957, material: "Leather" }, +{ itemId: 11003059, className: "EP12_Galimybe_FOOT", name: "Galimive Dysnai Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Boots", minLevel: 430, equipExpGroup: "Equip", def: 1305, mDef: 1305, material: "Leather" }, +{ itemId: 11003060, className: "EP12_Galimybe_HAND", name: "Galimive Dysnai Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 29759, sellPrice: 0, equipType1: "Gloves", minLevel: 430, equipExpGroup: "Equip", def: 1305, mDef: 1305, material: "Leather" }, { itemId: 11004330, className: "costume_sadhu_achieve", name: "Sanctuary of Soul Costume", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Outer", equipType2: "Premium", minLevel: 1 }, { itemId: 11004357, className: "costume_hakkapeliter_achieve", name: "Risky Acrobatic Costume", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Outer", equipType2: "Premium", minLevel: 1 }, { itemId: 11006001, className: "EP12_Hat_001", name: "Rose in Glass Globe", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, @@ -3823,177 +3823,177 @@ { itemId: 11007376, className: "EP14_Artefact_007", name: "Knight of Zemyna Shield", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 51, mDef: 51, material: "Shield", script: { strArg: "WoodCarving" } }, { itemId: 11007387, className: "EP14_Artefact_018", name: "Major Arcana The Sun & Moon Shield", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 51, mDef: 51, material: "Shield", script: { strArg: "WoodCarving" } }, { itemId: 11007400, className: "EP12_Artefact_111", name: "[Appearance Change] Glacia Shield", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 51, mDef: 51, material: "Shield", script: { strArg: "WoodCarving" } }, -{ itemId: 11010001, className: "EP12_FIELD_TOP_001", name: "Savinose Dysnai Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth", script: { strArg: "Legenda" } }, -{ itemId: 11010002, className: "EP12_FIELD_TOP_002", name: "Savinose Dysnai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 3075, mDef: 3075, material: "Leather", script: { strArg: "Legenda" } }, -{ itemId: 11010003, className: "EP12_FIELD_TOP_003", name: "Savinose Dysnai Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 4101, mDef: 2050, material: "Iron", script: { strArg: "Legenda" } }, -{ itemId: 11010004, className: "EP12_FIELD_LEG_001", name: "Savinose Dysnai Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth", script: { strArg: "Legenda" } }, -{ itemId: 11010005, className: "EP12_FIELD_LEG_002", name: "Savinose Dysnai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 3075, mDef: 3075, material: "Leather", script: { strArg: "Legenda" } }, -{ itemId: 11010006, className: "EP12_FIELD_LEG_003", name: "Savinose Dysnai Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 4101, mDef: 2050, material: "Iron", script: { strArg: "Legenda" } }, -{ itemId: 11010007, className: "EP12_FIELD_FOOT_001", name: "Savinose Dysnai Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth", script: { strArg: "Legenda" } }, -{ itemId: 11010008, className: "EP12_FIELD_FOOT_002", name: "Savinose Dysnai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2050, mDef: 2050, material: "Leather", script: { strArg: "Legenda" } }, -{ itemId: 11010009, className: "EP12_FIELD_FOOT_003", name: "Savinose Dysnai Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2734, mDef: 1367, material: "Iron", script: { strArg: "Legenda" } }, -{ itemId: 11010010, className: "EP12_FIELD_HAND_001", name: "Savinose Dysnai Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth", script: { strArg: "Legenda" } }, -{ itemId: 11010011, className: "EP12_FIELD_HAND_002", name: "Savinose Dysnai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2050, mDef: 2050, material: "Leather", script: { strArg: "Legenda" } }, -{ itemId: 11010012, className: "EP12_FIELD_HAND_003", name: "Savinose Dysnai Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2734, mDef: 1367, material: "Iron", script: { strArg: "Legenda" } }, -{ itemId: 11010013, className: "EP12_RAID_CLOTH_TOP", name: "Glacia Legenda Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth", script: { strArg: "Legenda" } }, -{ itemId: 11010014, className: "EP12_RAID_LEATHER_TOP", name: "Glacia Legenda Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 3075, mDef: 3075, material: "Leather", script: { strArg: "Legenda" } }, -{ itemId: 11010015, className: "EP12_RAID_PLATE_TOP", name: "Glacia Legenda Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 4101, mDef: 2050, material: "Iron", script: { strArg: "Legenda" } }, -{ itemId: 11010016, className: "EP12_RAID_CLOTH_LEG", name: "Glacia Legenda Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth", script: { strArg: "Legenda" } }, -{ itemId: 11010017, className: "EP12_RAID_LEATHER_LEG", name: "Glacia Legenda Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 3075, mDef: 3075, material: "Leather", script: { strArg: "Legenda" } }, -{ itemId: 11010018, className: "EP12_RAID_PLATE_LEG", name: "Glacia Legenda Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 4101, mDef: 2050, material: "Iron", script: { strArg: "Legenda" } }, -{ itemId: 11010019, className: "EP12_RAID_CLOTH_FOOT", name: "Glacia Legenda Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth", script: { strArg: "Legenda" } }, -{ itemId: 11010020, className: "EP12_RAID_LEATHER_FOOT", name: "Glacia Legenda Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2050, mDef: 2050, material: "Leather", script: { strArg: "Legenda" } }, -{ itemId: 11010021, className: "EP12_RAID_PLATE_FOOT", name: "Glacia Legenda Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2734, mDef: 1367, material: "Iron", script: { strArg: "Legenda" } }, -{ itemId: 11010022, className: "EP12_RAID_CLOTH_HAND", name: "Glacia Legenda Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth", script: { strArg: "Legenda" } }, -{ itemId: 11010023, className: "EP12_RAID_LEATHER_HAND", name: "Glacia Legenda Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2050, mDef: 2050, material: "Leather", script: { strArg: "Legenda" } }, -{ itemId: 11010024, className: "EP12_RAID_PLATE_HAND", name: "Glacia Legenda Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2734, mDef: 1367, material: "Iron", script: { strArg: "Legenda" } }, -{ itemId: 11010025, className: "EP12_WEEKLY_CLOTH_TOP", name: "Glacia Legenda Robe - Courage", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth" }, -{ itemId: 11010026, className: "EP12_WEEKLY_LEATHER_TOP", name: "Glacia Legenda Leather Armor - Courage", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 3075, mDef: 3075, material: "Leather" }, -{ itemId: 11010027, className: "EP12_WEEKLY_PLATE_TOP", name: "Glacia Legenda Plate Armor - Courage", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 4101, mDef: 2050, material: "Iron" }, -{ itemId: 11010028, className: "EP12_WEEKLY_CLOTH_LEG", name: "Glacia Legenda Pants - Courage", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth" }, -{ itemId: 11010029, className: "EP12_WEEKLY_LEATHER_LEG", name: "Glacia Legenda Leather Pants - Courage", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 3075, mDef: 3075, material: "Leather" }, -{ itemId: 11010030, className: "EP12_WEEKLY_PLATE_LEG", name: "Glacia Legenda Plate Pants - Courage", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 4101, mDef: 2050, material: "Iron" }, -{ itemId: 11010031, className: "EP12_WEEKLY_CLOTH_FOOT", name: "Glacia Legenda Boots - Courage", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth" }, -{ itemId: 11010032, className: "EP12_WEEKLY_LEATHER_FOOT", name: "Glacia Legenda Leather Boots - Courage", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2050, mDef: 2050, material: "Leather" }, -{ itemId: 11010033, className: "EP12_WEEKLY_PLATE_FOOT", name: "Glacia Legenda Greaves - Courage", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2734, mDef: 1367, material: "Iron" }, -{ itemId: 11010034, className: "EP12_WEEKLY_CLOTH_HAND", name: "Glacia Legenda Gloves - Courage", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth" }, -{ itemId: 11010035, className: "EP12_WEEKLY_LEATHER_HAND", name: "Glacia Legenda Leather Gloves - Courage", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2050, mDef: 2050, material: "Leather" }, -{ itemId: 11010036, className: "EP12_WEEKLY_PLATE_HAND", name: "Glacia Legenda Plate Gauntlet - Courage", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2734, mDef: 1367, material: "Iron" }, -{ itemId: 11010037, className: "EP12_FIELD_SOLO_ROBE", name: "Savinose Dysnai Robe - Realization", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth" }, -{ itemId: 11010038, className: "EP12_FIELD_SOLO_LEATHER_ARMOR", name: "Savinose Dysnai Leather Armor - Realization", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 3075, mDef: 3075, material: "Leather" }, -{ itemId: 11010039, className: "EP12_FIELD_SOLO_PLATE_ARMOR", name: "Savinose Dysnai Plate Armor - Realization", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 4101, mDef: 2050, material: "Iron" }, -{ itemId: 11010040, className: "EP12_FIELD_SOLO_PANTS", name: "Savinose Dysnai Pants - Realization", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth" }, -{ itemId: 11010041, className: "EP12_FIELD_SOLO_LEATHER_PANTS", name: "Savinose Dysnai Leather Pants - Realization", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 3075, mDef: 3075, material: "Leather" }, -{ itemId: 11010042, className: "EP12_FIELD_SOLO_PLATE_PANTS", name: "Savinose Dysnai Plate Pants - Realization", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 4101, mDef: 2050, material: "Iron" }, -{ itemId: 11010043, className: "EP12_FIELD_SOLO_BOOTS", name: "Savinose Dysnai Boots - Realization", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth" }, -{ itemId: 11010044, className: "EP12_FIELD_SOLO_LEATHER_BOOTS", name: "Savinose Dysnai Leather Boots - Realization", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2050, mDef: 2050, material: "Leather" }, -{ itemId: 11010045, className: "EP12_FIELD_SOLO_GREAVE", name: "Savinose Dysnai Greaves - Realization", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2734, mDef: 1367, material: "Iron" }, -{ itemId: 11010046, className: "EP12_FIELD_SOLO_GLOVE", name: "Savinose Dysnai Gloves - Realization", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth" }, -{ itemId: 11010047, className: "EP12_FIELD_SOLO_LEATHER_GLOVE", name: "Savinose Dysnai Leather Gloves - Realization", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2050, mDef: 2050, material: "Leather" }, -{ itemId: 11010048, className: "EP12_FIELD_SOLO_PLATE_GAUNTLET", name: "Savinose Dysnai Plate Gauntlet - Realization", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2734, mDef: 1367, material: "Iron" }, -{ itemId: 11010049, className: "EP12_RAID_PARTY_ROBE", name: "Glacia Legenda Robe - Vigilance", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth" }, -{ itemId: 11010050, className: "EP12_RAID_PARTY_LEATHER_ARMOR", name: "Glacia Legenda Leather Armor - Vigilance", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 3075, mDef: 3075, material: "Leather" }, -{ itemId: 11010051, className: "EP12_RAID_PARTY_PLATE_ARMOR", name: "Glacia Legenda Plate Armor - Vigilance", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 4101, mDef: 2050, material: "Iron" }, -{ itemId: 11010052, className: "EP12_RAID_PARTY_PANTS", name: "Glacia Legenda Pants - Vigilance", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth" }, -{ itemId: 11010053, className: "EP12_RAID_PARTY_LEATHER_PANTS", name: "Glacia Legenda Leather Pants - Vigilance", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 3075, mDef: 3075, material: "Leather" }, -{ itemId: 11010054, className: "EP12_RAID_PARTY_PLATE_PANTS", name: "Glacia Legenda Plate Pants - Vigilance", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 4101, mDef: 2050, material: "Iron" }, -{ itemId: 11010055, className: "EP12_RAID_PARTY_BOOTS", name: "Glacia Legenda Boots - Vigilance", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth" }, -{ itemId: 11010056, className: "EP12_RAID_PARTY_LEATHER_BOOTS", name: "Glacia Legenda Leather Boots - Vigilance", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2050, mDef: 2050, material: "Leather" }, -{ itemId: 11010057, className: "EP12_RAID_PARTY_GREAVE", name: "Glacia Legenda Greaves - Vigilance", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2734, mDef: 1367, material: "Iron" }, -{ itemId: 11010058, className: "EP12_RAID_PARTY_GLOVE", name: "Glacia Legenda Gloves - Vigilance", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth" }, -{ itemId: 11010059, className: "EP12_RAID_PARTY_LEATHER_GLOVE", name: "Glacia Legenda Leather Gloves - Vigilance", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2050, mDef: 2050, material: "Leather" }, -{ itemId: 11010060, className: "EP12_RAID_PARTY_PLATE_GAUNTLET", name: "Glacia Legenda Plate Gauntlet - Vigilance", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2734, mDef: 1367, material: "Iron" }, -{ itemId: 11010061, className: "EP12_PVP_ROBE", name: "Glacia Legenda Robe - PvP", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth", script: { strArg: "FreePvP" } }, -{ itemId: 11010062, className: "EP12_PVP_PANTS", name: "Glacia Legenda Pants - PvP", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 2050, mDef: 4101, material: "Cloth", script: { strArg: "FreePvP" } }, -{ itemId: 11010063, className: "EP12_PVP_BOOTS", name: "Glacia Legenda Boots - PvP", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth", script: { strArg: "FreePvP" } }, -{ itemId: 11010064, className: "EP12_PVP_GLOVE", name: "Glacia Legenda Gloves - PvP", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 1367, mDef: 2734, material: "Cloth", script: { strArg: "FreePvP" } }, -{ itemId: 11010065, className: "EP12_PVP_LEATHER_ARMOR", name: "Glacia Legenda Leather Armor - PvP", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 3075, mDef: 3075, material: "Leather", script: { strArg: "FreePvP" } }, -{ itemId: 11010066, className: "EP12_PVP_LEATHER_PANTS", name: "Glacia Legenda Leather Pants - PvP", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 3075, mDef: 3075, material: "Leather", script: { strArg: "FreePvP" } }, -{ itemId: 11010067, className: "EP12_PVP_LEATHER_BOOTS", name: "Glacia Legenda Leather Boots - PvP", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2050, mDef: 2050, material: "Leather", script: { strArg: "FreePvP" } }, -{ itemId: 11010068, className: "EP12_PVP_LEATHER_GLOVE", name: "Glacia Legenda Leather Gloves - PvP", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2050, mDef: 2050, material: "Leather", script: { strArg: "FreePvP" } }, -{ itemId: 11010069, className: "EP12_PVP_PLATE_ARMOR", name: "Glacia Legenda Plate Armor - PvP", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, def: 4101, mDef: 2050, material: "Iron", script: { strArg: "FreePvP" } }, -{ itemId: 11010070, className: "EP12_PVP_PLATE_PANTS", name: "Glacia Legenda Plate Pants - PvP", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, def: 4101, mDef: 2050, material: "Iron", script: { strArg: "FreePvP" } }, -{ itemId: 11010071, className: "EP12_PVP_GREAVE", name: "Glacia Legenda Greaves - PvP", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, def: 2734, mDef: 1367, material: "Iron", script: { strArg: "FreePvP" } }, -{ itemId: 11010072, className: "EP12_PVP_PLATE_GAUNTLET", name: "Glacia Legenda Plate Gauntlet - PvP", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, def: 2734, mDef: 1367, material: "Iron", script: { strArg: "FreePvP" } }, -{ itemId: 11020008, className: "EP12_FIELD_SHIELD", name: "Savinose Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, def: 7382, mDef: 7382, material: "Shield", script: { strArg: "Legenda" } }, -{ itemId: 11020025, className: "EP12_RAID_SHIELD", name: "Glacia Legenda Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, def: 7382, mDef: 7382, material: "Shield", script: { strArg: "Legenda" } }, -{ itemId: 11040012, className: "Dummy_Shield_Guilty", name: "Liberated Res Sacrae Shield", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 51, mDef: 51, material: "Shield" }, +{ itemId: 11010001, className: "EP12_FIELD_TOP_001", name: "Savinose Dysnai Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth", script: { strArg: "Legenda" } }, +{ itemId: 11010002, className: "EP12_FIELD_TOP_002", name: "Savinose Dysnai Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather", script: { strArg: "Legenda" } }, +{ itemId: 11010003, className: "EP12_FIELD_TOP_003", name: "Savinose Dysnai Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron", script: { strArg: "Legenda" } }, +{ itemId: 11010004, className: "EP12_FIELD_LEG_001", name: "Savinose Dysnai Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth", script: { strArg: "Legenda" } }, +{ itemId: 11010005, className: "EP12_FIELD_LEG_002", name: "Savinose Dysnai Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather", script: { strArg: "Legenda" } }, +{ itemId: 11010006, className: "EP12_FIELD_LEG_003", name: "Savinose Dysnai Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron", script: { strArg: "Legenda" } }, +{ itemId: 11010007, className: "EP12_FIELD_FOOT_001", name: "Savinose Dysnai Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth", script: { strArg: "Legenda" } }, +{ itemId: 11010008, className: "EP12_FIELD_FOOT_002", name: "Savinose Dysnai Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather", script: { strArg: "Legenda" } }, +{ itemId: 11010009, className: "EP12_FIELD_FOOT_003", name: "Savinose Dysnai Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron", script: { strArg: "Legenda" } }, +{ itemId: 11010010, className: "EP12_FIELD_HAND_001", name: "Savinose Dysnai Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth", script: { strArg: "Legenda" } }, +{ itemId: 11010011, className: "EP12_FIELD_HAND_002", name: "Savinose Dysnai Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather", script: { strArg: "Legenda" } }, +{ itemId: 11010012, className: "EP12_FIELD_HAND_003", name: "Savinose Dysnai Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron", script: { strArg: "Legenda" } }, +{ itemId: 11010013, className: "EP12_RAID_CLOTH_TOP", name: "Glacia Legenda Robe", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth", script: { strArg: "Legenda" } }, +{ itemId: 11010014, className: "EP12_RAID_LEATHER_TOP", name: "Glacia Legenda Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather", script: { strArg: "Legenda" } }, +{ itemId: 11010015, className: "EP12_RAID_PLATE_TOP", name: "Glacia Legenda Plate Armor", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron", script: { strArg: "Legenda" } }, +{ itemId: 11010016, className: "EP12_RAID_CLOTH_LEG", name: "Glacia Legenda Pants", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth", script: { strArg: "Legenda" } }, +{ itemId: 11010017, className: "EP12_RAID_LEATHER_LEG", name: "Glacia Legenda Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather", script: { strArg: "Legenda" } }, +{ itemId: 11010018, className: "EP12_RAID_PLATE_LEG", name: "Glacia Legenda Plate Pants", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron", script: { strArg: "Legenda" } }, +{ itemId: 11010019, className: "EP12_RAID_CLOTH_FOOT", name: "Glacia Legenda Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth", script: { strArg: "Legenda" } }, +{ itemId: 11010020, className: "EP12_RAID_LEATHER_FOOT", name: "Glacia Legenda Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather", script: { strArg: "Legenda" } }, +{ itemId: 11010021, className: "EP12_RAID_PLATE_FOOT", name: "Glacia Legenda Greaves", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron", script: { strArg: "Legenda" } }, +{ itemId: 11010022, className: "EP12_RAID_CLOTH_HAND", name: "Glacia Legenda Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth", script: { strArg: "Legenda" } }, +{ itemId: 11010023, className: "EP12_RAID_LEATHER_HAND", name: "Glacia Legenda Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather", script: { strArg: "Legenda" } }, +{ itemId: 11010024, className: "EP12_RAID_PLATE_HAND", name: "Glacia Legenda Plate Gauntlet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron", script: { strArg: "Legenda" } }, +{ itemId: 11010025, className: "EP12_WEEKLY_CLOTH_TOP", name: "Glacia Legenda Robe - Courage", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth" }, +{ itemId: 11010026, className: "EP12_WEEKLY_LEATHER_TOP", name: "Glacia Legenda Leather Armor - Courage", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather" }, +{ itemId: 11010027, className: "EP12_WEEKLY_PLATE_TOP", name: "Glacia Legenda Plate Armor - Courage", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron" }, +{ itemId: 11010028, className: "EP12_WEEKLY_CLOTH_LEG", name: "Glacia Legenda Pants - Courage", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth" }, +{ itemId: 11010029, className: "EP12_WEEKLY_LEATHER_LEG", name: "Glacia Legenda Leather Pants - Courage", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather" }, +{ itemId: 11010030, className: "EP12_WEEKLY_PLATE_LEG", name: "Glacia Legenda Plate Pants - Courage", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron" }, +{ itemId: 11010031, className: "EP12_WEEKLY_CLOTH_FOOT", name: "Glacia Legenda Boots - Courage", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth" }, +{ itemId: 11010032, className: "EP12_WEEKLY_LEATHER_FOOT", name: "Glacia Legenda Leather Boots - Courage", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather" }, +{ itemId: 11010033, className: "EP12_WEEKLY_PLATE_FOOT", name: "Glacia Legenda Greaves - Courage", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron" }, +{ itemId: 11010034, className: "EP12_WEEKLY_CLOTH_HAND", name: "Glacia Legenda Gloves - Courage", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth" }, +{ itemId: 11010035, className: "EP12_WEEKLY_LEATHER_HAND", name: "Glacia Legenda Leather Gloves - Courage", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather" }, +{ itemId: 11010036, className: "EP12_WEEKLY_PLATE_HAND", name: "Glacia Legenda Plate Gauntlet - Courage", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron" }, +{ itemId: 11010037, className: "EP12_FIELD_SOLO_ROBE", name: "Savinose Dysnai Robe - Realization", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth" }, +{ itemId: 11010038, className: "EP12_FIELD_SOLO_LEATHER_ARMOR", name: "Savinose Dysnai Leather Armor - Realization", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather" }, +{ itemId: 11010039, className: "EP12_FIELD_SOLO_PLATE_ARMOR", name: "Savinose Dysnai Plate Armor - Realization", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron" }, +{ itemId: 11010040, className: "EP12_FIELD_SOLO_PANTS", name: "Savinose Dysnai Pants - Realization", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth" }, +{ itemId: 11010041, className: "EP12_FIELD_SOLO_LEATHER_PANTS", name: "Savinose Dysnai Leather Pants - Realization", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather" }, +{ itemId: 11010042, className: "EP12_FIELD_SOLO_PLATE_PANTS", name: "Savinose Dysnai Plate Pants - Realization", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron" }, +{ itemId: 11010043, className: "EP12_FIELD_SOLO_BOOTS", name: "Savinose Dysnai Boots - Realization", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth" }, +{ itemId: 11010044, className: "EP12_FIELD_SOLO_LEATHER_BOOTS", name: "Savinose Dysnai Leather Boots - Realization", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather" }, +{ itemId: 11010045, className: "EP12_FIELD_SOLO_GREAVE", name: "Savinose Dysnai Greaves - Realization", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron" }, +{ itemId: 11010046, className: "EP12_FIELD_SOLO_GLOVE", name: "Savinose Dysnai Gloves - Realization", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth" }, +{ itemId: 11010047, className: "EP12_FIELD_SOLO_LEATHER_GLOVE", name: "Savinose Dysnai Leather Gloves - Realization", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather" }, +{ itemId: 11010048, className: "EP12_FIELD_SOLO_PLATE_GAUNTLET", name: "Savinose Dysnai Plate Gauntlet - Realization", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron" }, +{ itemId: 11010049, className: "EP12_RAID_PARTY_ROBE", name: "Glacia Legenda Robe - Vigilance", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth" }, +{ itemId: 11010050, className: "EP12_RAID_PARTY_LEATHER_ARMOR", name: "Glacia Legenda Leather Armor - Vigilance", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather" }, +{ itemId: 11010051, className: "EP12_RAID_PARTY_PLATE_ARMOR", name: "Glacia Legenda Plate Armor - Vigilance", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron" }, +{ itemId: 11010052, className: "EP12_RAID_PARTY_PANTS", name: "Glacia Legenda Pants - Vigilance", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth" }, +{ itemId: 11010053, className: "EP12_RAID_PARTY_LEATHER_PANTS", name: "Glacia Legenda Leather Pants - Vigilance", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather" }, +{ itemId: 11010054, className: "EP12_RAID_PARTY_PLATE_PANTS", name: "Glacia Legenda Plate Pants - Vigilance", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron" }, +{ itemId: 11010055, className: "EP12_RAID_PARTY_BOOTS", name: "Glacia Legenda Boots - Vigilance", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth" }, +{ itemId: 11010056, className: "EP12_RAID_PARTY_LEATHER_BOOTS", name: "Glacia Legenda Leather Boots - Vigilance", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather" }, +{ itemId: 11010057, className: "EP12_RAID_PARTY_GREAVE", name: "Glacia Legenda Greaves - Vigilance", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron" }, +{ itemId: 11010058, className: "EP12_RAID_PARTY_GLOVE", name: "Glacia Legenda Gloves - Vigilance", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth" }, +{ itemId: 11010059, className: "EP12_RAID_PARTY_LEATHER_GLOVE", name: "Glacia Legenda Leather Gloves - Vigilance", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather" }, +{ itemId: 11010060, className: "EP12_RAID_PARTY_PLATE_GAUNTLET", name: "Glacia Legenda Plate Gauntlet - Vigilance", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron" }, +{ itemId: 11010061, className: "EP12_PVP_ROBE", name: "Glacia Legenda Robe - PvP", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth", script: { strArg: "FreePvP" } }, +{ itemId: 11010062, className: "EP12_PVP_PANTS", name: "Glacia Legenda Pants - PvP", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 4101, material: "Cloth", script: { strArg: "FreePvP" } }, +{ itemId: 11010063, className: "EP12_PVP_BOOTS", name: "Glacia Legenda Boots - PvP", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth", script: { strArg: "FreePvP" } }, +{ itemId: 11010064, className: "EP12_PVP_GLOVE", name: "Glacia Legenda Gloves - PvP", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 1367, mDef: 2734, material: "Cloth", script: { strArg: "FreePvP" } }, +{ itemId: 11010065, className: "EP12_PVP_LEATHER_ARMOR", name: "Glacia Legenda Leather Armor - PvP", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather", script: { strArg: "FreePvP" } }, +{ itemId: 11010066, className: "EP12_PVP_LEATHER_PANTS", name: "Glacia Legenda Leather Pants - PvP", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 3075, mDef: 3075, material: "Leather", script: { strArg: "FreePvP" } }, +{ itemId: 11010067, className: "EP12_PVP_LEATHER_BOOTS", name: "Glacia Legenda Leather Boots - PvP", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather", script: { strArg: "FreePvP" } }, +{ itemId: 11010068, className: "EP12_PVP_LEATHER_GLOVE", name: "Glacia Legenda Leather Gloves - PvP", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2050, mDef: 2050, material: "Leather", script: { strArg: "FreePvP" } }, +{ itemId: 11010069, className: "EP12_PVP_PLATE_ARMOR", name: "Glacia Legenda Plate Armor - PvP", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Shirt", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron", script: { strArg: "FreePvP" } }, +{ itemId: 11010070, className: "EP12_PVP_PLATE_PANTS", name: "Glacia Legenda Plate Pants - PvP", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66376, sellPrice: 0, equipType1: "Pants", minLevel: 440, equipExpGroup: "Equip", def: 4101, mDef: 2050, material: "Iron", script: { strArg: "FreePvP" } }, +{ itemId: 11010071, className: "EP12_PVP_GREAVE", name: "Glacia Legenda Greaves - PvP", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Boots", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron", script: { strArg: "FreePvP" } }, +{ itemId: 11010072, className: "EP12_PVP_PLATE_GAUNTLET", name: "Glacia Legenda Plate Gauntlet - PvP", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33188, sellPrice: 0, equipType1: "Gloves", minLevel: 440, equipExpGroup: "Equip", def: 2734, mDef: 1367, material: "Iron", script: { strArg: "FreePvP" } }, +{ itemId: 11020008, className: "EP12_FIELD_SHIELD", name: "Savinose Dysnai Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, equipExpGroup: "Equip", def: 7382, mDef: 7382, material: "Shield", script: { strArg: "Legenda" } }, +{ itemId: 11020025, className: "EP12_RAID_SHIELD", name: "Glacia Legenda Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Shield", minLevel: 440, equipExpGroup: "Equip", def: 7382, mDef: 7382, material: "Shield", script: { strArg: "Legenda" } }, +{ itemId: 11040012, className: "Dummy_Shield_Guilty", name: "Liberated Res Sacrae Shield", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 51, mDef: 51, material: "Shield" }, { itemId: 11041001, className: "EP13_reputation_hairacc_1", name: "Hair Accessory of Goddess Austeja", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, { itemId: 11041002, className: "EP13_reputation_hairacc_2", name: "Hair Accessory of Goddess Dahlia", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, -{ itemId: 11060000, className: "EP12_EVIL_TOP_Lv2", name: "[Lv2] Ziburynas Leather Armor - Overload Raid", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, def: 2457, mDef: 2457, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, -{ itemId: 11060001, className: "EP12_EVIL_LEG_Lv2", name: "[Lv2] Ziburynas Leather Pants - Overload Raid", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, def: 2457, mDef: 2457, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, -{ itemId: 11060002, className: "EP12_EVIL_FOOT_Lv2", name: "[Lv2] Ziburynas Leather Boots - Overload Raid", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, def: 1638, mDef: 1638, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, -{ itemId: 11060003, className: "EP12_EVIL_HAND_Lv2", name: "[Lv2] Ziburynas Leather Gloves - Overload Raid", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, def: 1638, mDef: 1638, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, -{ itemId: 11060004, className: "EP12_Vakarine_TOP_Lv2", name: "[Lv2] Vakarine Robe - Midnight Baptism", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060005, className: "EP12_Vakarine_LEG_Lv2", name: "[Lv2] Vakarine Pants - Midnight Baptism", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060006, className: "EP12_Vakarine_FOOT_Lv2", name: "[Lv2] Vakarine Boots - Midnight Baptism", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060007, className: "EP12_Vakarine_HAND_Lv2", name: "[Lv2] Vakarine Gloves - Midnight Baptism", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060008, className: "EP12_Zemyna_TOP_Lv2", name: "[Lv2] Zemyna Robe - Saint Oath", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060009, className: "EP12_Zemyna_LEG_Lv2", name: "[Lv2] Zemyna Pants - Saint Oath", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060010, className: "EP12_Zemyna_FOOT_Lv2", name: "[Lv2] Zemyna Boots - Saint Oath", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060011, className: "EP12_Zemyna_HAND_Lv2", name: "[Lv2] Zemyna Gloves - Saint Oath", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060012, className: "EP12_Dalia_TOP_Lv2", name: "[Lv2] Dahlia Robe - Infinity Blessing", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060013, className: "EP12_Dalia_LEG_Lv2", name: "[Lv2] Dahlia Pants - Infinity Blessing", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060014, className: "EP12_Dalia_FOOT_Lv2", name: "[Lv2] Dahlia Boots - Infinity Blessing", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060015, className: "EP12_Dalia_HAND_Lv2", name: "[Lv2] Dahlia Gloves - Infinity Blessing", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060016, className: "EP12_EVIL_SUMMONNER_TOP_Lv2", name: "[Lv2] Kartas Leather Armor - Harsh Imperator", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, def: 2457, mDef: 2457, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, -{ itemId: 11060017, className: "EP12_EVIL_SUMMONNER_LEG_Lv2", name: "[Lv2] Kartas Leather Pants - Harsh Imperator", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, def: 2457, mDef: 2457, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, -{ itemId: 11060018, className: "EP12_EVIL_SUMMONNER_FOOT_Lv2", name: "[Lv2] Kartas Leather Boots - Harsh Imperator", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, def: 1638, mDef: 1638, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, -{ itemId: 11060019, className: "EP12_EVIL_SUMMONNER_HAND_Lv2", name: "[Lv2] Kartas Leather Gloves - Harsh Imperator", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, def: 1638, mDef: 1638, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, -{ itemId: 11060020, className: "EP12_Gabija_TOP_Lv2", name: "[Lv2] Gabija Robe - Holy Flame", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060021, className: "EP12_Gabija_LEG_Lv2", name: "[Lv2] Gabija Pants - Holy Flame", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060022, className: "EP12_Gabija_FOOT_Lv2", name: "[Lv2] Gabija Boots - Holy Flame", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060023, className: "EP12_Gabija_HAND_Lv2", name: "[Lv2] Gabija Gloves - Holy Flame", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060024, className: "EP12_Austeja_TOP_Lv2", name: "[Lv2] Austeja Robe - Divine Enigma", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060025, className: "EP12_Austeja_LEG_Lv2", name: "[Lv2] Austeja Pants - Divine Enigma", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060026, className: "EP12_Austeja_FOOT_Lv2", name: "[Lv2] Austeja Boots - Divine Enigma", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060027, className: "EP12_Austeja_HAND_Lv2", name: "[Lv2] Austeja Gloves - Divine Enigma", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11060028, className: "EP12_installation_TOP_Lv2", name: "[Lv2] Rumpelstiltskin Leather Armor - Reckless Gambler", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, def: 2457, mDef: 2457, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, -{ itemId: 11060029, className: "EP12_installation_LEG_Lv2", name: "[Lv2] Rumpelstiltskin Leather Pants - Reckless Gambler", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, def: 2457, mDef: 2457, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, -{ itemId: 11060030, className: "EP12_installation_FOOT_Lv2", name: "[Lv2] Rumpelstiltskin Leather Boots - Reckless Gambler", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, def: 1638, mDef: 1638, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, -{ itemId: 11060031, className: "EP12_installation_HAND_Lv2", name: "[Lv2] Rumpelstiltskin Leather Gloves - Reckless Gambler", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, def: 1638, mDef: 1638, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, -{ itemId: 11060032, className: "EP12_EVIL_TOP_Lv3", name: "[Lv3] Ziburynas Leather Armor - Overload Raid", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, def: 2511, mDef: 2511, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, -{ itemId: 11060033, className: "EP12_EVIL_LEG_Lv3", name: "[Lv3] Ziburynas Leather Pants - Overload Raid", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, def: 2511, mDef: 2511, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, -{ itemId: 11060034, className: "EP12_EVIL_FOOT_Lv3", name: "[Lv3] Ziburynas Leather Boots - Overload Raid", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, def: 1674, mDef: 1674, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, -{ itemId: 11060035, className: "EP12_EVIL_HAND_Lv3", name: "[Lv3] Ziburynas Leather Gloves - Overload Raid", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, def: 1674, mDef: 1674, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, -{ itemId: 11060036, className: "EP12_Vakarine_TOP_Lv3", name: "[Lv3] Vakarine Robe - Midnight Baptism", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060037, className: "EP12_Vakarine_LEG_Lv3", name: "[Lv3] Vakarine Pants - Midnight Baptism", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060038, className: "EP12_Vakarine_FOOT_Lv3", name: "[Lv3] Vakarine Boots - Midnight Baptism", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060039, className: "EP12_Vakarine_HAND_Lv3", name: "[Lv3] Vakarine Gloves - Midnight Baptism", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060040, className: "EP12_Zemyna_TOP_Lv3", name: "[Lv3] Zemyna Robe - Saint Oath", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060041, className: "EP12_Zemyna_LEG_Lv3", name: "[Lv3] Zemyna Pants - Saint Oath", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060042, className: "EP12_Zemyna_FOOT_Lv3", name: "[Lv3] Zemyna Boots - Saint Oath", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060043, className: "EP12_Zemyna_HAND_Lv3", name: "[Lv3] Zemyna Gloves - Saint Oath", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060044, className: "EP12_Dalia_TOP_Lv3", name: "[Lv3] Dahlia Robe - Infinity Blessing", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060045, className: "EP12_Dalia_LEG_Lv3", name: "[Lv3] Dahlia Pants - Infinity Blessing", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060046, className: "EP12_Dalia_FOOT_Lv3", name: "[Lv3] Dahlia Boots - Infinity Blessing", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060047, className: "EP12_Dalia_HAND_Lv3", name: "[Lv3] Dahlia Gloves - Infinity Blessing", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060048, className: "EP12_EVIL_SUMMONNER_TOP_Lv3", name: "[Lv3] Kartas Leather Armor - Harsh Imperator", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, def: 2511, mDef: 2511, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, -{ itemId: 11060049, className: "EP12_EVIL_SUMMONNER_LEG_Lv3", name: "[Lv3] Kartas Leather Pants - Harsh Imperator", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, def: 2511, mDef: 2511, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, -{ itemId: 11060050, className: "EP12_EVIL_SUMMONNER_FOOT_Lv3", name: "[Lv3] Kartas Leather Boots - Harsh Imperator", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, def: 1674, mDef: 1674, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, -{ itemId: 11060051, className: "EP12_EVIL_SUMMONNER_HAND_Lv3", name: "[Lv3] Kartas Leather Gloves - Harsh Imperator", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, def: 1674, mDef: 1674, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, -{ itemId: 11060052, className: "EP12_Gabija_TOP_Lv3", name: "[Lv3] Gabija Robe - Holy Flame", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060053, className: "EP12_Gabija_LEG_Lv3", name: "[Lv3] Gabija Pants - Holy Flame", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060054, className: "EP12_Gabija_FOOT_Lv3", name: "[Lv3] Gabija Boots - Holy Flame", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060055, className: "EP12_Gabija_HAND_Lv3", name: "[Lv3] Gabija Gloves - Holy Flame", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060056, className: "EP12_Austeja_TOP_Lv3", name: "[Lv3] Austeja Robe - Divine Enigma", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060057, className: "EP12_Austeja_LEG_Lv3", name: "[Lv3] Austeja Pants - Divine Enigma", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060058, className: "EP12_Austeja_FOOT_Lv3", name: "[Lv3] Austeja Boots - Divine Enigma", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060059, className: "EP12_Austeja_HAND_Lv3", name: "[Lv3] Austeja Gloves - Divine Enigma", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11060060, className: "EP12_installation_TOP_Lv3", name: "[Lv3] Rumpelstiltskin Leather Armor - Reckless Gambler", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, def: 2511, mDef: 2511, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, -{ itemId: 11060061, className: "EP12_installation_LEG_Lv3", name: "[Lv3] Rumpelstiltskin Leather Pants - Reckless Gambler", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, def: 2511, mDef: 2511, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, -{ itemId: 11060062, className: "EP12_installation_FOOT_Lv3", name: "[Lv3] Rumpelstiltskin Leather Boots - Reckless Gambler", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, def: 1674, mDef: 1674, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, -{ itemId: 11060063, className: "EP12_installation_HAND_Lv3", name: "[Lv3] Rumpelstiltskin Leather Gloves - Reckless Gambler", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, def: 1674, mDef: 1674, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, -{ itemId: 11090000, className: "EP13_RAID_CLOTH_TOP", name: "Vasilisa Robe", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, def: 3417, mDef: 6835, material: "Cloth", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11090001, className: "EP13_RAID_CLOTH_LEG", name: "Vasilisa Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, def: 3417, mDef: 6835, material: "Cloth", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11090002, className: "EP13_RAID_CLOTH_FOOT", name: "Vasilisa Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, def: 3417, mDef: 6835, material: "Cloth", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11090003, className: "EP13_RAID_CLOTH_HAND", name: "Vasilisa Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, def: 3417, mDef: 6835, material: "Cloth", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11090004, className: "EP13_RAID_LEATHER_TOP", name: "Vasilisa Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, def: 5126, mDef: 5126, material: "Leather", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11090005, className: "EP13_RAID_LEATHER_LEG", name: "Vasilisa Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, def: 5126, mDef: 5126, material: "Leather", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11090006, className: "EP13_RAID_LEATHER_FOOT", name: "Vasilisa Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, def: 5126, mDef: 5126, material: "Leather", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11090007, className: "EP13_RAID_LEATHER_HAND", name: "Vasilisa Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, def: 5126, mDef: 5126, material: "Leather", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11090008, className: "EP13_RAID_PLATE_TOP", name: "Vasilisa Plate Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, def: 6835, mDef: 3417, material: "Iron", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11090009, className: "EP13_RAID_PLATE_LEG", name: "Vasilisa Plate Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, def: 6835, mDef: 3417, material: "Iron", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11090010, className: "EP13_RAID_PLATE_FOOT", name: "Vasilisa Greaves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, def: 6835, mDef: 3417, material: "Iron", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11090011, className: "EP13_RAID_PLATE_HAND", name: "Vasilisa Plate Gauntlet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, def: 6835, mDef: 3417, material: "Iron", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095007, className: "EP13_RAID_SHIELD", name: "Vasilisa Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Shield", minLevel: 460, def: 13128, mDef: 13128, material: "Shield", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11096000, className: "GROWTH_REINFORCE_TIER1_LEATHER_TOP", name: "Guardian Leather Armor", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Shirt", minLevel: 1, def: 28, mDef: 28, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096001, className: "GROWTH_REINFORCE_TIER1_LEATHER_LEG", name: "Guardian Leather Pants", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Pants", minLevel: 1, def: 28, mDef: 28, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096002, className: "GROWTH_REINFORCE_TIER1_LEATHER_FOOT", name: "Guardian Leather Boots", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Boots", minLevel: 1, def: 28, mDef: 28, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096003, className: "GROWTH_REINFORCE_TIER1_LEATHER_HAND", name: "Guardian Leather Gloves", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Gloves", minLevel: 1, def: 28, mDef: 28, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096010, className: "GROWTH_REINFORCE_TIER2_LEATHER_TOP", name: "Elite Guardian Leather Armor", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, def: 1469, mDef: 1469, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096011, className: "GROWTH_REINFORCE_TIER2_LEATHER_LEG", name: "Elite Guardian Leather Pants", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, def: 1469, mDef: 1469, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096012, className: "GROWTH_REINFORCE_TIER2_LEATHER_FOOT", name: "Elite Guardian Leather Boots", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, def: 1469, mDef: 1469, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096013, className: "GROWTH_REINFORCE_TIER2_LEATHER_HAND", name: "Elite Guardian Leather Gloves", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, def: 1469, mDef: 1469, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096020, className: "GROWTH_REINFORCE_TIER3_LEATHER_TOP", name: "Royal Guardian Leather Armor", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 37152, sellPrice: 0, equipType1: "Shirt", minLevel: 280, def: 13982, mDef: 13982, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096021, className: "GROWTH_REINFORCE_TIER3_LEATHER_LEG", name: "Royal Guardian Leather Pants", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 37152, sellPrice: 0, equipType1: "Pants", minLevel: 280, def: 13982, mDef: 13982, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096022, className: "GROWTH_REINFORCE_TIER3_LEATHER_FOOT", name: "Royal Guardian Leather Boots", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 18576, sellPrice: 0, equipType1: "Boots", minLevel: 280, def: 13982, mDef: 13982, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096023, className: "GROWTH_REINFORCE_TIER3_LEATHER_HAND", name: "Royal Guardian Leather Gloves", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 18576, sellPrice: 0, equipType1: "Gloves", minLevel: 280, def: 13982, mDef: 13982, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096507, className: "GROWTH_REINFORCE_TIER1_SHIELD", name: "Guardian Shield", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 33, mDef: 33, material: "Shield", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096537, className: "GROWTH_REINFORCE_TIER2_SHIELD", name: "Elite Guardian Shield", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 9312, sellPrice: 0, equipType1: "Shield", minLevel: 120, def: 1947, mDef: 1947, material: "Shield", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096577, className: "GROWTH_REINFORCE_TIER3_SHIELD", name: "Royal Guardian Shield", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 24768, sellPrice: 0, equipType1: "Shield", minLevel: 280, def: 8840, mDef: 8840, material: "Shield", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11097000, className: "REINF_GROWTH_EP1_NECK", name: "[Growing] Necklace", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", equipType2: "Sword", minLevel: 1, minAtk: 4, maxAtk: 4, mAtk: 4, script: { strArg: "Growth_By_Reinforce/Episode_1" } }, -{ itemId: 11097001, className: "REINF_GROWTH_EP1_RING", name: "[Growing] Bracelet", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, minAtk: 4, maxAtk: 4, mAtk: 4, script: { strArg: "Growth_By_Reinforce/Episode_1" } }, +{ itemId: 11060000, className: "EP12_EVIL_TOP_Lv2", name: "[Lv2] Ziburynas Leather Armor - Overload Raid", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, equipExpGroup: "Equip", def: 2457, mDef: 2457, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, +{ itemId: 11060001, className: "EP12_EVIL_LEG_Lv2", name: "[Lv2] Ziburynas Leather Pants - Overload Raid", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, equipExpGroup: "Equip", def: 2457, mDef: 2457, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, +{ itemId: 11060002, className: "EP12_EVIL_FOOT_Lv2", name: "[Lv2] Ziburynas Leather Boots - Overload Raid", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 1638, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, +{ itemId: 11060003, className: "EP12_EVIL_HAND_Lv2", name: "[Lv2] Ziburynas Leather Gloves - Overload Raid", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 1638, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, +{ itemId: 11060004, className: "EP12_Vakarine_TOP_Lv2", name: "[Lv2] Vakarine Robe - Midnight Baptism", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060005, className: "EP12_Vakarine_LEG_Lv2", name: "[Lv2] Vakarine Pants - Midnight Baptism", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060006, className: "EP12_Vakarine_FOOT_Lv2", name: "[Lv2] Vakarine Boots - Midnight Baptism", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, equipExpGroup: "Equip", def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060007, className: "EP12_Vakarine_HAND_Lv2", name: "[Lv2] Vakarine Gloves - Midnight Baptism", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, equipExpGroup: "Equip", def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060008, className: "EP12_Zemyna_TOP_Lv2", name: "[Lv2] Zemyna Robe - Saint Oath", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060009, className: "EP12_Zemyna_LEG_Lv2", name: "[Lv2] Zemyna Pants - Saint Oath", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060010, className: "EP12_Zemyna_FOOT_Lv2", name: "[Lv2] Zemyna Boots - Saint Oath", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, equipExpGroup: "Equip", def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060011, className: "EP12_Zemyna_HAND_Lv2", name: "[Lv2] Zemyna Gloves - Saint Oath", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, equipExpGroup: "Equip", def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060012, className: "EP12_Dalia_TOP_Lv2", name: "[Lv2] Dahlia Robe - Infinity Blessing", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060013, className: "EP12_Dalia_LEG_Lv2", name: "[Lv2] Dahlia Pants - Infinity Blessing", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060014, className: "EP12_Dalia_FOOT_Lv2", name: "[Lv2] Dahlia Boots - Infinity Blessing", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, equipExpGroup: "Equip", def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060015, className: "EP12_Dalia_HAND_Lv2", name: "[Lv2] Dahlia Gloves - Infinity Blessing", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, equipExpGroup: "Equip", def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060016, className: "EP12_EVIL_SUMMONNER_TOP_Lv2", name: "[Lv2] Kartas Leather Armor - Harsh Imperator", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, equipExpGroup: "Equip", def: 2457, mDef: 2457, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, +{ itemId: 11060017, className: "EP12_EVIL_SUMMONNER_LEG_Lv2", name: "[Lv2] Kartas Leather Pants - Harsh Imperator", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, equipExpGroup: "Equip", def: 2457, mDef: 2457, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, +{ itemId: 11060018, className: "EP12_EVIL_SUMMONNER_FOOT_Lv2", name: "[Lv2] Kartas Leather Boots - Harsh Imperator", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 1638, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, +{ itemId: 11060019, className: "EP12_EVIL_SUMMONNER_HAND_Lv2", name: "[Lv2] Kartas Leather Gloves - Harsh Imperator", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 1638, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, +{ itemId: 11060020, className: "EP12_Gabija_TOP_Lv2", name: "[Lv2] Gabija Robe - Holy Flame", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060021, className: "EP12_Gabija_LEG_Lv2", name: "[Lv2] Gabija Pants - Holy Flame", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060022, className: "EP12_Gabija_FOOT_Lv2", name: "[Lv2] Gabija Boots - Holy Flame", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, equipExpGroup: "Equip", def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060023, className: "EP12_Gabija_HAND_Lv2", name: "[Lv2] Gabija Gloves - Holy Flame", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, equipExpGroup: "Equip", def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060024, className: "EP12_Austeja_TOP_Lv2", name: "[Lv2] Austeja Robe - Divine Enigma", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060025, className: "EP12_Austeja_LEG_Lv2", name: "[Lv2] Austeja Pants - Divine Enigma", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 3276, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060026, className: "EP12_Austeja_FOOT_Lv2", name: "[Lv2] Austeja Boots - Divine Enigma", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, equipExpGroup: "Equip", def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060027, className: "EP12_Austeja_HAND_Lv2", name: "[Lv2] Austeja Gloves - Divine Enigma", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, equipExpGroup: "Equip", def: 1092, mDef: 2184, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11060028, className: "EP12_installation_TOP_Lv2", name: "[Lv2] Rumpelstiltskin Leather Armor - Reckless Gambler", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 450, equipExpGroup: "Equip", def: 2457, mDef: 2457, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, +{ itemId: 11060029, className: "EP12_installation_LEG_Lv2", name: "[Lv2] Rumpelstiltskin Leather Pants - Reckless Gambler", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 450, equipExpGroup: "Equip", def: 2457, mDef: 2457, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, +{ itemId: 11060030, className: "EP12_installation_FOOT_Lv2", name: "[Lv2] Rumpelstiltskin Leather Boots - Reckless Gambler", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 1638, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, +{ itemId: 11060031, className: "EP12_installation_HAND_Lv2", name: "[Lv2] Rumpelstiltskin Leather Gloves - Reckless Gambler", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 450, equipExpGroup: "Equip", def: 1638, mDef: 1638, material: "Leather", script: { strArg: "evil", numArg1: 2 } }, +{ itemId: 11060032, className: "EP12_EVIL_TOP_Lv3", name: "[Lv3] Ziburynas Leather Armor - Overload Raid", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, equipExpGroup: "Equip", def: 2511, mDef: 2511, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, +{ itemId: 11060033, className: "EP12_EVIL_LEG_Lv3", name: "[Lv3] Ziburynas Leather Pants - Overload Raid", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, equipExpGroup: "Equip", def: 2511, mDef: 2511, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, +{ itemId: 11060034, className: "EP12_EVIL_FOOT_Lv3", name: "[Lv3] Ziburynas Leather Boots - Overload Raid", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 1674, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, +{ itemId: 11060035, className: "EP12_EVIL_HAND_Lv3", name: "[Lv3] Ziburynas Leather Gloves - Overload Raid", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 1674, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, +{ itemId: 11060036, className: "EP12_Vakarine_TOP_Lv3", name: "[Lv3] Vakarine Robe - Midnight Baptism", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060037, className: "EP12_Vakarine_LEG_Lv3", name: "[Lv3] Vakarine Pants - Midnight Baptism", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060038, className: "EP12_Vakarine_FOOT_Lv3", name: "[Lv3] Vakarine Boots - Midnight Baptism", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, equipExpGroup: "Equip", def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060039, className: "EP12_Vakarine_HAND_Lv3", name: "[Lv3] Vakarine Gloves - Midnight Baptism", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, equipExpGroup: "Equip", def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060040, className: "EP12_Zemyna_TOP_Lv3", name: "[Lv3] Zemyna Robe - Saint Oath", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060041, className: "EP12_Zemyna_LEG_Lv3", name: "[Lv3] Zemyna Pants - Saint Oath", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060042, className: "EP12_Zemyna_FOOT_Lv3", name: "[Lv3] Zemyna Boots - Saint Oath", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, equipExpGroup: "Equip", def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060043, className: "EP12_Zemyna_HAND_Lv3", name: "[Lv3] Zemyna Gloves - Saint Oath", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, equipExpGroup: "Equip", def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060044, className: "EP12_Dalia_TOP_Lv3", name: "[Lv3] Dahlia Robe - Infinity Blessing", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060045, className: "EP12_Dalia_LEG_Lv3", name: "[Lv3] Dahlia Pants - Infinity Blessing", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060046, className: "EP12_Dalia_FOOT_Lv3", name: "[Lv3] Dahlia Boots - Infinity Blessing", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, equipExpGroup: "Equip", def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060047, className: "EP12_Dalia_HAND_Lv3", name: "[Lv3] Dahlia Gloves - Infinity Blessing", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, equipExpGroup: "Equip", def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060048, className: "EP12_EVIL_SUMMONNER_TOP_Lv3", name: "[Lv3] Kartas Leather Armor - Harsh Imperator", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, equipExpGroup: "Equip", def: 2511, mDef: 2511, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, +{ itemId: 11060049, className: "EP12_EVIL_SUMMONNER_LEG_Lv3", name: "[Lv3] Kartas Leather Pants - Harsh Imperator", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, equipExpGroup: "Equip", def: 2511, mDef: 2511, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, +{ itemId: 11060050, className: "EP12_EVIL_SUMMONNER_FOOT_Lv3", name: "[Lv3] Kartas Leather Boots - Harsh Imperator", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 1674, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, +{ itemId: 11060051, className: "EP12_EVIL_SUMMONNER_HAND_Lv3", name: "[Lv3] Kartas Leather Gloves - Harsh Imperator", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 1674, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, +{ itemId: 11060052, className: "EP12_Gabija_TOP_Lv3", name: "[Lv3] Gabija Robe - Holy Flame", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060053, className: "EP12_Gabija_LEG_Lv3", name: "[Lv3] Gabija Pants - Holy Flame", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060054, className: "EP12_Gabija_FOOT_Lv3", name: "[Lv3] Gabija Boots - Holy Flame", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, equipExpGroup: "Equip", def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060055, className: "EP12_Gabija_HAND_Lv3", name: "[Lv3] Gabija Gloves - Holy Flame", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, equipExpGroup: "Equip", def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060056, className: "EP12_Austeja_TOP_Lv3", name: "[Lv3] Austeja Robe - Divine Enigma", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060057, className: "EP12_Austeja_LEG_Lv3", name: "[Lv3] Austeja Pants - Divine Enigma", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 3348, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060058, className: "EP12_Austeja_FOOT_Lv3", name: "[Lv3] Austeja Boots - Divine Enigma", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, equipExpGroup: "Equip", def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060059, className: "EP12_Austeja_HAND_Lv3", name: "[Lv3] Austeja Gloves - Divine Enigma", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, equipExpGroup: "Equip", def: 1116, mDef: 2232, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11060060, className: "EP12_installation_TOP_Lv3", name: "[Lv3] Rumpelstiltskin Leather Armor - Reckless Gambler", type: "Equip", group: "Armor", weight: 190, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, equipExpGroup: "Equip", def: 2511, mDef: 2511, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, +{ itemId: 11060061, className: "EP12_installation_LEG_Lv3", name: "[Lv3] Rumpelstiltskin Leather Pants - Reckless Gambler", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, equipExpGroup: "Equip", def: 2511, mDef: 2511, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, +{ itemId: 11060062, className: "EP12_installation_FOOT_Lv3", name: "[Lv3] Rumpelstiltskin Leather Boots - Reckless Gambler", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 1674, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, +{ itemId: 11060063, className: "EP12_installation_HAND_Lv3", name: "[Lv3] Rumpelstiltskin Leather Gloves - Reckless Gambler", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, equipExpGroup: "Equip", def: 1674, mDef: 1674, material: "Leather", script: { strArg: "evil", numArg1: 3 } }, +{ itemId: 11090000, className: "EP13_RAID_CLOTH_TOP", name: "Vasilisa Robe", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, equipExpGroup: "Equip", def: 3417, mDef: 6835, material: "Cloth", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11090001, className: "EP13_RAID_CLOTH_LEG", name: "Vasilisa Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, equipExpGroup: "Equip", def: 3417, mDef: 6835, material: "Cloth", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11090002, className: "EP13_RAID_CLOTH_FOOT", name: "Vasilisa Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, equipExpGroup: "Equip", def: 3417, mDef: 6835, material: "Cloth", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11090003, className: "EP13_RAID_CLOTH_HAND", name: "Vasilisa Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, equipExpGroup: "Equip", def: 3417, mDef: 6835, material: "Cloth", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11090004, className: "EP13_RAID_LEATHER_TOP", name: "Vasilisa Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, equipExpGroup: "Equip", def: 5126, mDef: 5126, material: "Leather", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11090005, className: "EP13_RAID_LEATHER_LEG", name: "Vasilisa Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, equipExpGroup: "Equip", def: 5126, mDef: 5126, material: "Leather", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11090006, className: "EP13_RAID_LEATHER_FOOT", name: "Vasilisa Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, equipExpGroup: "Equip", def: 5126, mDef: 5126, material: "Leather", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11090007, className: "EP13_RAID_LEATHER_HAND", name: "Vasilisa Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, equipExpGroup: "Equip", def: 5126, mDef: 5126, material: "Leather", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11090008, className: "EP13_RAID_PLATE_TOP", name: "Vasilisa Plate Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Shirt", minLevel: 460, equipExpGroup: "Equip", def: 6835, mDef: 3417, material: "Iron", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11090009, className: "EP13_RAID_PLATE_LEG", name: "Vasilisa Plate Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66513, sellPrice: 0, equipType1: "Pants", minLevel: 460, equipExpGroup: "Equip", def: 6835, mDef: 3417, material: "Iron", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11090010, className: "EP13_RAID_PLATE_FOOT", name: "Vasilisa Greaves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Boots", minLevel: 460, equipExpGroup: "Equip", def: 6835, mDef: 3417, material: "Iron", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11090011, className: "EP13_RAID_PLATE_HAND", name: "Vasilisa Plate Gauntlet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33256, sellPrice: 0, equipType1: "Gloves", minLevel: 460, equipExpGroup: "Equip", def: 6835, mDef: 3417, material: "Iron", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095007, className: "EP13_RAID_SHIELD", name: "Vasilisa Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Shield", minLevel: 460, equipExpGroup: "Equip", def: 13128, mDef: 13128, material: "Shield", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11096000, className: "GROWTH_REINFORCE_TIER1_LEATHER_TOP", name: "Guardian Leather Armor", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Shirt", minLevel: 1, equipExpGroup: "Equip", def: 28, mDef: 28, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096001, className: "GROWTH_REINFORCE_TIER1_LEATHER_LEG", name: "Guardian Leather Pants", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 360, sellPrice: 0, equipType1: "Pants", minLevel: 1, equipExpGroup: "Equip", def: 28, mDef: 28, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096002, className: "GROWTH_REINFORCE_TIER1_LEATHER_FOOT", name: "Guardian Leather Boots", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Boots", minLevel: 1, equipExpGroup: "Equip", def: 28, mDef: 28, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096003, className: "GROWTH_REINFORCE_TIER1_LEATHER_HAND", name: "Guardian Leather Gloves", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 180, sellPrice: 0, equipType1: "Gloves", minLevel: 1, equipExpGroup: "Equip", def: 28, mDef: 28, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096010, className: "GROWTH_REINFORCE_TIER2_LEATHER_TOP", name: "Elite Guardian Leather Armor", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Shirt", minLevel: 120, equipExpGroup: "Equip", def: 1469, mDef: 1469, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096011, className: "GROWTH_REINFORCE_TIER2_LEATHER_LEG", name: "Elite Guardian Leather Pants", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 13968, sellPrice: 0, equipType1: "Pants", minLevel: 120, equipExpGroup: "Equip", def: 1469, mDef: 1469, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096012, className: "GROWTH_REINFORCE_TIER2_LEATHER_FOOT", name: "Elite Guardian Leather Boots", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Boots", minLevel: 120, equipExpGroup: "Equip", def: 1469, mDef: 1469, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096013, className: "GROWTH_REINFORCE_TIER2_LEATHER_HAND", name: "Elite Guardian Leather Gloves", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 6984, sellPrice: 0, equipType1: "Gloves", minLevel: 120, equipExpGroup: "Equip", def: 1469, mDef: 1469, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096020, className: "GROWTH_REINFORCE_TIER3_LEATHER_TOP", name: "Royal Guardian Leather Armor", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 37152, sellPrice: 0, equipType1: "Shirt", minLevel: 280, equipExpGroup: "Equip", def: 13982, mDef: 13982, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096021, className: "GROWTH_REINFORCE_TIER3_LEATHER_LEG", name: "Royal Guardian Leather Pants", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 37152, sellPrice: 0, equipType1: "Pants", minLevel: 280, equipExpGroup: "Equip", def: 13982, mDef: 13982, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096022, className: "GROWTH_REINFORCE_TIER3_LEATHER_FOOT", name: "Royal Guardian Leather Boots", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 18576, sellPrice: 0, equipType1: "Boots", minLevel: 280, equipExpGroup: "Equip", def: 13982, mDef: 13982, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096023, className: "GROWTH_REINFORCE_TIER3_LEATHER_HAND", name: "Royal Guardian Leather Gloves", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 18576, sellPrice: 0, equipType1: "Gloves", minLevel: 280, equipExpGroup: "Equip", def: 13982, mDef: 13982, material: "Leather", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096507, className: "GROWTH_REINFORCE_TIER1_SHIELD", name: "Guardian Shield", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, equipExpGroup: "Equip", def: 33, mDef: 33, material: "Shield", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096537, className: "GROWTH_REINFORCE_TIER2_SHIELD", name: "Elite Guardian Shield", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 9312, sellPrice: 0, equipType1: "Shield", minLevel: 120, equipExpGroup: "Equip", def: 1947, mDef: 1947, material: "Shield", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096577, className: "GROWTH_REINFORCE_TIER3_SHIELD", name: "Royal Guardian Shield", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 24768, sellPrice: 0, equipType1: "Shield", minLevel: 280, equipExpGroup: "Equip", def: 8840, mDef: 8840, material: "Shield", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11097000, className: "REINF_GROWTH_EP1_NECK", name: "[Growing] Necklace", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Neck", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 4, maxAtk: 4, mAtk: 4, script: { strArg: "Growth_By_Reinforce/Episode_1" } }, +{ itemId: 11097001, className: "REINF_GROWTH_EP1_RING", name: "[Growing] Bracelet", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Ring", minLevel: 1, equipExpGroup: "Equip", minAtk: 4, maxAtk: 4, mAtk: 4, script: { strArg: "Growth_By_Reinforce/Episode_1" } }, { itemId: 11098001, className: "DesignCut_HAIR_M_132", name: "[Pocket Wig] Bunny Boy", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hair", equipType2: "Premium", script: { strArg: "bunnyboy" } }, { itemId: 11098002, className: "DesignCut_HAIR_M_133", name: "[Pocket Wig] Two-tone Dandy Cut", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hair", equipType2: "Premium", script: { strArg: "mintpink" } }, { itemId: 11098003, className: "DesignCut_HAIR_M_134", name: "[Pocket Wig] Noble Wave Ponytail ", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hair", equipType2: "Premium", script: { strArg: "redbridge" } }, @@ -4022,79 +4022,79 @@ { itemId: 11099012, className: "DesignCut_HAIR_F_148", name: "[Pocket Wig] Bridge Long", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hair", equipType2: "Premium", script: { strArg: "hair_hiphop_female_hair_nocap" } }, { itemId: 11099013, className: "DesignCut_HAIR_F_149", name: "[Pocket Wig] Tangle Up", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hair", equipType2: "Premium", script: { strArg: "20halloween_tangle_up_hair" } }, { itemId: 11099014, className: "DesignCut_HAIR_F_150", name: "[Pocket Wig] Semi Wave Long Perm", type: "Equip", group: "Armor", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hair", equipType2: "Premium", script: { strArg: "semi_wave_long" } }, -{ itemId: 11100002, className: "EP13_BRC06_HIGH_001", name: "Isidavie Juoda Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Ring", minLevel: 470, minAtk: 934, maxAtk: 934, mAtk: 934, script: { strArg: "Isdavi", numArg1: 13 } }, -{ itemId: 11100003, className: "EP13_BRC06_HIGH_002", name: "Isidavie Isgarinti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Ring", minLevel: 470, minAtk: 934, maxAtk: 934, mAtk: 934, script: { strArg: "Isdavi", numArg1: 13 } }, -{ itemId: 11100004, className: "EP13_BRC06_HIGH_003", name: "Isidavie Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Ring", minLevel: 470, minAtk: 934, maxAtk: 934, mAtk: 934, addDef: 1650, addMDef: 1650, script: { strArg: "Isdavi", numArg1: 13 } }, -{ itemId: 11100005, className: "EP13_BRC06_HIGH_004", name: "Isidavie Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Ring", minLevel: 470, minAtk: 934, maxAtk: 934, mAtk: 934, middleSizeBonus: 600, script: { strArg: "Isdavi", numArg1: 13 } }, -{ itemId: 11100006, className: "EP13_BRC06_HIGH_005", name: "Isidavie Triukas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Ring", minLevel: 470, minAtk: 934, maxAtk: 934, mAtk: 934, middleSizeBonus: 600, script: { strArg: "Isdavi", numArg1: 13 } }, -{ itemId: 11100007, className: "EP13_BRC06_HIGH_006", name: "Isidavie Prideti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Ring", minLevel: 470, minAtk: 934, maxAtk: 934, mAtk: 934, script: { strArg: "Isdavi", numArg1: 13 } }, -{ itemId: 11100008, className: "EP13_NECK06_HIGH_001", name: "Isidavie Juoda Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Neck", minLevel: 470, minAtk: 934, maxAtk: 934, mAtk: 934, script: { strArg: "Isdavi", numArg1: 13 } }, -{ itemId: 11100009, className: "EP13_NECK06_HIGH_002", name: "Isidavie Isgarinti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Neck", minLevel: 470, minAtk: 934, maxAtk: 934, mAtk: 934, script: { strArg: "Isdavi", numArg1: 13 } }, -{ itemId: 11100010, className: "EP13_NECK06_HIGH_003", name: "Isidavie Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Neck", minLevel: 470, minAtk: 934, maxAtk: 934, mAtk: 934, addDef: 3300, addMDef: 3300, script: { strArg: "Isdavi", numArg1: 13 } }, -{ itemId: 11100011, className: "EP13_NECK06_HIGH_004", name: "Isidavie Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Neck", minLevel: 470, minAtk: 934, maxAtk: 934, mAtk: 934, middleSizeBonus: 1800, script: { strArg: "Isdavi", numArg1: 13 } }, -{ itemId: 11100012, className: "EP13_NECK06_HIGH_005", name: "Isidavie Triukas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Neck", minLevel: 470, minAtk: 934, maxAtk: 934, mAtk: 934, middleSizeBonus: 1800, script: { strArg: "Isdavi", numArg1: 13 } }, -{ itemId: 11100013, className: "EP13_NECK06_HIGH_006", name: "Isidavie Prideti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Neck", minLevel: 470, minAtk: 934, maxAtk: 934, mAtk: 934, script: { strArg: "Isdavi", numArg1: 13 } }, -{ itemId: 11100015, className: "EP14_RAID_CLOTH_TOP", name: "Falouros Robe", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Shirt", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "Goddess_Armor_Lv480" } }, -{ itemId: 11100016, className: "EP14_RAID_CLOTH_LEG", name: "Falouros Pant", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Pants", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "Goddess_Armor_Lv480" } }, -{ itemId: 11100017, className: "EP14_RAID_CLOTH_FOOT", name: "Falouros Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Boots", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "Goddess_Armor_Lv480" } }, -{ itemId: 11100018, className: "EP14_RAID_CLOTH_HAND", name: "Falouros Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Gloves", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "Goddess_Armor_Lv480" } }, -{ itemId: 11100019, className: "EP14_RAID_LEATHER_TOP", name: "Falouros Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Shirt", minLevel: 480, def: 44856, mDef: 44856, material: "Leather", script: { strArg: "Goddess_Armor_Lv480" } }, -{ itemId: 11100020, className: "EP14_RAID_LEATHER_LEG", name: "Falouros Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Pants", minLevel: 480, def: 44856, mDef: 44856, material: "Leather", script: { strArg: "Goddess_Armor_Lv480" } }, -{ itemId: 11100021, className: "EP14_RAID_LEATHER_FOOT", name: "Falouros Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Boots", minLevel: 480, def: 44856, mDef: 44856, material: "Leather", script: { strArg: "Goddess_Armor_Lv480" } }, -{ itemId: 11100022, className: "EP14_RAID_LEATHER_HAND", name: "Falouros Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Gloves", minLevel: 480, def: 44856, mDef: 44856, material: "Leather", script: { strArg: "Goddess_Armor_Lv480" } }, -{ itemId: 11100023, className: "EP14_RAID_PLATE_TOP", name: "Falouros Plate Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Shirt", minLevel: 480, def: 59808, mDef: 29904, material: "Iron", script: { strArg: "Goddess_Armor_Lv480" } }, -{ itemId: 11100024, className: "EP14_RAID_PLATE_LEG", name: "Falouros Plate Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Pants", minLevel: 480, def: 59808, mDef: 29904, material: "Iron", script: { strArg: "Goddess_Armor_Lv480" } }, -{ itemId: 11100025, className: "EP14_RAID_PLATE_FOOT", name: "Falouros Greaves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Boots", minLevel: 480, def: 59808, mDef: 29904, material: "Iron", script: { strArg: "Goddess_Armor_Lv480" } }, -{ itemId: 11100026, className: "EP14_RAID_PLATE_HAND", name: "Falouros Plate Gauntlet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Gloves", minLevel: 480, def: 59808, mDef: 29904, material: "Iron", script: { strArg: "Goddess_Armor_Lv480" } }, -{ itemId: 11100034, className: "EP14_RAID_SHIELD", name: "Reservoir Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44616, sellPrice: 0, equipType1: "Shield", minLevel: 480, def: 30551, mDef: 30551, material: "Shield", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100055, className: "EP14_NECK_01", name: "Baud Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47650, sellPrice: 0, equipType1: "Neck", minLevel: 490, minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 1800, script: { strArg: "baud", numArg1: 14 } }, -{ itemId: 11100056, className: "EP14_BRC_01", name: "Baud Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47650, sellPrice: 0, equipType1: "Ring", minLevel: 490, minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 600, script: { strArg: "baud", numArg1: 14 } }, -{ itemId: 11100057, className: "EP14_NECK_02", name: "Baud Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47650, sellPrice: 0, equipType1: "Neck", minLevel: 490, minAtk: 2500, maxAtk: 2500, mAtk: 2500, addDef: 9900, addMDef: 9900, script: { strArg: "baud", numArg1: 14 } }, -{ itemId: 11100058, className: "EP14_BRC_02", name: "Baud Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47650, sellPrice: 0, equipType1: "Ring", minLevel: 490, minAtk: 2500, maxAtk: 2500, mAtk: 2500, addDef: 3300, addMDef: 3300, script: { strArg: "baud", numArg1: 14 } }, -{ itemId: 11100063, className: "EP16_NECK_01", name: "Nebiltis Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Neck", minLevel: 510, minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 2160, script: { strArg: "EP16_acc", numArg1: 16 } }, -{ itemId: 11100064, className: "EP16_BRC_01", name: "Nebiltis Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Ring", minLevel: 510, minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 1408, script: { strArg: "EP16_acc", numArg1: 16 } }, -{ itemId: 11100065, className: "EP16_NECK_02", name: "Nebiltis Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Neck", minLevel: 510, minAtk: 2500, maxAtk: 2500, mAtk: 2500, script: { strArg: "EP16_acc", numArg1: 16 } }, -{ itemId: 11100066, className: "EP16_BRC_02", name: "Nebiltis Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Ring", minLevel: 510, minAtk: 2500, maxAtk: 2500, mAtk: 2500, script: { strArg: "EP16_acc", numArg1: 16 } }, -{ itemId: 11100067, className: "EP16_NECK_03", name: "Nebiltis Juoda Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Neck", minLevel: 510, minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 2160, script: { strArg: "EP16_acc", numArg1: 16 } }, -{ itemId: 11100068, className: "EP16_BRC_03", name: "Nebiltis Juoda Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Ring", minLevel: 510, minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 1408, script: { strArg: "EP16_acc", numArg1: 16 } }, -{ itemId: 11100069, className: "EP16_NECK_04", name: "Nebiltis Triukas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Neck", minLevel: 510, minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 2160, script: { strArg: "EP16_acc", numArg1: 16 } }, -{ itemId: 11100070, className: "EP16_BRC_04", name: "Nebiltis Triukas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Ring", minLevel: 510, minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 1408, script: { strArg: "EP16_acc", numArg1: 16 } }, -{ itemId: 11100100, className: "EP14_goddess_noble_1_TOP", name: "[Lv1] Goddess Treasure (Power of Fire) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Shirt", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11100101, className: "EP14_goddess_noble_1_LEG", name: "[Lv1] Goddess Treasure (Power of Fire) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Pants", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11100102, className: "EP14_goddess_noble_1_FOOT", name: "[Lv1] Goddess Treasure (Power of Fire) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Boots", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11100103, className: "EP14_goddess_noble_1_HAND", name: "[Lv1] Goddess Treasure (Power of Fire) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Gloves", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11100104, className: "EP14_goddess_noble_1_TOP_Lv2", name: "[Lv2] Goddess Treasure (Power of Fire) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 490, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11100105, className: "EP14_goddess_noble_1_LEG_Lv2", name: "[Lv2] Goddess Treasure (Power of Fire) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 490, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11100106, className: "EP14_goddess_noble_1_FOOT_Lv2", name: "[Lv2] Goddess Treasure (Power of Fire) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 490, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11100107, className: "EP14_goddess_noble_1_HAND_Lv2", name: "[Lv2] Goddess Treasure (Power of Fire) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 490, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11100108, className: "EP14_goddess_noble_1_TOP_Lv3", name: "[Lv3] Goddess Treasure (Power of Fire) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11100109, className: "EP14_goddess_noble_1_LEG_Lv3", name: "[Lv3] Goddess Treasure (Power of Fire) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11100110, className: "EP14_goddess_noble_1_FOOT_Lv3", name: "[Lv3] Goddess Treasure (Power of Fire) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11100111, className: "EP14_goddess_noble_1_HAND_Lv3", name: "[Lv3] Goddess Treasure (Power of Fire) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11100112, className: "EP14_goddess_noble_2_TOP", name: "[Lv1] Goddess Treasure (Fate) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Shirt", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11100113, className: "EP14_goddess_noble_2_LEG", name: "[Lv1] Goddess Treasure (Fate) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Pants", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11100114, className: "EP14_goddess_noble_2_FOOT", name: "[Lv1] Goddess Treasure (Fate) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Boots", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11100115, className: "EP14_goddess_noble_2_HAND", name: "[Lv1] Goddess Treasure (Fate) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Gloves", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11100116, className: "EP14_goddess_noble_2_TOP_Lv2", name: "[Lv2] Goddess Treasure (Fate) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 490, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11100117, className: "EP14_goddess_noble_2_LEG_Lv2", name: "[Lv2] Goddess Treasure (Fate) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 490, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11100118, className: "EP14_goddess_noble_2_FOOT_Lv2", name: "[Lv2] Goddess Treasure (Fate) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 490, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11100119, className: "EP14_goddess_noble_2_HAND_Lv2", name: "[Lv2] Goddess Treasure (Fate) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 490, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11100120, className: "EP14_goddess_noble_2_TOP_Lv3", name: "[Lv3] Goddess Treasure (Fate) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11100121, className: "EP14_goddess_noble_2_LEG_Lv3", name: "[Lv3] Goddess Treasure (Fate) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11100122, className: "EP14_goddess_noble_2_FOOT_Lv3", name: "[Lv3] Goddess Treasure (Fate) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11100123, className: "EP14_goddess_noble_2_HAND_Lv3", name: "[Lv3] Goddess Treasure (Fate) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11100124, className: "EP14_goddess_noble_3_TOP", name: "[Lv1] Goddess Treasure (Fertility) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Shirt", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11100125, className: "EP14_goddess_noble_3_LEG", name: "[Lv1] Goddess Treasure (Fertility) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Pants", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11100126, className: "EP14_goddess_noble_3_FOOT", name: "[Lv1] Goddess Treasure (Fertility) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Boots", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11100127, className: "EP14_goddess_noble_3_HAND", name: "[Lv1] Goddess Treasure (Fertility) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Gloves", minLevel: 480, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, -{ itemId: 11100128, className: "EP14_goddess_noble_3_TOP_Lv2", name: "[Lv2] Goddess Treasure (Fertility) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 490, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11100129, className: "EP14_goddess_noble_3_LEG_Lv2", name: "[Lv2] Goddess Treasure (Fertility) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 490, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11100130, className: "EP14_goddess_noble_3_FOOT_Lv2", name: "[Lv2] Goddess Treasure (Fertility) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 490, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11100131, className: "EP14_goddess_noble_3_HAND_Lv2", name: "[Lv2] Goddess Treasure (Fertility) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 490, def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, -{ itemId: 11100132, className: "EP14_goddess_noble_3_TOP_Lv3", name: "[Lv3] Goddess Treasure (Fertility) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11100133, className: "EP14_goddess_noble_3_LEG_Lv3", name: "[Lv3] Goddess Treasure (Fertility) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11100134, className: "EP14_goddess_noble_3_FOOT_Lv3", name: "[Lv3] Goddess Treasure (Fertility) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, -{ itemId: 11100135, className: "EP14_goddess_noble_3_HAND_Lv3", name: "[Lv3] Goddess Treasure (Fertility) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11100002, className: "EP13_BRC06_HIGH_001", name: "Isidavie Juoda Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Ring", minLevel: 470, equipExpGroup: "Equip", minAtk: 934, maxAtk: 934, mAtk: 934, script: { strArg: "Isdavi", numArg1: 13 } }, +{ itemId: 11100003, className: "EP13_BRC06_HIGH_002", name: "Isidavie Isgarinti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Ring", minLevel: 470, equipExpGroup: "Equip", minAtk: 934, maxAtk: 934, mAtk: 934, script: { strArg: "Isdavi", numArg1: 13 } }, +{ itemId: 11100004, className: "EP13_BRC06_HIGH_003", name: "Isidavie Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Ring", minLevel: 470, equipExpGroup: "Equip", minAtk: 934, maxAtk: 934, mAtk: 934, addDef: 1650, addMDef: 1650, script: { strArg: "Isdavi", numArg1: 13 } }, +{ itemId: 11100005, className: "EP13_BRC06_HIGH_004", name: "Isidavie Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Ring", minLevel: 470, equipExpGroup: "Equip", minAtk: 934, maxAtk: 934, mAtk: 934, middleSizeBonus: 600, script: { strArg: "Isdavi", numArg1: 13 } }, +{ itemId: 11100006, className: "EP13_BRC06_HIGH_005", name: "Isidavie Triukas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Ring", minLevel: 470, equipExpGroup: "Equip", minAtk: 934, maxAtk: 934, mAtk: 934, middleSizeBonus: 600, script: { strArg: "Isdavi", numArg1: 13 } }, +{ itemId: 11100007, className: "EP13_BRC06_HIGH_006", name: "Isidavie Prideti Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Ring", minLevel: 470, equipExpGroup: "Equip", minAtk: 934, maxAtk: 934, mAtk: 934, script: { strArg: "Isdavi", numArg1: 13 } }, +{ itemId: 11100008, className: "EP13_NECK06_HIGH_001", name: "Isidavie Juoda Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Neck", minLevel: 470, equipExpGroup: "Equip", minAtk: 934, maxAtk: 934, mAtk: 934, script: { strArg: "Isdavi", numArg1: 13 } }, +{ itemId: 11100009, className: "EP13_NECK06_HIGH_002", name: "Isidavie Isgarinti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Neck", minLevel: 470, equipExpGroup: "Equip", minAtk: 934, maxAtk: 934, mAtk: 934, script: { strArg: "Isdavi", numArg1: 13 } }, +{ itemId: 11100010, className: "EP13_NECK06_HIGH_003", name: "Isidavie Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Neck", minLevel: 470, equipExpGroup: "Equip", minAtk: 934, maxAtk: 934, mAtk: 934, addDef: 3300, addMDef: 3300, script: { strArg: "Isdavi", numArg1: 13 } }, +{ itemId: 11100011, className: "EP13_NECK06_HIGH_004", name: "Isidavie Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Neck", minLevel: 470, equipExpGroup: "Equip", minAtk: 934, maxAtk: 934, mAtk: 934, middleSizeBonus: 1800, script: { strArg: "Isdavi", numArg1: 13 } }, +{ itemId: 11100012, className: "EP13_NECK06_HIGH_005", name: "Isidavie Triukas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Neck", minLevel: 470, equipExpGroup: "Equip", minAtk: 934, maxAtk: 934, mAtk: 934, middleSizeBonus: 1800, script: { strArg: "Isdavi", numArg1: 13 } }, +{ itemId: 11100013, className: "EP13_NECK06_HIGH_006", name: "Isidavie Prideti Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 44525, sellPrice: 0, equipType1: "Neck", minLevel: 470, equipExpGroup: "Equip", minAtk: 934, maxAtk: 934, mAtk: 934, script: { strArg: "Isdavi", numArg1: 13 } }, +{ itemId: 11100015, className: "EP14_RAID_CLOTH_TOP", name: "Falouros Robe", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Shirt", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "Goddess_Armor_Lv480" } }, +{ itemId: 11100016, className: "EP14_RAID_CLOTH_LEG", name: "Falouros Pant", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Pants", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "Goddess_Armor_Lv480" } }, +{ itemId: 11100017, className: "EP14_RAID_CLOTH_FOOT", name: "Falouros Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Boots", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "Goddess_Armor_Lv480" } }, +{ itemId: 11100018, className: "EP14_RAID_CLOTH_HAND", name: "Falouros Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Gloves", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "Goddess_Armor_Lv480" } }, +{ itemId: 11100019, className: "EP14_RAID_LEATHER_TOP", name: "Falouros Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Shirt", minLevel: 480, equipExpGroup: "Equip", def: 44856, mDef: 44856, material: "Leather", script: { strArg: "Goddess_Armor_Lv480" } }, +{ itemId: 11100020, className: "EP14_RAID_LEATHER_LEG", name: "Falouros Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Pants", minLevel: 480, equipExpGroup: "Equip", def: 44856, mDef: 44856, material: "Leather", script: { strArg: "Goddess_Armor_Lv480" } }, +{ itemId: 11100021, className: "EP14_RAID_LEATHER_FOOT", name: "Falouros Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Boots", minLevel: 480, equipExpGroup: "Equip", def: 44856, mDef: 44856, material: "Leather", script: { strArg: "Goddess_Armor_Lv480" } }, +{ itemId: 11100022, className: "EP14_RAID_LEATHER_HAND", name: "Falouros Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Gloves", minLevel: 480, equipExpGroup: "Equip", def: 44856, mDef: 44856, material: "Leather", script: { strArg: "Goddess_Armor_Lv480" } }, +{ itemId: 11100023, className: "EP14_RAID_PLATE_TOP", name: "Falouros Plate Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Shirt", minLevel: 480, equipExpGroup: "Equip", def: 59808, mDef: 29904, material: "Iron", script: { strArg: "Goddess_Armor_Lv480" } }, +{ itemId: 11100024, className: "EP14_RAID_PLATE_LEG", name: "Falouros Plate Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Pants", minLevel: 480, equipExpGroup: "Equip", def: 59808, mDef: 29904, material: "Iron", script: { strArg: "Goddess_Armor_Lv480" } }, +{ itemId: 11100025, className: "EP14_RAID_PLATE_FOOT", name: "Falouros Greaves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Boots", minLevel: 480, equipExpGroup: "Equip", def: 59808, mDef: 29904, material: "Iron", script: { strArg: "Goddess_Armor_Lv480" } }, +{ itemId: 11100026, className: "EP14_RAID_PLATE_HAND", name: "Falouros Plate Gauntlet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Gloves", minLevel: 480, equipExpGroup: "Equip", def: 59808, mDef: 29904, material: "Iron", script: { strArg: "Goddess_Armor_Lv480" } }, +{ itemId: 11100034, className: "EP14_RAID_SHIELD", name: "Reservoir Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 44616, sellPrice: 0, equipType1: "Shield", minLevel: 480, equipExpGroup: "Equip", def: 30551, mDef: 30551, material: "Shield", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100055, className: "EP14_NECK_01", name: "Baud Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47650, sellPrice: 0, equipType1: "Neck", minLevel: 490, equipExpGroup: "Equip", minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 1800, script: { strArg: "baud", numArg1: 14 } }, +{ itemId: 11100056, className: "EP14_BRC_01", name: "Baud Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47650, sellPrice: 0, equipType1: "Ring", minLevel: 490, equipExpGroup: "Equip", minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 600, script: { strArg: "baud", numArg1: 14 } }, +{ itemId: 11100057, className: "EP14_NECK_02", name: "Baud Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47650, sellPrice: 0, equipType1: "Neck", minLevel: 490, equipExpGroup: "Equip", minAtk: 2500, maxAtk: 2500, mAtk: 2500, addDef: 9900, addMDef: 9900, script: { strArg: "baud", numArg1: 14 } }, +{ itemId: 11100058, className: "EP14_BRC_02", name: "Baud Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47650, sellPrice: 0, equipType1: "Ring", minLevel: 490, equipExpGroup: "Equip", minAtk: 2500, maxAtk: 2500, mAtk: 2500, addDef: 3300, addMDef: 3300, script: { strArg: "baud", numArg1: 14 } }, +{ itemId: 11100063, className: "EP16_NECK_01", name: "Nebiltis Pyktis Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Neck", minLevel: 510, equipExpGroup: "Equip", minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 2160, script: { strArg: "EP16_acc", numArg1: 16 } }, +{ itemId: 11100064, className: "EP16_BRC_01", name: "Nebiltis Pyktis Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Ring", minLevel: 510, equipExpGroup: "Equip", minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 1408, script: { strArg: "EP16_acc", numArg1: 16 } }, +{ itemId: 11100065, className: "EP16_NECK_02", name: "Nebiltis Kantribe Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Neck", minLevel: 510, equipExpGroup: "Equip", minAtk: 2500, maxAtk: 2500, mAtk: 2500, script: { strArg: "EP16_acc", numArg1: 16 } }, +{ itemId: 11100066, className: "EP16_BRC_02", name: "Nebiltis Kantribe Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Ring", minLevel: 510, equipExpGroup: "Equip", minAtk: 2500, maxAtk: 2500, mAtk: 2500, script: { strArg: "EP16_acc", numArg1: 16 } }, +{ itemId: 11100067, className: "EP16_NECK_03", name: "Nebiltis Juoda Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Neck", minLevel: 510, equipExpGroup: "Equip", minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 2160, script: { strArg: "EP16_acc", numArg1: 16 } }, +{ itemId: 11100068, className: "EP16_BRC_03", name: "Nebiltis Juoda Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Ring", minLevel: 510, equipExpGroup: "Equip", minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 1408, script: { strArg: "EP16_acc", numArg1: 16 } }, +{ itemId: 11100069, className: "EP16_NECK_04", name: "Nebiltis Triukas Necklace", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Neck", minLevel: 510, equipExpGroup: "Equip", minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 2160, script: { strArg: "EP16_acc", numArg1: 16 } }, +{ itemId: 11100070, className: "EP16_BRC_04", name: "Nebiltis Triukas Bracelet", type: "Equip", group: "Armor", weight: 45, maxStack: 1, price: 47737, sellPrice: 0, equipType1: "Ring", minLevel: 510, equipExpGroup: "Equip", minAtk: 2500, maxAtk: 2500, mAtk: 2500, middleSizeBonus: 1408, script: { strArg: "EP16_acc", numArg1: 16 } }, +{ itemId: 11100100, className: "EP14_goddess_noble_1_TOP", name: "[Lv1] Goddess Treasure (Power of Fire) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Shirt", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11100101, className: "EP14_goddess_noble_1_LEG", name: "[Lv1] Goddess Treasure (Power of Fire) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Pants", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11100102, className: "EP14_goddess_noble_1_FOOT", name: "[Lv1] Goddess Treasure (Power of Fire) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Boots", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11100103, className: "EP14_goddess_noble_1_HAND", name: "[Lv1] Goddess Treasure (Power of Fire) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Gloves", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11100104, className: "EP14_goddess_noble_1_TOP_Lv2", name: "[Lv2] Goddess Treasure (Power of Fire) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 490, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11100105, className: "EP14_goddess_noble_1_LEG_Lv2", name: "[Lv2] Goddess Treasure (Power of Fire) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 490, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11100106, className: "EP14_goddess_noble_1_FOOT_Lv2", name: "[Lv2] Goddess Treasure (Power of Fire) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 490, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11100107, className: "EP14_goddess_noble_1_HAND_Lv2", name: "[Lv2] Goddess Treasure (Power of Fire) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 490, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11100108, className: "EP14_goddess_noble_1_TOP_Lv3", name: "[Lv3] Goddess Treasure (Power of Fire) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11100109, className: "EP14_goddess_noble_1_LEG_Lv3", name: "[Lv3] Goddess Treasure (Power of Fire) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11100110, className: "EP14_goddess_noble_1_FOOT_Lv3", name: "[Lv3] Goddess Treasure (Power of Fire) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11100111, className: "EP14_goddess_noble_1_HAND_Lv3", name: "[Lv3] Goddess Treasure (Power of Fire) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11100112, className: "EP14_goddess_noble_2_TOP", name: "[Lv1] Goddess Treasure (Fate) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Shirt", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11100113, className: "EP14_goddess_noble_2_LEG", name: "[Lv1] Goddess Treasure (Fate) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Pants", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11100114, className: "EP14_goddess_noble_2_FOOT", name: "[Lv1] Goddess Treasure (Fate) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Boots", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11100115, className: "EP14_goddess_noble_2_HAND", name: "[Lv1] Goddess Treasure (Fate) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Gloves", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11100116, className: "EP14_goddess_noble_2_TOP_Lv2", name: "[Lv2] Goddess Treasure (Fate) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 490, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11100117, className: "EP14_goddess_noble_2_LEG_Lv2", name: "[Lv2] Goddess Treasure (Fate) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 490, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11100118, className: "EP14_goddess_noble_2_FOOT_Lv2", name: "[Lv2] Goddess Treasure (Fate) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 490, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11100119, className: "EP14_goddess_noble_2_HAND_Lv2", name: "[Lv2] Goddess Treasure (Fate) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 490, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11100120, className: "EP14_goddess_noble_2_TOP_Lv3", name: "[Lv3] Goddess Treasure (Fate) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11100121, className: "EP14_goddess_noble_2_LEG_Lv3", name: "[Lv3] Goddess Treasure (Fate) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11100122, className: "EP14_goddess_noble_2_FOOT_Lv3", name: "[Lv3] Goddess Treasure (Fate) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11100123, className: "EP14_goddess_noble_2_HAND_Lv3", name: "[Lv3] Goddess Treasure (Fate) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11100124, className: "EP14_goddess_noble_3_TOP", name: "[Lv1] Goddess Treasure (Fertility) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Shirt", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11100125, className: "EP14_goddess_noble_3_LEG", name: "[Lv1] Goddess Treasure (Fertility) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 66924, sellPrice: 0, equipType1: "Pants", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11100126, className: "EP14_goddess_noble_3_FOOT", name: "[Lv1] Goddess Treasure (Fertility) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Boots", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11100127, className: "EP14_goddess_noble_3_HAND", name: "[Lv1] Goddess Treasure (Fertility) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 33462, sellPrice: 0, equipType1: "Gloves", minLevel: 480, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 1 } }, +{ itemId: 11100128, className: "EP14_goddess_noble_3_TOP_Lv2", name: "[Lv2] Goddess Treasure (Fertility) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 490, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11100129, className: "EP14_goddess_noble_3_LEG_Lv2", name: "[Lv2] Goddess Treasure (Fertility) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 490, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11100130, className: "EP14_goddess_noble_3_FOOT_Lv2", name: "[Lv2] Goddess Treasure (Fertility) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 490, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11100131, className: "EP14_goddess_noble_3_HAND_Lv2", name: "[Lv2] Goddess Treasure (Fertility) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 490, equipExpGroup: "Equip", def: 29904, mDef: 59808, material: "Cloth", script: { strArg: "goddess", numArg1: 2 } }, +{ itemId: 11100132, className: "EP14_goddess_noble_3_TOP_Lv3", name: "[Lv3] Goddess Treasure (Fertility) - Robe", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11100133, className: "EP14_goddess_noble_3_LEG_Lv3", name: "[Lv3] Goddess Treasure (Fertility) - Pants", type: "Equip", group: "Armor", weight: 130, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11100134, className: "EP14_goddess_noble_3_FOOT_Lv3", name: "[Lv3] Goddess Treasure (Fertility) - Boots", type: "Equip", group: "Armor", weight: 35, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, +{ itemId: 11100135, className: "EP14_goddess_noble_3_HAND_Lv3", name: "[Lv3] Goddess Treasure (Fertility) - Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "goddess", numArg1: 3 } }, { itemId: 11102001, className: "Hat_scootergoggle", name: "Popo Scooter Goggles", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, { itemId: 11102002, className: "Hat_jellyzele_crown", name: "Jellyzele Crown", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, { itemId: 11102003, className: "Hat_nightrabbit", name: "Midnight Bunny Short Ear (Male)", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, @@ -4123,32 +4123,32 @@ { itemId: 11104019, className: "ep15unicorn_shield", name: "Unicorn PJs Shield", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 51, mDef: 51, material: "Shield", script: { strArg: "WoodCarving" } }, { itemId: 11104026, className: "ep15explorer_shield", name: "Explorer Shield", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 51, mDef: 51, material: "Shield", script: { strArg: "WoodCarving" } }, { itemId: 11104044, className: "ep15viking_shield", name: "Viking Shield", type: "Equip", group: "Armor", weight: 10, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Shield", minLevel: 1, def: 63, mDef: 63, material: "Shield", script: { strArg: "WoodCarving" } }, -{ itemId: 11107007, className: "EP15_RAID_SHIELD", name: "Demonic Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 47650, sellPrice: 0, equipType1: "Shield", minLevel: 500, def: 42771, mDef: 42771, material: "Shield", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107017, className: "EP15_RAID_CLOTH_TOP", name: "Upinis Robe", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "Goddess_Armor_Lv500" } }, -{ itemId: 11107018, className: "EP15_RAID_CLOTH_LEG", name: "Upinis Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "Goddess_Armor_Lv500" } }, -{ itemId: 11107019, className: "EP15_RAID_CLOTH_FOOT", name: "Upinis Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "Goddess_Armor_Lv500" } }, -{ itemId: 11107020, className: "EP15_RAID_CLOTH_HAND", name: "Upinis Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 500, def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "Goddess_Armor_Lv500" } }, -{ itemId: 11107021, className: "EP15_RAID_LEATHER_TOP", name: "Upinis Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 500, def: 98683, mDef: 98683, material: "Leather", script: { strArg: "Goddess_Armor_Lv500" } }, -{ itemId: 11107022, className: "EP15_RAID_LEATHER_LEG", name: "Upinis Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 500, def: 98683, mDef: 98683, material: "Leather", script: { strArg: "Goddess_Armor_Lv500" } }, -{ itemId: 11107023, className: "EP15_RAID_LEATHER_FOOT", name: "Upinis Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 500, def: 98683, mDef: 98683, material: "Leather", script: { strArg: "Goddess_Armor_Lv500" } }, -{ itemId: 11107024, className: "EP15_RAID_LEATHER_HAND", name: "Upinis Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 500, def: 98683, mDef: 98683, material: "Leather", script: { strArg: "Goddess_Armor_Lv500" } }, -{ itemId: 11107025, className: "EP15_RAID_PLATE_TOP", name: "Upinis Plate Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 500, def: 131577, mDef: 65788, material: "Iron", script: { strArg: "Goddess_Armor_Lv500" } }, -{ itemId: 11107026, className: "EP15_RAID_PLATE_LEG", name: "Upinis Plate Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 500, def: 131577, mDef: 65788, material: "Iron", script: { strArg: "Goddess_Armor_Lv500" } }, -{ itemId: 11107027, className: "EP15_RAID_PLATE_FOOT", name: "Upinis Greaves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 500, def: 131577, mDef: 65788, material: "Iron", script: { strArg: "Goddess_Armor_Lv500" } }, -{ itemId: 11107028, className: "EP15_RAID_PLATE_HAND", name: "Upinis Plate Gauntlet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 500, def: 131577, mDef: 65788, material: "Iron", script: { strArg: "Goddess_Armor_Lv500" } }, -{ itemId: 11107036, className: "EP16_RAID_SHIELD", name: "Black Revelation Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 47912, sellPrice: 0, equipType1: "Shield", minLevel: 520, def: 51328, mDef: 51328, material: "Shield", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107046, className: "EP16_RAID_CLOTH_TOP", name: "Azure Crystal Robe", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71868, sellPrice: 0, equipType1: "Shirt", minLevel: 520, def: 111840, mDef: 223681, material: "Cloth", script: { strArg: "Goddess_Armor_Lv520" } }, -{ itemId: 11107047, className: "EP16_RAID_CLOTH_LEG", name: "Azure Crystal Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71868, sellPrice: 0, equipType1: "Pants", minLevel: 520, def: 111840, mDef: 223681, material: "Cloth", script: { strArg: "Goddess_Armor_Lv520" } }, -{ itemId: 11107048, className: "EP16_RAID_CLOTH_FOOT", name: "Azure Crystal Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 35934, sellPrice: 0, equipType1: "Boots", minLevel: 520, def: 111840, mDef: 223681, material: "Cloth", script: { strArg: "Goddess_Armor_Lv520" } }, -{ itemId: 11107049, className: "EP16_RAID_CLOTH_HAND", name: "Azure Crystal Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35934, sellPrice: 0, equipType1: "Gloves", minLevel: 520, def: 111840, mDef: 223681, material: "Cloth", script: { strArg: "Goddess_Armor_Lv520" } }, -{ itemId: 11107050, className: "EP16_RAID_LEATHER_TOP", name: "Azure Crystal Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71868, sellPrice: 0, equipType1: "Shirt", minLevel: 520, def: 167761, mDef: 167761, material: "Leather", script: { strArg: "Goddess_Armor_Lv520" } }, -{ itemId: 11107051, className: "EP16_RAID_LEATHER_LEG", name: "Azure Crystal Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71868, sellPrice: 0, equipType1: "Pants", minLevel: 520, def: 167761, mDef: 167761, material: "Leather", script: { strArg: "Goddess_Armor_Lv520" } }, -{ itemId: 11107052, className: "EP16_RAID_LEATHER_FOOT", name: "Azure Crystal Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 35934, sellPrice: 0, equipType1: "Boots", minLevel: 520, def: 167761, mDef: 167761, material: "Leather", script: { strArg: "Goddess_Armor_Lv520" } }, -{ itemId: 11107053, className: "EP16_RAID_LEATHER_HAND", name: "Azure Crystal Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35934, sellPrice: 0, equipType1: "Gloves", minLevel: 520, def: 167761, mDef: 167761, material: "Leather", script: { strArg: "Goddess_Armor_Lv520" } }, -{ itemId: 11107054, className: "EP16_RAID_PLATE_TOP", name: "Azure Crystal Plate Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71868, sellPrice: 0, equipType1: "Shirt", minLevel: 520, def: 223681, mDef: 111840, material: "Iron", script: { strArg: "Goddess_Armor_Lv520" } }, -{ itemId: 11107055, className: "EP16_RAID_PLATE_LEG", name: "Azure Crystal Plate Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71868, sellPrice: 0, equipType1: "Pants", minLevel: 520, def: 223681, mDef: 111840, material: "Iron", script: { strArg: "Goddess_Armor_Lv520" } }, -{ itemId: 11107056, className: "EP16_RAID_PLATE_FOOT", name: "Azure Crystal Greaves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 35934, sellPrice: 0, equipType1: "Boots", minLevel: 520, def: 223681, mDef: 111840, material: "Iron", script: { strArg: "Goddess_Armor_Lv520" } }, -{ itemId: 11107057, className: "EP16_RAID_PLATE_HAND", name: "Azure Crystal Plate Gauntlet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35934, sellPrice: 0, equipType1: "Gloves", minLevel: 520, def: 223681, mDef: 111840, material: "Iron", script: { strArg: "Goddess_Armor_Lv520" } }, +{ itemId: 11107007, className: "EP15_RAID_SHIELD", name: "Demonic Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 47650, sellPrice: 0, equipType1: "Shield", minLevel: 500, equipExpGroup: "Equip", def: 42771, mDef: 42771, material: "Shield", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107017, className: "EP15_RAID_CLOTH_TOP", name: "Upinis Robe", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "Goddess_Armor_Lv500" } }, +{ itemId: 11107018, className: "EP15_RAID_CLOTH_LEG", name: "Upinis Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "Goddess_Armor_Lv500" } }, +{ itemId: 11107019, className: "EP15_RAID_CLOTH_FOOT", name: "Upinis Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "Goddess_Armor_Lv500" } }, +{ itemId: 11107020, className: "EP15_RAID_CLOTH_HAND", name: "Upinis Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 500, equipExpGroup: "Equip", def: 65788, mDef: 131577, material: "Cloth", script: { strArg: "Goddess_Armor_Lv500" } }, +{ itemId: 11107021, className: "EP15_RAID_LEATHER_TOP", name: "Upinis Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 98683, mDef: 98683, material: "Leather", script: { strArg: "Goddess_Armor_Lv500" } }, +{ itemId: 11107022, className: "EP15_RAID_LEATHER_LEG", name: "Upinis Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 500, equipExpGroup: "Equip", def: 98683, mDef: 98683, material: "Leather", script: { strArg: "Goddess_Armor_Lv500" } }, +{ itemId: 11107023, className: "EP15_RAID_LEATHER_FOOT", name: "Upinis Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 500, equipExpGroup: "Equip", def: 98683, mDef: 98683, material: "Leather", script: { strArg: "Goddess_Armor_Lv500" } }, +{ itemId: 11107024, className: "EP15_RAID_LEATHER_HAND", name: "Upinis Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 500, equipExpGroup: "Equip", def: 98683, mDef: 98683, material: "Leather", script: { strArg: "Goddess_Armor_Lv500" } }, +{ itemId: 11107025, className: "EP15_RAID_PLATE_TOP", name: "Upinis Plate Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 131577, mDef: 65788, material: "Iron", script: { strArg: "Goddess_Armor_Lv500" } }, +{ itemId: 11107026, className: "EP15_RAID_PLATE_LEG", name: "Upinis Plate Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71476, sellPrice: 0, equipType1: "Pants", minLevel: 500, equipExpGroup: "Equip", def: 131577, mDef: 65788, material: "Iron", script: { strArg: "Goddess_Armor_Lv500" } }, +{ itemId: 11107027, className: "EP15_RAID_PLATE_FOOT", name: "Upinis Greaves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Boots", minLevel: 500, equipExpGroup: "Equip", def: 131577, mDef: 65788, material: "Iron", script: { strArg: "Goddess_Armor_Lv500" } }, +{ itemId: 11107028, className: "EP15_RAID_PLATE_HAND", name: "Upinis Plate Gauntlet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35738, sellPrice: 0, equipType1: "Gloves", minLevel: 500, equipExpGroup: "Equip", def: 131577, mDef: 65788, material: "Iron", script: { strArg: "Goddess_Armor_Lv500" } }, +{ itemId: 11107036, className: "EP16_RAID_SHIELD", name: "Black Revelation Shield", type: "Equip", group: "Armor", weight: 70, maxStack: 1, price: 47912, sellPrice: 0, equipType1: "Shield", minLevel: 520, equipExpGroup: "Equip", def: 51328, mDef: 51328, material: "Shield", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107046, className: "EP16_RAID_CLOTH_TOP", name: "Azure Crystal Robe", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71868, sellPrice: 0, equipType1: "Shirt", minLevel: 520, equipExpGroup: "Equip", def: 111840, mDef: 223681, material: "Cloth", script: { strArg: "Goddess_Armor_Lv520" } }, +{ itemId: 11107047, className: "EP16_RAID_CLOTH_LEG", name: "Azure Crystal Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71868, sellPrice: 0, equipType1: "Pants", minLevel: 520, equipExpGroup: "Equip", def: 111840, mDef: 223681, material: "Cloth", script: { strArg: "Goddess_Armor_Lv520" } }, +{ itemId: 11107048, className: "EP16_RAID_CLOTH_FOOT", name: "Azure Crystal Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 35934, sellPrice: 0, equipType1: "Boots", minLevel: 520, equipExpGroup: "Equip", def: 111840, mDef: 223681, material: "Cloth", script: { strArg: "Goddess_Armor_Lv520" } }, +{ itemId: 11107049, className: "EP16_RAID_CLOTH_HAND", name: "Azure Crystal Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35934, sellPrice: 0, equipType1: "Gloves", minLevel: 520, equipExpGroup: "Equip", def: 111840, mDef: 223681, material: "Cloth", script: { strArg: "Goddess_Armor_Lv520" } }, +{ itemId: 11107050, className: "EP16_RAID_LEATHER_TOP", name: "Azure Crystal Leather Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71868, sellPrice: 0, equipType1: "Shirt", minLevel: 520, equipExpGroup: "Equip", def: 167761, mDef: 167761, material: "Leather", script: { strArg: "Goddess_Armor_Lv520" } }, +{ itemId: 11107051, className: "EP16_RAID_LEATHER_LEG", name: "Azure Crystal Leather Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71868, sellPrice: 0, equipType1: "Pants", minLevel: 520, equipExpGroup: "Equip", def: 167761, mDef: 167761, material: "Leather", script: { strArg: "Goddess_Armor_Lv520" } }, +{ itemId: 11107052, className: "EP16_RAID_LEATHER_FOOT", name: "Azure Crystal Leather Boots", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 35934, sellPrice: 0, equipType1: "Boots", minLevel: 520, equipExpGroup: "Equip", def: 167761, mDef: 167761, material: "Leather", script: { strArg: "Goddess_Armor_Lv520" } }, +{ itemId: 11107053, className: "EP16_RAID_LEATHER_HAND", name: "Azure Crystal Leather Gloves", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35934, sellPrice: 0, equipType1: "Gloves", minLevel: 520, equipExpGroup: "Equip", def: 167761, mDef: 167761, material: "Leather", script: { strArg: "Goddess_Armor_Lv520" } }, +{ itemId: 11107054, className: "EP16_RAID_PLATE_TOP", name: "Azure Crystal Plate Armor", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71868, sellPrice: 0, equipType1: "Shirt", minLevel: 520, equipExpGroup: "Equip", def: 223681, mDef: 111840, material: "Iron", script: { strArg: "Goddess_Armor_Lv520" } }, +{ itemId: 11107055, className: "EP16_RAID_PLATE_LEG", name: "Azure Crystal Plate Pants", type: "Equip", group: "Armor", weight: 170, maxStack: 1, price: 71868, sellPrice: 0, equipType1: "Pants", minLevel: 520, equipExpGroup: "Equip", def: 223681, mDef: 111840, material: "Iron", script: { strArg: "Goddess_Armor_Lv520" } }, +{ itemId: 11107056, className: "EP16_RAID_PLATE_FOOT", name: "Azure Crystal Greaves", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 35934, sellPrice: 0, equipType1: "Boots", minLevel: 520, equipExpGroup: "Equip", def: 223681, mDef: 111840, material: "Iron", script: { strArg: "Goddess_Armor_Lv520" } }, +{ itemId: 11107057, className: "EP16_RAID_PLATE_HAND", name: "Azure Crystal Plate Gauntlet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 35934, sellPrice: 0, equipType1: "Gloves", minLevel: 520, equipExpGroup: "Equip", def: 223681, mDef: 111840, material: "Iron", script: { strArg: "Goddess_Armor_Lv520" } }, { itemId: 11108000, className: "costume_Char2_160", name: "Kadiatcha Costume", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Outer", minLevel: 1 }, { itemId: 11108002, className: "Hat_m_Char2_160", name: "High Shaman Mask (Male)", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, { itemId: 11108003, className: "Hat_f_Char2_160", name: "High Shaman Mask (Female)", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, @@ -4161,66 +4161,66 @@ { itemId: 11108012, className: "Hat_vanquisher", name: "Vanquisher Head Gear", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Hat", minLevel: 1 }, { itemId: 11108013, className: "costume_Char2_26", name: "Vulture Costume", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Outer", minLevel: 1 }, { itemId: 11108014, className: "costume_Char5_20", name: "Vulture Costume", type: "Equip", group: "Armor", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Outer", minLevel: 1 }, -{ itemId: 11109009, className: "SHD02_101_16", name: "[Lada] Black Wooden Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Shield", minLevel: 500, def: 6544, mDef: 6544, material: "Shield", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109010, className: "SHD02_102_16", name: "[Lada] Oak Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Shield", minLevel: 500, def: 6544, mDef: 6544, material: "Shield", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109011, className: "SHD02_103_16", name: "[Lada] Savage Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 47650, sellPrice: 436, equipType1: "Shield", minLevel: 500, def: 6544, mDef: 6544, material: "Shield", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109023, className: "TOP02_103_16", name: "[Lada] Tenet Chainmail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 71476, sellPrice: 907, equipType1: "Shirt", minLevel: 500, def: 3636, mDef: 1818, material: "Iron", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109024, className: "TOP02_107_16", name: "[Lada] Insect Mail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 71476, sellPrice: 1360, equipType1: "Shirt", minLevel: 500, def: 3636, mDef: 1818, material: "Iron", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109025, className: "TOP02_110_16", name: "[Lada] Light Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71476, sellPrice: 1868, equipType1: "Shirt", minLevel: 500, def: 3636, mDef: 1818, material: "Iron", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109026, className: "TOP02_105_16", name: "[Lada] Prova Robe", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 71476, sellPrice: 1360, equipType1: "Shirt", minLevel: 500, def: 1818, mDef: 3636, material: "Cloth", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109027, className: "TOP02_111_16", name: "[Lada] Magnus Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 71476, sellPrice: 2406, equipType1: "Shirt", minLevel: 500, def: 1818, mDef: 3636, material: "Cloth", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109028, className: "TOP02_124_16", name: "[Lada] Dio Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 71476, sellPrice: 221, equipType1: "Shirt", minLevel: 500, def: 1818, mDef: 3636, material: "Cloth", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109029, className: "TOP02_127_16", name: "[Lada] Thresh Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 71476, sellPrice: 518, equipType1: "Shirt", minLevel: 500, def: 1818, mDef: 3636, material: "Cloth", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109030, className: "TOP02_101_16", name: "[Lada] Crimson Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 71476, sellPrice: 518, equipType1: "Shirt", minLevel: 500, def: 2727, mDef: 2727, material: "Leather", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109031, className: "TOP02_114_16", name: "[Lada] Silver Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 71476, sellPrice: 2431, equipType1: "Shirt", minLevel: 500, def: 3636, mDef: 1818, material: "Iron", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109035, className: "NECK02_101_16", name: "[Lada] String Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Neck", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109036, className: "NECK02_102_16", name: "[Lada] Panto Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Neck", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109037, className: "NECK02_103_16", name: "[Lada] Pyrlight Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 907, equipType1: "Neck", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109038, className: "NECK02_104_16", name: "[Lada] Cryolight Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 907, equipType1: "Neck", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109039, className: "NECK02_105_16", name: "[Lada] Magic Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 1102, equipType1: "Neck", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109040, className: "NECK02_106_16", name: "[Lada] Strength Pendant", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47650, sellPrice: 1621, equipType1: "Neck", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109041, className: "BRC01_110_16", name: "[Lada] Leather Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Ring", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109009, className: "SHD02_101_16", name: "[Lada] Black Wooden Shield", type: "Equip", group: "Armor", weight: 90, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Shield", minLevel: 500, equipExpGroup: "Equip", def: 6544, mDef: 6544, material: "Shield", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109010, className: "SHD02_102_16", name: "[Lada] Oak Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Shield", minLevel: 500, equipExpGroup: "Equip", def: 6544, mDef: 6544, material: "Shield", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109011, className: "SHD02_103_16", name: "[Lada] Savage Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 47650, sellPrice: 436, equipType1: "Shield", minLevel: 500, equipExpGroup: "Equip", def: 6544, mDef: 6544, material: "Shield", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109023, className: "TOP02_103_16", name: "[Lada] Tenet Chainmail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 71476, sellPrice: 907, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 3636, mDef: 1818, material: "Iron", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109024, className: "TOP02_107_16", name: "[Lada] Insect Mail", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 71476, sellPrice: 1360, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 3636, mDef: 1818, material: "Iron", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109025, className: "TOP02_110_16", name: "[Lada] Light Plate Armor", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71476, sellPrice: 1868, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 3636, mDef: 1818, material: "Iron", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109026, className: "TOP02_105_16", name: "[Lada] Prova Robe", type: "Equip", group: "Armor", weight: 110, maxStack: 1, price: 71476, sellPrice: 1360, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 1818, mDef: 3636, material: "Cloth", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109027, className: "TOP02_111_16", name: "[Lada] Magnus Robe", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 71476, sellPrice: 2406, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 1818, mDef: 3636, material: "Cloth", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109028, className: "TOP02_124_16", name: "[Lada] Dio Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 71476, sellPrice: 221, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 1818, mDef: 3636, material: "Cloth", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109029, className: "TOP02_127_16", name: "[Lada] Thresh Robe", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 71476, sellPrice: 518, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 1818, mDef: 3636, material: "Cloth", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109030, className: "TOP02_101_16", name: "[Lada] Crimson Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 71476, sellPrice: 518, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 2727, mDef: 2727, material: "Leather", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109031, className: "TOP02_114_16", name: "[Lada] Silver Plate Armor", type: "Equip", group: "Armor", weight: 210, maxStack: 1, price: 71476, sellPrice: 2431, equipType1: "Shirt", minLevel: 500, equipExpGroup: "Equip", def: 3636, mDef: 1818, material: "Iron", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109035, className: "NECK02_101_16", name: "[Lada] String Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Neck", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109036, className: "NECK02_102_16", name: "[Lada] Panto Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Neck", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109037, className: "NECK02_103_16", name: "[Lada] Pyrlight Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 907, equipType1: "Neck", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109038, className: "NECK02_104_16", name: "[Lada] Cryolight Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 907, equipType1: "Neck", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109039, className: "NECK02_105_16", name: "[Lada] Magic Talisman", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 1102, equipType1: "Neck", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109040, className: "NECK02_106_16", name: "[Lada] Strength Pendant", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47650, sellPrice: 1621, equipType1: "Neck", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109041, className: "BRC01_110_16", name: "[Lada] Leather Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Ring", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, { itemId: 11109042, className: "BRC01_111_16", name: "[Lada] Light Ronesa's Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 73, equipType1: "Ring", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109043, className: "BRC01_112_16", name: "[Lada] Superior Ronesa's Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Ring", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109044, className: "BRC01_113_16", name: "[Lada] Ronesa's Ring Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Ring", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109045, className: "BRC01_114_16", name: "[Lada] Ronesa's Noble Bracelet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Ring", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109046, className: "BRC01_115_16", name: "[Lada] Iron Bangle", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Ring", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109047, className: "NECK02_107_16", name: "[Lada] Pyluma Chain", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47650, sellPrice: 1862, equipType1: "Neck", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109048, className: "NECK02_108_16", name: "[Lada] Icema Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 1862, equipType1: "Neck", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109049, className: "NECK02_109_16", name: "[Lada] Poizma Chain", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47650, sellPrice: 1862, equipType1: "Neck", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109050, className: "BRC02_101_16", name: "[Lada] Crystal Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Ring", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109051, className: "BRC02_102_16", name: "[Lada] Shine Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Ring", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109052, className: "BRC02_103_16", name: "[Lada] Battle Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 907, equipType1: "Ring", minLevel: 500, minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109062, className: "SHD02_104_16", name: "[Jurate] Zalia Kite Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 47912, sellPrice: 907, equipType1: "Shield", minLevel: 520, def: 6804, mDef: 6804, material: "Shield", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109063, className: "SHD02_105_16", name: "[Jurate] Superior Kite Shield", type: "Equip", group: "Armor", weight: 140, maxStack: 1, price: 47912, sellPrice: 907, equipType1: "Shield", minLevel: 520, def: 6804, mDef: 6804, material: "Shield", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109064, className: "SHD02_106_16", name: "[Jurate] Bead Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 47912, sellPrice: 907, equipType1: "Shield", minLevel: 520, def: 6804, mDef: 6804, material: "Shield", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109080, className: "TOP02_106_16", name: "[Jurate] Studded Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 71868, sellPrice: 1360, equipType1: "Shirt", minLevel: 520, def: 2835, mDef: 2835, material: "Leather", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109081, className: "TOP02_109_16", name: "[Jurate] Red Veris Tunic", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 71868, sellPrice: 1572, equipType1: "Shirt", minLevel: 520, def: 2835, mDef: 2835, material: "Leather", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109082, className: "TOP02_112_16", name: "[Jurate] Pokubon Leather Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 71868, sellPrice: 2431, equipType1: "Shirt", minLevel: 520, def: 2835, mDef: 2835, material: "Leather", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109083, className: "TOP02_113_16", name: "[Jurate] Drake Leather Tunic", type: "Equip", group: "Armor", weight: 165, maxStack: 1, price: 71868, sellPrice: 2431, equipType1: "Shirt", minLevel: 520, def: 2835, mDef: 2835, material: "Leather", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109084, className: "TOP02_118_16", name: "[Jurate] Follower Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 71868, sellPrice: 518, equipType1: "Shirt", minLevel: 520, def: 2835, mDef: 2835, material: "Leather", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109085, className: "TOP02_119_16", name: "[Jurate] Mummyghast Mail", type: "Equip", group: "Armor", weight: 950, maxStack: 1, price: 71868, sellPrice: 518, equipType1: "Shirt", minLevel: 520, def: 3780, mDef: 1890, material: "Iron", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109086, className: "TOP02_123_16", name: "[Jurate] Cafrisun Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 71868, sellPrice: 518, equipType1: "Shirt", minLevel: 520, def: 2835, mDef: 2835, material: "Leather", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109087, className: "TOP02_125_16", name: "[Jurate] Dio Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 71868, sellPrice: 518, equipType1: "Shirt", minLevel: 520, def: 2835, mDef: 2835, material: "Leather", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109088, className: "TOP02_126_16", name: "[Jurate] Dio Chainmail", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71868, sellPrice: 518, equipType1: "Shirt", minLevel: 520, def: 3780, mDef: 1890, material: "Iron", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109092, className: "NECK02_110_16", name: "[Jurate] Lightna Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 1862, equipType1: "Neck", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109093, className: "NECK02_111_16", name: "[Jurate] Health Stone", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47912, sellPrice: 2582, equipType1: "Neck", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109094, className: "NECK02_112_16", name: "[Jurate] Warrior Pendant", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47912, sellPrice: 2950, equipType1: "Neck", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109095, className: "NECK02_113_16", name: "[Jurate] Cyclops Eye", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 907, equipType1: "Neck", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109096, className: "NECK02_114_16", name: "[Jurate] Bone Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 345, equipType1: "Neck", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109097, className: "NECK02_115_16", name: "[Jurate] Carnivore Necklace", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47912, sellPrice: 345, equipType1: "Neck", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109098, className: "BRC01_116_16", name: "[Jurate] Superior Bangle of Health", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 1621, equipType1: "Ring", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109099, className: "BRC01_117_16", name: "[Jurate] Superior Magical Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 1621, equipType1: "Ring", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109100, className: "BRC01_118_16", name: "[Jurate] Superior Bangle of Accuracy", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 1621, equipType1: "Ring", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109101, className: "BRC01_119_16", name: "[Jurate] Light Superior Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 1621, equipType1: "Ring", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109102, className: "BRC01_120_16", name: "[Jurate] Light Iron Bangle", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47912, sellPrice: 345, equipType1: "Ring", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109043, className: "BRC01_112_16", name: "[Lada] Superior Ronesa's Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Ring", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109044, className: "BRC01_113_16", name: "[Lada] Ronesa's Ring Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Ring", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109045, className: "BRC01_114_16", name: "[Lada] Ronesa's Noble Bracelet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Ring", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109046, className: "BRC01_115_16", name: "[Lada] Iron Bangle", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Ring", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109047, className: "NECK02_107_16", name: "[Lada] Pyluma Chain", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47650, sellPrice: 1862, equipType1: "Neck", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109048, className: "NECK02_108_16", name: "[Lada] Icema Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 1862, equipType1: "Neck", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109049, className: "NECK02_109_16", name: "[Lada] Poizma Chain", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47650, sellPrice: 1862, equipType1: "Neck", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109050, className: "BRC02_101_16", name: "[Lada] Crystal Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Ring", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109051, className: "BRC02_102_16", name: "[Lada] Shine Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 345, equipType1: "Ring", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109052, className: "BRC02_103_16", name: "[Lada] Battle Bracelet", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47650, sellPrice: 907, equipType1: "Ring", minLevel: 500, equipExpGroup: "Equip", minAtk: 312, maxAtk: 312, mAtk: 312, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109062, className: "SHD02_104_16", name: "[Jurate] Zalia Kite Shield", type: "Equip", group: "Armor", weight: 80, maxStack: 1, price: 47912, sellPrice: 907, equipType1: "Shield", minLevel: 520, equipExpGroup: "Equip", def: 6804, mDef: 6804, material: "Shield", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109063, className: "SHD02_105_16", name: "[Jurate] Superior Kite Shield", type: "Equip", group: "Armor", weight: 140, maxStack: 1, price: 47912, sellPrice: 907, equipType1: "Shield", minLevel: 520, equipExpGroup: "Equip", def: 6804, mDef: 6804, material: "Shield", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109064, className: "SHD02_106_16", name: "[Jurate] Bead Shield", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 47912, sellPrice: 907, equipType1: "Shield", minLevel: 520, equipExpGroup: "Equip", def: 6804, mDef: 6804, material: "Shield", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109080, className: "TOP02_106_16", name: "[Jurate] Studded Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 71868, sellPrice: 1360, equipType1: "Shirt", minLevel: 520, equipExpGroup: "Equip", def: 2835, mDef: 2835, material: "Leather", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109081, className: "TOP02_109_16", name: "[Jurate] Red Veris Tunic", type: "Equip", group: "Armor", weight: 100, maxStack: 1, price: 71868, sellPrice: 1572, equipType1: "Shirt", minLevel: 520, equipExpGroup: "Equip", def: 2835, mDef: 2835, material: "Leather", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109082, className: "TOP02_112_16", name: "[Jurate] Pokubon Leather Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 71868, sellPrice: 2431, equipType1: "Shirt", minLevel: 520, equipExpGroup: "Equip", def: 2835, mDef: 2835, material: "Leather", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109083, className: "TOP02_113_16", name: "[Jurate] Drake Leather Tunic", type: "Equip", group: "Armor", weight: 165, maxStack: 1, price: 71868, sellPrice: 2431, equipType1: "Shirt", minLevel: 520, equipExpGroup: "Equip", def: 2835, mDef: 2835, material: "Leather", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109084, className: "TOP02_118_16", name: "[Jurate] Follower Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 71868, sellPrice: 518, equipType1: "Shirt", minLevel: 520, equipExpGroup: "Equip", def: 2835, mDef: 2835, material: "Leather", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109085, className: "TOP02_119_16", name: "[Jurate] Mummyghast Mail", type: "Equip", group: "Armor", weight: 950, maxStack: 1, price: 71868, sellPrice: 518, equipType1: "Shirt", minLevel: 520, equipExpGroup: "Equip", def: 3780, mDef: 1890, material: "Iron", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109086, className: "TOP02_123_16", name: "[Jurate] Cafrisun Armor", type: "Equip", group: "Armor", weight: 150, maxStack: 1, price: 71868, sellPrice: 518, equipType1: "Shirt", minLevel: 520, equipExpGroup: "Equip", def: 2835, mDef: 2835, material: "Leather", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109087, className: "TOP02_125_16", name: "[Jurate] Dio Leather Armor", type: "Equip", group: "Armor", weight: 120, maxStack: 1, price: 71868, sellPrice: 518, equipType1: "Shirt", minLevel: 520, equipExpGroup: "Equip", def: 2835, mDef: 2835, material: "Leather", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109088, className: "TOP02_126_16", name: "[Jurate] Dio Chainmail", type: "Equip", group: "Armor", weight: 180, maxStack: 1, price: 71868, sellPrice: 518, equipType1: "Shirt", minLevel: 520, equipExpGroup: "Equip", def: 3780, mDef: 1890, material: "Iron", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109092, className: "NECK02_110_16", name: "[Jurate] Lightna Chain", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 1862, equipType1: "Neck", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109093, className: "NECK02_111_16", name: "[Jurate] Health Stone", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47912, sellPrice: 2582, equipType1: "Neck", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109094, className: "NECK02_112_16", name: "[Jurate] Warrior Pendant", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47912, sellPrice: 2950, equipType1: "Neck", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109095, className: "NECK02_113_16", name: "[Jurate] Cyclops Eye", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 907, equipType1: "Neck", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109096, className: "NECK02_114_16", name: "[Jurate] Bone Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 345, equipType1: "Neck", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109097, className: "NECK02_115_16", name: "[Jurate] Carnivore Necklace", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47912, sellPrice: 345, equipType1: "Neck", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109098, className: "BRC01_116_16", name: "[Jurate] Superior Bangle of Health", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 1621, equipType1: "Ring", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109099, className: "BRC01_117_16", name: "[Jurate] Superior Magical Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 1621, equipType1: "Ring", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109100, className: "BRC01_118_16", name: "[Jurate] Superior Bangle of Accuracy", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 1621, equipType1: "Ring", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109101, className: "BRC01_119_16", name: "[Jurate] Light Superior Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 1621, equipType1: "Ring", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109102, className: "BRC01_120_16", name: "[Jurate] Light Iron Bangle", type: "Equip", group: "Armor", weight: 50, maxStack: 1, price: 47912, sellPrice: 345, equipType1: "Ring", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, { itemId: 11109103, className: "BRC01_121_16", name: "[Jurate] Ronesa's Klaipeda Bracelet", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 47912, sellPrice: 907, equipType1: "Ring", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109104, className: "NECK02_116_16", name: "[Jurate] Kepa Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 274, equipType1: "Neck", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109105, className: "NECK02_117_16", name: "[Jurate] Formine Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 345, equipType1: "Neck", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109106, className: "NECK02_118_16", name: "[Jurate] Nevellet Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 0, equipType1: "Neck", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109107, className: "BRC01_122_16", name: "[Jurate] Wooden Bangle", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 47912, sellPrice: 147, equipType1: "Ring", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109108, className: "BRC01_123_16", name: "[Jurate] Vubbe Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 0, equipType1: "Ring", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, -{ itemId: 11109109, className: "BRC01_124_16", name: "[Jurate] Superior Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 345, equipType1: "Ring", minLevel: 520, minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109104, className: "NECK02_116_16", name: "[Jurate] Kepa Pendant", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 274, equipType1: "Neck", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109105, className: "NECK02_117_16", name: "[Jurate] Formine Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 345, equipType1: "Neck", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109106, className: "NECK02_118_16", name: "[Jurate] Nevellet Necklace", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 0, equipType1: "Neck", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109107, className: "BRC01_122_16", name: "[Jurate] Wooden Bangle", type: "Equip", group: "Armor", weight: 30, maxStack: 1, price: 47912, sellPrice: 147, equipType1: "Ring", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109108, className: "BRC01_123_16", name: "[Jurate] Vubbe Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 0, equipType1: "Ring", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, +{ itemId: 11109109, className: "BRC01_124_16", name: "[Jurate] Superior Bangle", type: "Equip", group: "Armor", weight: 40, maxStack: 1, price: 47912, sellPrice: 345, equipType1: "Ring", minLevel: 520, equipExpGroup: "Equip", minAtk: 324, maxAtk: 324, mAtk: 324, script: { strArg: "Moru_goddess" } }, // BELT //--------------------------------------------------------------------------- @@ -4351,247 +4351,247 @@ // Card //--------------------------------------------------------------------------- { itemId: 92110, className: "Episode_Select_Monster_NoTrade", name: "[Episode] Monster Card Selection Card Album", type: "Consume", group: "Card", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "OnlyTeamTrade", numArg1: 1 } }, -{ itemId: 644001, className: "card_Gaigalas", name: "Gaigalas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41220 } }, -{ itemId: 644002, className: "card_GazingGolem", name: "Gazing Golem Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 47322 } }, -{ itemId: 644003, className: "card_Gorgon", name: "Gorgon Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800042 } }, -{ itemId: 644004, className: "card_Golem", name: "Golem Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 450221 } }, -{ itemId: 644005, className: "card_Grinender", name: "Grinender Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41374 } }, -{ itemId: 644006, className: "card_Glass_mole", name: "Glass Mole Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41367 } }, -{ itemId: 644007, className: "card_ginklas", name: "Ginklas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41208 } }, -{ itemId: 644008, className: "card_NetherBovine", name: "Netherbovine Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800001 } }, -{ itemId: 644009, className: "card_necrovanter", name: "Necroventer Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800002 } }, -{ itemId: 644010, className: "card_deadbone", name: "Deadborn Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41203 } }, -{ itemId: 644011, className: "card_Devilglove", name: "Cursed Devilglove Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41385 } }, -{ itemId: 644012, className: "card_Denoptic", name: "Denoptic Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41368 } }, -{ itemId: 644014, className: "card_Ravinepede", name: "Ravinepede Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41236 } }, -{ itemId: 644015, className: "card_Rajatoad", name: "Rajatoad Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41226 } }, -{ itemId: 644016, className: "card_Rocktortuga", name: "Rocktortuga Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41233 } }, -{ itemId: 644017, className: "card_lecifer", name: "Rexipher Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800043 } }, -{ itemId: 644018, className: "card_Reaverpede", name: "Reaverpede Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800044 } }, -{ itemId: 644019, className: "card_spector_gh", name: "Rikaus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800045 } }, -{ itemId: 644022, className: "card_mineloader", name: "Mineloader Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800024 } }, -{ itemId: 644023, className: "card_Malletwyvern", name: "Mallet Wyvern Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 47502 } }, -{ itemId: 644024, className: "card_MagBurk", name: "Magburk Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41350 } }, -{ itemId: 644025, className: "card_Manticen", name: "Manticen Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800030 } }, -{ itemId: 644026, className: "card_Mummyghast", name: "Mummyghast Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800003 } }, -{ itemId: 644027, className: "card_mushcaria", name: "Mushcaria Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41217 } }, -{ itemId: 644028, className: "card_Merge", name: "Merge Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800046 } }, -{ itemId: 644029, className: "card_Mothstem", name: "Mothstem Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800047 } }, -{ itemId: 644030, className: "card_moa", name: "Moa Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41378 } }, -{ itemId: 644031, className: "card_Moyabruka", name: "Moyabruka Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 47325 } }, -{ itemId: 644032, className: "card_Moldyhorn", name: "Moldyhorn Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 47323 } }, -{ itemId: 644033, className: "card_molich", name: "Molich Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 400421 } }, -{ itemId: 644034, className: "card_Minotaurs", name: "Minotaur Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800004 } }, -{ itemId: 644035, className: "card_mirtis", name: "Mirtis Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800048 } }, -{ itemId: 644036, className: "card_bebraspion", name: "Bebraspion Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41222 } }, -{ itemId: 644037, className: "card_bearkaras", name: "Bearkaras Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 401141 } }, -{ itemId: 644038, className: "card_Velorchard", name: "Velorchard Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800049 } }, -{ itemId: 644039, className: "card_Goblin_Warrior", name: "Vubbe Fighter Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 400201 } }, -{ itemId: 644040, className: "card_Goblin_Warrior_red", name: "Red Vubbe Fighter Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 400203 } }, -{ itemId: 644041, className: "card_bramble", name: "Bramble Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 400901 } }, -{ itemId: 644042, className: "card_BiteRegina", name: "Biteregina Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800050 } }, -{ itemId: 644043, className: "card_Strongholder", name: "Cyclops Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800005 } }, -{ itemId: 644044, className: "card_Saltistter", name: "Saltistter Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41207 } }, -{ itemId: 644045, className: "card_salamander", name: "Salamander Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41205 } }, -{ itemId: 644046, className: "card_ShadowGaoler", name: "Shadowgaler Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800006 } }, -{ itemId: 644047, className: "card_stone_whale", name: "Stone Whale Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41209 } }, -{ itemId: 644048, className: "card_Shnayim", name: "Shnayim Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41241 } }, -{ itemId: 644049, className: "card_Confinedion", name: "Scorpio Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41379 } }, -{ itemId: 644050, className: "card_Spector_m", name: "Specter Monarch Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800007 } }, -{ itemId: 644051, className: "card_Throneweaver", name: "Throneweaver Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800009 } }, -{ itemId: 644052, className: "card_Ironbaum", name: "Ironbaum Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41354 } }, -{ itemId: 644053, className: "card_archon", name: "Archon Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800027 } }, -{ itemId: 644054, className: "card_Abomination", name: "Abomination Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800029 } }, -{ itemId: 644055, className: "card_Unknocker", name: "Unknocker Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800010 } }, -{ itemId: 644056, className: "card_Achat", name: "Achat Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41240 } }, -{ itemId: 644057, className: "card_ellaganos", name: "Ellaganos Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800013 } }, -{ itemId: 644058, className: "card_yekub", name: "Yekub Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41234 } }, -{ itemId: 644059, className: "card_yonazolem", name: "Yonazolem Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41211 } }, -{ itemId: 644061, className: "card_werewolf", name: "Werewolf Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41247 } }, -{ itemId: 644062, className: "card_unicorn", name: "Unicorn Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800051 } }, -{ itemId: 644063, className: "card_Iltiswort", name: "Iltiswort Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41214 } }, -{ itemId: 644064, className: "card_GiantWoodGoblin_red", name: "Giant Red Wood Goblin Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41215 } }, -{ itemId: 644065, className: "card_GiantWoodGoblin", name: "Giant Wood Goblin Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41386 } }, -{ itemId: 644067, className: "card_Chapparition", name: "Chapparition Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800011 } }, -{ itemId: 644068, className: "card_chafer", name: "Chafer Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800052 } }, -{ itemId: 644070, className: "card_Carapace", name: "Carapace Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800053 } }, -{ itemId: 644072, className: "card_onion_the_great", name: "Kepa Chieftain Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41201 } }, -{ itemId: 644073, className: "card_Colimencia", name: "Colimencia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 47318 } }, -{ itemId: 644074, className: "card_Clymen", name: "Clymen Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 47316 } }, -{ itemId: 644075, className: "card_Kimeleech", name: "Kirmeleech Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800054 } }, -{ itemId: 644076, className: "card_tutu", name: "Tutu Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57161 } }, -{ itemId: 644077, className: "card_TombLord", name: "Tomb Lord Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800055 } }, -{ itemId: 644078, className: "card_poata", name: "Poata Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41202 } }, -{ itemId: 644079, className: "card_Sequoia_blue", name: "Sequoia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 401661 } }, -{ itemId: 644080, className: "card_Harpeia", name: "Harpeia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800012 } }, -{ itemId: 644081, className: "card_honeypin", name: "Honeypin Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800056 } }, -{ itemId: 644082, className: "card_helgasercle", name: "Helgasercle Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800057 } }, -{ itemId: 644083, className: "card_Spector_F", name: "Specter of Deceit Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800080 } }, -{ itemId: 644084, className: "card_hydra", name: "Hydra Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 47313 } }, -{ itemId: 644085, className: "card_rajapearl", name: "Rajapearl Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41243 } }, -{ itemId: 644087, className: "card_fallen_statue", name: "Corrupted Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800071 } }, -{ itemId: 644088, className: "card_lepus", name: "Lepus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41216 } }, -{ itemId: 644089, className: "card_sparnas", name: "Sparnas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41224 } }, -{ itemId: 644092, className: "card_Sparnanman", name: "Sparnasman Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800008 } }, -{ itemId: 644093, className: "card_Kerberos", name: "Cerberus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800028 } }, -{ itemId: 644094, className: "card_capria", name: "Capria Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57210 } }, -{ itemId: 644095, className: "card_Nepenthes", name: "Nepenthes Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57015 } }, -{ itemId: 644096, className: "card_simorph", name: "Simorph Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57151 } }, -{ itemId: 644098, className: "card_Golem_gray", name: "Gray Golem Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 450222 } }, -{ itemId: 644099, className: "card_Naktis", name: "Naktis Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800058 } }, -{ itemId: 644100, className: "card_RingCrawler", name: "Linkroller Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41232 } }, -{ itemId: 644101, className: "card_Durahan", name: "Dullahan Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800014 } }, -{ itemId: 644102, className: "card_Riteris", name: "Riteris Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800015 } }, -{ itemId: 644103, className: "card_Nuaele", name: "Nuaele Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800016 } }, -{ itemId: 644104, className: "card_Neop", name: "Neop Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800059 } }, -{ itemId: 644105, className: "card_Blud", name: "Blut Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800060 } }, -{ itemId: 644106, className: "card_Glackuman", name: "Glackuman Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800022 } }, -{ itemId: 644108, className: "card_Tetraox", name: "Tetraox Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57421 } }, -{ itemId: 644109, className: "card_basilisk", name: "Basilisk Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800061 } }, -{ itemId: 644110, className: "card_gremlin", name: "Gremlin Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 58522 } }, -{ itemId: 644111, className: "card_plokste", name: "Plokste Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800062 } }, -{ itemId: 644112, className: "card_Woodhoungan", name: "Wood Houngan Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 47512 } }, -{ itemId: 644113, className: "card_velnewt", name: "Velnewt Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800063 } }, -{ itemId: 644114, className: "card_Velpede", name: "Velpede Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800064 } }, -{ itemId: 644117, className: "card_Pyroego", name: "Pyroego Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800065 } }, -{ itemId: 644118, className: "card_Mandala", name: "Mandara Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57707 } }, -{ itemId: 644119, className: "card_LithoRex", name: "Lithorex Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800017 } }, -{ itemId: 644120, className: "card_Nuodai", name: "Nuodai Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800066 } }, -{ itemId: 644121, className: "card_Centaurus", name: "Centaurus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800067 } }, -{ itemId: 644122, className: "card_Yeti", name: "Yeti Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57415 } }, -{ itemId: 644123, className: "card_Frogola", name: "Progola Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800018 } }, -{ itemId: 644125, className: "card_Marionette", name: "Marionette Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800068 } }, -{ itemId: 644126, className: "card_Canceril", name: "Canceril Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800025 } }, -{ itemId: 644127, className: "card_Crabil", name: "Crabil Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 47505 } }, -{ itemId: 644128, className: "card_Genmagnus", name: "Master Genie Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800069 } }, -{ itemId: 644129, className: "card_merregina", name: "Merregina Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800070 } }, -{ itemId: 644130, className: "card_Templeshooter", name: "Templeshooter Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800021 } }, -{ itemId: 644131, className: "card_Fireload", name: "Fire Lord Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800023 } }, -{ itemId: 644132, className: "card_Kubas", name: "Kubas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 41373 } }, -{ itemId: 644133, className: "card_Deathweaver", name: "Deathweaver Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800026 } }, -{ itemId: 644134, className: "card_Flammidus", name: "Flammidus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800031 } }, -{ itemId: 644135, className: "card_Marnoks", name: "Marnox Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800078 } }, -{ itemId: 644136, className: "card_Zawra", name: "Zaura Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800072 } }, -{ itemId: 644137, className: "card_Prisoncutter", name: "Prison Cutter Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800020 } }, -{ itemId: 644138, className: "card_FerretMarauder", name: "Ferret Marauder Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57864 } }, -{ itemId: 644139, className: "card_Velniamonkey", name: "Velnia Monkey Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57428 } }, -{ itemId: 644140, className: "card_Woodspirit", name: "Woodspirit Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 47355 } }, -{ itemId: 644141, className: "card_Armaox", name: "Armaos Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57443 } }, -{ itemId: 644142, className: "card_Succubus", name: "Succubus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800079 } }, -{ itemId: 644143, className: "card_Stonefroster", name: "Stone Froster Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57589 } }, -{ itemId: 644144, className: "card_Lapene", name: "Rafene Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57866 } }, -{ itemId: 644145, className: "card_Rambandgad", name: "Lavenzard Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800019 } }, -{ itemId: 644146, className: "card_SwordBallista", name: "Gorkas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800081 } }, -{ itemId: 644147, className: "card_FrosterLord", name: "Froster Lord Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800076 } }, -{ itemId: 644148, className: "card_varleking", name: "Varle King Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57866 } }, -{ itemId: 644149, className: "card_payawoota", name: "Pajauta Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644150, className: "card_skiaclips", name: "Skiaclipse Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57866 } }, -{ itemId: 644151, className: "card_Moringponia", name: "Moringponia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800090 } }, -{ itemId: 644152, className: "card_Misrus", name: "Misrus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 57866 } }, -{ itemId: 644153, className: "card_tantaliser", name: "Tantalizer Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 800091 } }, -{ itemId: 644154, className: "card_vaidotas", name: "Vaidotas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644155, className: "card_vlaentinas", name: "Valentinas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644156, className: "card_uska", name: "Uska Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644157, className: "card_cyrenia", name: "Cyrenia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644158, className: "card_Neringa", name: "Neringa Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644159, className: "card_Glacier", name: "Glacia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, script: { numArg1: 59374 } }, -{ itemId: 644501, className: "Master_card_Boruble", name: "Boruble Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644502, className: "Master_card_MariaLeed", name: "Maria Leed Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644503, className: "Master_card_JuraSwajone", name: "Yura Swanjone Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644504, className: "Master_card_Kamiya", name: "Kamiya Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644505, className: "Master_card_EckipseUbik", name: "Eclipse Ubik Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644506, className: "Master_card_AbrehMelinn", name: "Abreh Melinn Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644507, className: "Master_card_Rashn", name: "Rashua Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644508, className: "Master_card_Lucia", name: "Lucia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644509, className: "Master_card_EdmundasTiller", name: "Edmundas Tiller Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644510, className: "Master_card_Rozaliia", name: "Rozalija Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644511, className: "Master_card_Vilius", name: "Vilnius Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644512, className: "Master_card_JenaHavindar", name: "Yena Havindar Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644513, className: "Master_card_ReamToiler", name: "Ream Toiler Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644514, className: "Master_card_NoirParesseus", name: "Noer Parecius Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644515, className: "Master_card_Mei", name: "May Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644516, className: "Master_card_ShellyPennington", name: "Shelly Pennington Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644517, className: "Master_card_Winona_Ende", name: "Winona Ende Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644518, className: "Master_card_Feliksia", name: "Phelixia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644519, className: "Master_card_MistesGoldmund", name: "Mistes Goldmund Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644520, className: "Master_card_AleisterCrowley", name: "Aleister Crowley Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644521, className: "Master_card_Tesla", name: "Tesla Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644522, className: "Master_card_KiolRuarawa", name: "Kyoll Lurawa Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644523, className: "Master_card_LucidWinterspoon", name: "Lucid Winterspoon Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644524, className: "Master_card_BangomontBorjigin", name: "Vhangomont Breogen Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644525, className: "Master_card_DamirBorkhan", name: "Damir Borkan Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644526, className: "Master_card_KhanomCaolaw", name: "Khanom Caolaw Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644527, className: "Master_card_Rudmila", name: "Rudmila Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644528, className: "Master_card_Flintess", name: "Flyntess Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644529, className: "Master_card_SorshaHutton", name: "Sorsha Hutton Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644530, className: "Master_card_IliTerid", name: "Ili Terid Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644531, className: "Master_card_LufasKehel", name: "Lufas Kehel Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644532, className: "Master_card_VisavaldasBlack", name: "Visvaldas Black Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644533, className: "Master_card_Pauline", name: "Pauline Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644534, className: "Master_card_GeHong", name: "GeHong Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644535, className: "Master_card_PhilipAureolus", name: "Philip Aurellius Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1 }, -{ itemId: 644900, className: "Legend_card_Marnoks", name: "Demon Lord Marnox Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800078 } }, -{ itemId: 644901, className: "Legend_card_Blud", name: "Demon Lord Blut Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800060 } }, -{ itemId: 644902, className: "Legend_card_Zawra", name: "Demon Lord Zaura Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800072 } }, -{ itemId: 644903, className: "Legend_card_Nuaele", name: "Demon Lord Nuaele Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800016 } }, -{ itemId: 644904, className: "Legend_card_Helgasercle", name: "Demon Lord Helgasercle Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800057 } }, -{ itemId: 644905, className: "Legend_card_Lecifer", name: "Demon Lord Rexipher Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800043 } }, -{ itemId: 644906, className: "Legend_card_Mirtis", name: "Demon Lord Mirtis Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800048 } }, -{ itemId: 644907, className: "Legend_card_Kucarry_Balzermance", name: "Prodigious Kugheri Balzermancer Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 58818 } }, -{ itemId: 644908, className: "Legend_card_PantoRex", name: "Heretic Pantorex Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 700023 } }, -{ itemId: 644909, className: "Legend_card_Velcoffer", name: "Velcoffer Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 58690 } }, -{ itemId: 644910, className: "Legend_card_FrosterLord", name: "Demon Lord Froster Lord Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800076 } }, -{ itemId: 644911, className: "Legend_card_Acio", name: "Asiomage Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 59154 } }, -{ itemId: 644912, className: "Legend_card_Wastrel", name: "Wastrel Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 59172 } }, -{ itemId: 644913, className: "Legend_card_ignas", name: "Ignas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800089 } }, -{ itemId: 644914, className: "Legend_card_boruta", name: "Boruta Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 59208 } }, -{ itemId: 644915, className: "Legend_card_Marnoks_JP", name: "Demon Lord Marnox Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800078 } }, -{ itemId: 644916, className: "Legend_card_Blud_JP", name: "Demon Lord Blut Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800060 } }, -{ itemId: 644917, className: "Legend_card_Zawra_JP", name: "Demon Lord Zaura Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800072 } }, -{ itemId: 644918, className: "Legend_card_Nuaele_JP", name: "Demon Lord Nuaele Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800016 } }, -{ itemId: 644919, className: "Legend_card_Helgasercle_JP", name: "Demon Lord Helgasercle Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800057 } }, -{ itemId: 644920, className: "Legend_card_Lecifer_JP", name: "Demon Lord Rexipher Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800043 } }, -{ itemId: 644921, className: "Legend_card_Mirtis_JP", name: "Demon Lord Mirtis Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800048 } }, -{ itemId: 644922, className: "Legend_card_FrosterLord_JP", name: "Demon Lord Froster Lord Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800076 } }, -{ itemId: 644923, className: "Legendcard_skiaclips", name: "Unbound Skiaclipse Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 57866 } }, -{ itemId: 644924, className: "Legendcard_Moringponia", name: "Demon Lord Moringponia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800090 } }, -{ itemId: 644925, className: "Legendcard_Misrus", name: "Enraged Misrus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 57866 } }, -{ itemId: 644926, className: "Legendcard_bayl", name: "Byle Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 644927, className: "Legendcard_tantaliser", name: "Demon Lord Tantalizer Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800091 } }, -{ itemId: 644928, className: "Legendcard_Glacier", name: "Sorrowful Glacia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 59374 } }, -{ itemId: 644929, className: "Legendcard_TelHarcha", name: "Tel Harsha Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 59477 } }, -{ itemId: 644930, className: "Legendcard_Leticia", name: "Leticia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 644931, className: "Legendcard_Guilty", name: "Giltine Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800093 } }, -{ itemId: 644932, className: "Legendcard_Avataras", name: "Abataras Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800094 } }, -{ itemId: 644933, className: "Legend_card_Vasilisa", name: "Vasilisa Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 59451 } }, -{ itemId: 644934, className: "Legend_card_RevivalPaulius", name: "Resurrected Paulius Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 59690 } }, -{ itemId: 644935, className: "Legend_card_Jellyzele", name: "Jellyzele Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 59730 } }, -{ itemId: 644936, className: "Legend_card_Spreader", name: "Reservoir of Corruption Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 59754 } }, -{ itemId: 644937, className: "Legend_card_Falouros", name: "Falouros Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 59760 } }, -{ itemId: 644938, className: "Legend_card_Rozethemiserable", name: "Rose the Miserable Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 59773 } }, -{ itemId: 644939, className: "Legend_card_Upinis", name: "Upinis Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800097 } }, -{ itemId: 644940, className: "Legend_card_Slogutis", name: "Slogutis Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800096 } }, -{ itemId: 644941, className: "Legend_card_MerreginaDespair", name: "Merregina of Despair Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 800098 } }, -{ itemId: 644942, className: "Legend_card_NeringaOfEvil", name: "Demonic Neringa Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 59773 } }, -{ itemId: 644943, className: "Legend_card_CrystalGolem", name: "Crystal Golem Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 59773 } }, -{ itemId: 650001, className: "legend_reinforce_card_lv1", name: "Ripped Legend Enhancement Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 650002, className: "legend_reinforce_card_lv2", name: "Old Legend Enhancement Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 650003, className: "legend_reinforce_card_lv3", name: "Legend Enhancement Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 650004, className: "legend_reinforce_card_lv4", name: "Shining Legend Enhancement Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 650005, className: "legend_reinforce_card_lv2_Team", name: "Old Legend Enhancement Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 644001, className: "card_Gaigalas", name: "Gaigalas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 41220 } }, +{ itemId: 644002, className: "card_GazingGolem", name: "Gazing Golem Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 47322 } }, +{ itemId: 644003, className: "card_Gorgon", name: "Gorgon Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 800042 } }, +{ itemId: 644004, className: "card_Golem", name: "Golem Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 450221 } }, +{ itemId: 644005, className: "card_Grinender", name: "Grinender Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 41374 } }, +{ itemId: 644006, className: "card_Glass_mole", name: "Glass Mole Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 41367 } }, +{ itemId: 644007, className: "card_ginklas", name: "Ginklas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 41208 } }, +{ itemId: 644008, className: "card_NetherBovine", name: "Netherbovine Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 800001 } }, +{ itemId: 644009, className: "card_necrovanter", name: "Necroventer Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800002 } }, +{ itemId: 644010, className: "card_deadbone", name: "Deadborn Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 41203 } }, +{ itemId: 644011, className: "card_Devilglove", name: "Cursed Devilglove Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 41385 } }, +{ itemId: 644012, className: "card_Denoptic", name: "Denoptic Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 41368 } }, +{ itemId: 644014, className: "card_Ravinepede", name: "Ravinepede Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 41236 } }, +{ itemId: 644015, className: "card_Rajatoad", name: "Rajatoad Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 41226 } }, +{ itemId: 644016, className: "card_Rocktortuga", name: "Rocktortuga Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 41233 } }, +{ itemId: 644017, className: "card_lecifer", name: "Rexipher Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800043 } }, +{ itemId: 644018, className: "card_Reaverpede", name: "Reaverpede Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800044 } }, +{ itemId: 644019, className: "card_spector_gh", name: "Rikaus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800045 } }, +{ itemId: 644022, className: "card_mineloader", name: "Mineloader Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800024 } }, +{ itemId: 644023, className: "card_Malletwyvern", name: "Mallet Wyvern Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 47502 } }, +{ itemId: 644024, className: "card_MagBurk", name: "Magburk Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 41350 } }, +{ itemId: 644025, className: "card_Manticen", name: "Manticen Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800030 } }, +{ itemId: 644026, className: "card_Mummyghast", name: "Mummyghast Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 800003 } }, +{ itemId: 644027, className: "card_mushcaria", name: "Mushcaria Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 41217 } }, +{ itemId: 644028, className: "card_Merge", name: "Merge Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800046 } }, +{ itemId: 644029, className: "card_Mothstem", name: "Mothstem Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800047 } }, +{ itemId: 644030, className: "card_moa", name: "Moa Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 41378 } }, +{ itemId: 644031, className: "card_Moyabruka", name: "Moyabruka Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 47325 } }, +{ itemId: 644032, className: "card_Moldyhorn", name: "Moldyhorn Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 47323 } }, +{ itemId: 644033, className: "card_molich", name: "Molich Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 400421 } }, +{ itemId: 644034, className: "card_Minotaurs", name: "Minotaur Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 800004 } }, +{ itemId: 644035, className: "card_mirtis", name: "Mirtis Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800048 } }, +{ itemId: 644036, className: "card_bebraspion", name: "Bebraspion Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 41222 } }, +{ itemId: 644037, className: "card_bearkaras", name: "Bearkaras Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 401141 } }, +{ itemId: 644038, className: "card_Velorchard", name: "Velorchard Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800049 } }, +{ itemId: 644039, className: "card_Goblin_Warrior", name: "Vubbe Fighter Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 400201 } }, +{ itemId: 644040, className: "card_Goblin_Warrior_red", name: "Red Vubbe Fighter Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 400203 } }, +{ itemId: 644041, className: "card_bramble", name: "Bramble Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 400901 } }, +{ itemId: 644042, className: "card_BiteRegina", name: "Biteregina Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800050 } }, +{ itemId: 644043, className: "card_Strongholder", name: "Cyclops Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800005 } }, +{ itemId: 644044, className: "card_Saltistter", name: "Saltistter Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 41207 } }, +{ itemId: 644045, className: "card_salamander", name: "Salamander Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 41205 } }, +{ itemId: 644046, className: "card_ShadowGaoler", name: "Shadowgaler Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800006 } }, +{ itemId: 644047, className: "card_stone_whale", name: "Stone Whale Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 41209 } }, +{ itemId: 644048, className: "card_Shnayim", name: "Shnayim Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 41241 } }, +{ itemId: 644049, className: "card_Confinedion", name: "Scorpio Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 41379 } }, +{ itemId: 644050, className: "card_Spector_m", name: "Specter Monarch Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800007 } }, +{ itemId: 644051, className: "card_Throneweaver", name: "Throneweaver Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800009 } }, +{ itemId: 644052, className: "card_Ironbaum", name: "Ironbaum Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 41354 } }, +{ itemId: 644053, className: "card_archon", name: "Archon Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800027 } }, +{ itemId: 644054, className: "card_Abomination", name: "Abomination Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 800029 } }, +{ itemId: 644055, className: "card_Unknocker", name: "Unknocker Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 800010 } }, +{ itemId: 644056, className: "card_Achat", name: "Achat Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 41240 } }, +{ itemId: 644057, className: "card_ellaganos", name: "Ellaganos Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 800013 } }, +{ itemId: 644058, className: "card_yekub", name: "Yekub Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 41234 } }, +{ itemId: 644059, className: "card_yonazolem", name: "Yonazolem Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 41211 } }, +{ itemId: 644061, className: "card_werewolf", name: "Werewolf Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 41247 } }, +{ itemId: 644062, className: "card_unicorn", name: "Unicorn Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800051 } }, +{ itemId: 644063, className: "card_Iltiswort", name: "Iltiswort Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 41214 } }, +{ itemId: 644064, className: "card_GiantWoodGoblin_red", name: "Giant Red Wood Goblin Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 41215 } }, +{ itemId: 644065, className: "card_GiantWoodGoblin", name: "Giant Wood Goblin Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 41386 } }, +{ itemId: 644067, className: "card_Chapparition", name: "Chapparition Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800011 } }, +{ itemId: 644068, className: "card_chafer", name: "Chafer Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800052 } }, +{ itemId: 644070, className: "card_Carapace", name: "Carapace Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800053 } }, +{ itemId: 644072, className: "card_onion_the_great", name: "Kepa Chieftain Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 41201 } }, +{ itemId: 644073, className: "card_Colimencia", name: "Colimencia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 47318 } }, +{ itemId: 644074, className: "card_Clymen", name: "Clymen Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 47316 } }, +{ itemId: 644075, className: "card_Kimeleech", name: "Kirmeleech Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800054 } }, +{ itemId: 644076, className: "card_tutu", name: "Tutu Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 57161 } }, +{ itemId: 644077, className: "card_TombLord", name: "Tomb Lord Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800055 } }, +{ itemId: 644078, className: "card_poata", name: "Poata Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 41202 } }, +{ itemId: 644079, className: "card_Sequoia_blue", name: "Sequoia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 401661 } }, +{ itemId: 644080, className: "card_Harpeia", name: "Harpeia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800012 } }, +{ itemId: 644081, className: "card_honeypin", name: "Honeypin Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800056 } }, +{ itemId: 644082, className: "card_helgasercle", name: "Helgasercle Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800057 } }, +{ itemId: 644083, className: "card_Spector_F", name: "Specter of Deceit Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800080 } }, +{ itemId: 644084, className: "card_hydra", name: "Hydra Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 47313 } }, +{ itemId: 644085, className: "card_rajapearl", name: "Rajapearl Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 41243 } }, +{ itemId: 644087, className: "card_fallen_statue", name: "Corrupted Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800071 } }, +{ itemId: 644088, className: "card_lepus", name: "Lepus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 41216 } }, +{ itemId: 644089, className: "card_sparnas", name: "Sparnas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 41224 } }, +{ itemId: 644092, className: "card_Sparnanman", name: "Sparnasman Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 800008 } }, +{ itemId: 644093, className: "card_Kerberos", name: "Cerberus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800028 } }, +{ itemId: 644094, className: "card_capria", name: "Capria Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 57210 } }, +{ itemId: 644095, className: "card_Nepenthes", name: "Nepenthes Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 57015 } }, +{ itemId: 644096, className: "card_simorph", name: "Simorph Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 57151 } }, +{ itemId: 644098, className: "card_Golem_gray", name: "Gray Golem Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 450222 } }, +{ itemId: 644099, className: "card_Naktis", name: "Naktis Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800058 } }, +{ itemId: 644100, className: "card_RingCrawler", name: "Linkroller Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 41232 } }, +{ itemId: 644101, className: "card_Durahan", name: "Dullahan Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800014 } }, +{ itemId: 644102, className: "card_Riteris", name: "Riteris Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800015 } }, +{ itemId: 644103, className: "card_Nuaele", name: "Nuaele Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 800016 } }, +{ itemId: 644104, className: "card_Neop", name: "Neop Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800059 } }, +{ itemId: 644105, className: "card_Blud", name: "Blut Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 800060 } }, +{ itemId: 644106, className: "card_Glackuman", name: "Glackuman Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 800022 } }, +{ itemId: 644108, className: "card_Tetraox", name: "Tetraox Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 57421 } }, +{ itemId: 644109, className: "card_basilisk", name: "Basilisk Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800061 } }, +{ itemId: 644110, className: "card_gremlin", name: "Gremlin Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 58522 } }, +{ itemId: 644111, className: "card_plokste", name: "Plokste Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800062 } }, +{ itemId: 644112, className: "card_Woodhoungan", name: "Wood Houngan Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 47512 } }, +{ itemId: 644113, className: "card_velnewt", name: "Velnewt Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800063 } }, +{ itemId: 644114, className: "card_Velpede", name: "Velpede Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800064 } }, +{ itemId: 644117, className: "card_Pyroego", name: "Pyroego Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 800065 } }, +{ itemId: 644118, className: "card_Mandala", name: "Mandara Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 57707 } }, +{ itemId: 644119, className: "card_LithoRex", name: "Lithorex Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800017 } }, +{ itemId: 644120, className: "card_Nuodai", name: "Nuodai Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800066 } }, +{ itemId: 644121, className: "card_Centaurus", name: "Centaurus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800067 } }, +{ itemId: 644122, className: "card_Yeti", name: "Yeti Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 57415 } }, +{ itemId: 644123, className: "card_Frogola", name: "Progola Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 800018 } }, +{ itemId: 644125, className: "card_Marionette", name: "Marionette Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800068 } }, +{ itemId: 644126, className: "card_Canceril", name: "Canceril Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800025 } }, +{ itemId: 644127, className: "card_Crabil", name: "Crabil Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 47505 } }, +{ itemId: 644128, className: "card_Genmagnus", name: "Master Genie Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800069 } }, +{ itemId: 644129, className: "card_merregina", name: "Merregina Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800070 } }, +{ itemId: 644130, className: "card_Templeshooter", name: "Templeshooter Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 800021 } }, +{ itemId: 644131, className: "card_Fireload", name: "Fire Lord Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800023 } }, +{ itemId: 644132, className: "card_Kubas", name: "Kubas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 41373 } }, +{ itemId: 644133, className: "card_Deathweaver", name: "Deathweaver Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800026 } }, +{ itemId: 644134, className: "card_Flammidus", name: "Flammidus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 800031 } }, +{ itemId: 644135, className: "card_Marnoks", name: "Marnox Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800078 } }, +{ itemId: 644136, className: "card_Zawra", name: "Zaura Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 800072 } }, +{ itemId: 644137, className: "card_Prisoncutter", name: "Prison Cutter Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800020 } }, +{ itemId: 644138, className: "card_FerretMarauder", name: "Ferret Marauder Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 57864 } }, +{ itemId: 644139, className: "card_Velniamonkey", name: "Velnia Monkey Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 57428 } }, +{ itemId: 644140, className: "card_Woodspirit", name: "Woodspirit Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 47355 } }, +{ itemId: 644141, className: "card_Armaox", name: "Armaos Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 57443 } }, +{ itemId: 644142, className: "card_Succubus", name: "Succubus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800079 } }, +{ itemId: 644143, className: "card_Stonefroster", name: "Stone Froster Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 57589 } }, +{ itemId: 644144, className: "card_Lapene", name: "Rafene Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 57866 } }, +{ itemId: 644145, className: "card_Rambandgad", name: "Lavenzard Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 800019 } }, +{ itemId: 644146, className: "card_SwordBallista", name: "Gorkas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 800081 } }, +{ itemId: 644147, className: "card_FrosterLord", name: "Froster Lord Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1, script: { numArg1: 800076 } }, +{ itemId: 644148, className: "card_varleking", name: "Varle King Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1, script: { numArg1: 57866 } }, +{ itemId: 644149, className: "card_payawoota", name: "Pajauta Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1 }, +{ itemId: 644150, className: "card_skiaclips", name: "Skiaclipse Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 57866 } }, +{ itemId: 644151, className: "card_Moringponia", name: "Moringponia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 800090 } }, +{ itemId: 644152, className: "card_Misrus", name: "Misrus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1, script: { numArg1: 57866 } }, +{ itemId: 644153, className: "card_tantaliser", name: "Tantalizer Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 800091 } }, +{ itemId: 644154, className: "card_vaidotas", name: "Vaidotas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644155, className: "card_vlaentinas", name: "Valentinas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1 }, +{ itemId: 644156, className: "card_uska", name: "Uska Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1 }, +{ itemId: 644157, className: "card_cyrenia", name: "Cyrenia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1 }, +{ itemId: 644158, className: "card_Neringa", name: "Neringa Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1 }, +{ itemId: 644159, className: "card_Glacier", name: "Glacia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1, script: { numArg1: 59374 } }, +{ itemId: 644501, className: "Master_card_Boruble", name: "Boruble Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1 }, +{ itemId: 644502, className: "Master_card_MariaLeed", name: "Maria Leed Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1 }, +{ itemId: 644503, className: "Master_card_JuraSwajone", name: "Yura Swanjone Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1 }, +{ itemId: 644504, className: "Master_card_Kamiya", name: "Kamiya Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1 }, +{ itemId: 644505, className: "Master_card_EckipseUbik", name: "Eclipse Ubik Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644506, className: "Master_card_AbrehMelinn", name: "Abreh Melinn Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644507, className: "Master_card_Rashn", name: "Rashua Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1 }, +{ itemId: 644508, className: "Master_card_Lucia", name: "Lucia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1 }, +{ itemId: 644509, className: "Master_card_EdmundasTiller", name: "Edmundas Tiller Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1 }, +{ itemId: 644510, className: "Master_card_Rozaliia", name: "Rozalija Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "STAT", cardLevel: 1 }, +{ itemId: 644511, className: "Master_card_Vilius", name: "Vilnius Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1 }, +{ itemId: 644512, className: "Master_card_JenaHavindar", name: "Yena Havindar Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644513, className: "Master_card_ReamToiler", name: "Ream Toiler Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1 }, +{ itemId: 644514, className: "Master_card_NoirParesseus", name: "Noer Parecius Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1 }, +{ itemId: 644515, className: "Master_card_Mei", name: "May Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1 }, +{ itemId: 644516, className: "Master_card_ShellyPennington", name: "Shelly Pennington Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1 }, +{ itemId: 644517, className: "Master_card_Winona_Ende", name: "Winona Ende Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644518, className: "Master_card_Feliksia", name: "Phelixia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "DEF", cardLevel: 1 }, +{ itemId: 644519, className: "Master_card_MistesGoldmund", name: "Mistes Goldmund Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644520, className: "Master_card_AleisterCrowley", name: "Aleister Crowley Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644521, className: "Master_card_Tesla", name: "Tesla Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1 }, +{ itemId: 644522, className: "Master_card_KiolRuarawa", name: "Kyoll Lurawa Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1 }, +{ itemId: 644523, className: "Master_card_LucidWinterspoon", name: "Lucid Winterspoon Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "UTIL", cardLevel: 1 }, +{ itemId: 644524, className: "Master_card_BangomontBorjigin", name: "Vhangomont Breogen Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644525, className: "Master_card_DamirBorkhan", name: "Damir Borkan Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644526, className: "Master_card_KhanomCaolaw", name: "Khanom Caolaw Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644527, className: "Master_card_Rudmila", name: "Rudmila Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644528, className: "Master_card_Flintess", name: "Flyntess Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644529, className: "Master_card_SorshaHutton", name: "Sorsha Hutton Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644530, className: "Master_card_IliTerid", name: "Ili Terid Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644531, className: "Master_card_LufasKehel", name: "Lufas Kehel Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644532, className: "Master_card_VisavaldasBlack", name: "Visvaldas Black Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644533, className: "Master_card_Pauline", name: "Pauline Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644534, className: "Master_card_GeHong", name: "GeHong Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644535, className: "Master_card_PhilipAureolus", name: "Philip Aurellius Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 500, minLevel: 1, equipExpGroup: "Card", cardGroup: "ATK", cardLevel: 1 }, +{ itemId: 644900, className: "Legend_card_Marnoks", name: "Demon Lord Marnox Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800078 } }, +{ itemId: 644901, className: "Legend_card_Blud", name: "Demon Lord Blut Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800060 } }, +{ itemId: 644902, className: "Legend_card_Zawra", name: "Demon Lord Zaura Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800072 } }, +{ itemId: 644903, className: "Legend_card_Nuaele", name: "Demon Lord Nuaele Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800016 } }, +{ itemId: 644904, className: "Legend_card_Helgasercle", name: "Demon Lord Helgasercle Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800057 } }, +{ itemId: 644905, className: "Legend_card_Lecifer", name: "Demon Lord Rexipher Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800043 } }, +{ itemId: 644906, className: "Legend_card_Mirtis", name: "Demon Lord Mirtis Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800048 } }, +{ itemId: 644907, className: "Legend_card_Kucarry_Balzermance", name: "Prodigious Kugheri Balzermancer Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 58818 } }, +{ itemId: 644908, className: "Legend_card_PantoRex", name: "Heretic Pantorex Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 700023 } }, +{ itemId: 644909, className: "Legend_card_Velcoffer", name: "Velcoffer Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 58690 } }, +{ itemId: 644910, className: "Legend_card_FrosterLord", name: "Demon Lord Froster Lord Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800076 } }, +{ itemId: 644911, className: "Legend_card_Acio", name: "Asiomage Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 59154 } }, +{ itemId: 644912, className: "Legend_card_Wastrel", name: "Wastrel Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 59172 } }, +{ itemId: 644913, className: "Legend_card_ignas", name: "Ignas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800089 } }, +{ itemId: 644914, className: "Legend_card_boruta", name: "Boruta Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 59208 } }, +{ itemId: 644915, className: "Legend_card_Marnoks_JP", name: "Demon Lord Marnox Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800078 } }, +{ itemId: 644916, className: "Legend_card_Blud_JP", name: "Demon Lord Blut Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800060 } }, +{ itemId: 644917, className: "Legend_card_Zawra_JP", name: "Demon Lord Zaura Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800072 } }, +{ itemId: 644918, className: "Legend_card_Nuaele_JP", name: "Demon Lord Nuaele Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800016 } }, +{ itemId: 644919, className: "Legend_card_Helgasercle_JP", name: "Demon Lord Helgasercle Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800057 } }, +{ itemId: 644920, className: "Legend_card_Lecifer_JP", name: "Demon Lord Rexipher Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800043 } }, +{ itemId: 644921, className: "Legend_card_Mirtis_JP", name: "Demon Lord Mirtis Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800048 } }, +{ itemId: 644922, className: "Legend_card_FrosterLord_JP", name: "Demon Lord Froster Lord Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800076 } }, +{ itemId: 644923, className: "Legendcard_skiaclips", name: "Unbound Skiaclipse Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 57866 } }, +{ itemId: 644924, className: "Legendcard_Moringponia", name: "Demon Lord Moringponia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800090 } }, +{ itemId: 644925, className: "Legendcard_Misrus", name: "Enraged Misrus Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 57866 } }, +{ itemId: 644926, className: "Legendcard_bayl", name: "Byle Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1 }, +{ itemId: 644927, className: "Legendcard_tantaliser", name: "Demon Lord Tantalizer Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800091 } }, +{ itemId: 644928, className: "Legendcard_Glacier", name: "Sorrowful Glacia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 59374 } }, +{ itemId: 644929, className: "Legendcard_TelHarcha", name: "Tel Harsha Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 59477 } }, +{ itemId: 644930, className: "Legendcard_Leticia", name: "Leticia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1 }, +{ itemId: 644931, className: "Legendcard_Guilty", name: "Giltine Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800093 } }, +{ itemId: 644932, className: "Legendcard_Avataras", name: "Abataras Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800094 } }, +{ itemId: 644933, className: "Legend_card_Vasilisa", name: "Vasilisa Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 59451 } }, +{ itemId: 644934, className: "Legend_card_RevivalPaulius", name: "Resurrected Paulius Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 59690 } }, +{ itemId: 644935, className: "Legend_card_Jellyzele", name: "Jellyzele Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 59730 } }, +{ itemId: 644936, className: "Legend_card_Spreader", name: "Reservoir of Corruption Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 59754 } }, +{ itemId: 644937, className: "Legend_card_Falouros", name: "Falouros Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 59760 } }, +{ itemId: 644938, className: "Legend_card_Rozethemiserable", name: "Rose the Miserable Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 59773 } }, +{ itemId: 644939, className: "Legend_card_Upinis", name: "Upinis Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800097 } }, +{ itemId: 644940, className: "Legend_card_Slogutis", name: "Slogutis Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800096 } }, +{ itemId: 644941, className: "Legend_card_MerreginaDespair", name: "Merregina of Despair Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 800098 } }, +{ itemId: 644942, className: "Legend_card_NeringaOfEvil", name: "Demonic Neringa Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 59773 } }, +{ itemId: 644943, className: "Legend_card_CrystalGolem", name: "Crystal Golem Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Card", cardGroup: "LEG", cardLevel: 1, script: { numArg1: 59773 } }, +{ itemId: 650001, className: "legend_reinforce_card_lv1", name: "Ripped Legend Enhancement Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Reinforce_Card_MaxLv4", cardGroup: "REINFORCE_CARD", cardLevel: 1 }, +{ itemId: 650002, className: "legend_reinforce_card_lv2", name: "Old Legend Enhancement Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Reinforce_Card_MaxLv6", cardGroup: "REINFORCE_CARD", cardLevel: 1 }, +{ itemId: 650003, className: "legend_reinforce_card_lv3", name: "Legend Enhancement Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Reinforce_Card_MaxLv8", cardGroup: "REINFORCE_CARD", cardLevel: 1 }, +{ itemId: 650004, className: "legend_reinforce_card_lv4", name: "Shining Legend Enhancement Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Reinforce_Card_MaxLv10", cardGroup: "REINFORCE_CARD", cardLevel: 1 }, +{ itemId: 650005, className: "legend_reinforce_card_lv2_Team", name: "Old Legend Enhancement Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Legend_Reinforce_Card_MaxLv6", cardGroup: "REINFORCE_CARD", cardLevel: 1 }, { itemId: 10003141, className: "Event_Roulette_Master_box_1", name: "[Event] Master Card Selection Card Album", type: "Consume", group: "Card", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { numArg1: 1 } }, -{ itemId: 10003222, className: "card_Xpupkit10_Event_2", name: "[5th Anniversary] Lv 10 Enhancement Card", type: "Etc", group: "Card", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10003338, className: "card_Xpupkit10_Event_5", name: "[2021] Lv10 Enhancement Card", type: "Etc", group: "Card", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10003222, className: "card_Xpupkit10_Event_2", name: "[5th Anniversary] Lv 10 Enhancement Card", type: "Etc", group: "Card", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, +{ itemId: 10003338, className: "card_Xpupkit10_Event_5", name: "[2021] Lv10 Enhancement Card", type: "Etc", group: "Card", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, { itemId: 10003524, className: "Event_MasterCard_box_NoTrade_1", name: "[Event] Master Card Selection Card Album", type: "Consume", group: "Card", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "OnlyTeamTrade", numArg1: 1 } }, { itemId: 10003525, className: "Event_MasterCard_box_NoTrade_2", name: "[Event] Master Card Selection Card Album 2", type: "Consume", group: "Card", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "OnlyTeamTrade", numArg1: 1 } }, -{ itemId: 11039400, className: "Goddess_card_Reinforce", name: "Goddess Enhancement Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 5000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_GODDESS_REINFORCE_CARD_MAT" } }, -{ itemId: 11039401, className: "Goddess_card_EP13_Lada", name: "Goddess Lada Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 320000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "lada_card_reinforce" } }, -{ itemId: 11039402, className: "Goddess_card_EP13_Saule", name: "Goddess Saule Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 320000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "saule_card_reinforce" } }, -{ itemId: 11039403, className: "Goddess_card_EP13_Austeja", name: "Goddess Austeja Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 320000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "austeja_card_reinforce" } }, -{ itemId: 11039404, className: "Goddess_card_EP13_Dalia", name: "Goddess Dahlia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 320000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "dalia_card_reinforce" } }, -{ itemId: 11039405, className: "Goddess_card_EP13_Vakarine", name: "Goddess Vakarine Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 320000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "vakarine_card_reinforce" } }, +{ itemId: 11039400, className: "Goddess_card_Reinforce", name: "Goddess Enhancement Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 5000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Goddess_ReinForce_Card", script: { function: "SCR_USE_GIVE_GODDESS_REINFORCE_CARD_MAT" } }, +{ itemId: 11039401, className: "Goddess_card_EP13_Lada", name: "Goddess Lada Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 320000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Goddess_Card", script: { strArg: "lada_card_reinforce" } }, +{ itemId: 11039402, className: "Goddess_card_EP13_Saule", name: "Goddess Saule Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 320000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Goddess_Card", script: { strArg: "saule_card_reinforce" } }, +{ itemId: 11039403, className: "Goddess_card_EP13_Austeja", name: "Goddess Austeja Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 320000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Goddess_Card", script: { strArg: "austeja_card_reinforce" } }, +{ itemId: 11039404, className: "Goddess_card_EP13_Dalia", name: "Goddess Dahlia Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 320000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Goddess_Card", script: { strArg: "dalia_card_reinforce" } }, +{ itemId: 11039405, className: "Goddess_card_EP13_Vakarine", name: "Goddess Vakarine Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 320000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Goddess_Card", script: { strArg: "vakarine_card_reinforce" } }, { itemId: 11039406, className: "Goddess_card_Reinforce_2", name: "Goddess Enhancement Card", type: "Consume", group: "Card", weight: 1, maxStack: 99999, price: 5000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11039407, className: "Goddess_card_EP14_baubas", name: "Demon God Baubas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 10, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11039407, className: "Goddess_card_EP14_baubas", name: "Demon God Baubas Card", type: "Consume", group: "Card", weight: 1, maxStack: 1, price: 10, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Goddess_Card" }, // Collection //--------------------------------------------------------------------------- @@ -6661,7 +6661,7 @@ { itemId: 643058, className: "Transcend_Scroll_10_PC_430", name: "[PP] Lv.440 Stage 10 Transcendence Scroll", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, script: { strArg: "transcend_Set_440", numArg1: 10, numArg2: 100 } }, { itemId: 643059, className: "Transcend_Scroll_10_430", name: "[Lv.440] Stage 10 Transcendence Scroll", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, script: { strArg: "transcend_Set_440", numArg1: 10, numArg2: 100 } }, { itemId: 645569, className: "misc_poisonpot", name: "Venom", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 750, sellPrice: 150, minLevel: 1, cooldownGroup: "ADDPOISON", cooldown: 100, script: { function: "SCR_USE_ADDPOISON", numArg1: 200 } }, -{ itemId: 645632, className: "misc_paperBox_party", name: "Paperbox", type: "Consume", group: "Drug", weight: 1, maxStack: 1, price: 100, sellPrice: 20, minLevel: 1, script: { function: "SCR_ITEM_PAPERBOX" } }, +{ itemId: 645632, className: "misc_paperBox_party", name: "Paperbox", type: "Consume", group: "Drug", weight: 1, maxStack: 1, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_ITEM_PAPERBOX" } }, { itemId: 647046, className: "TOSHERO_HPSP_DRUG", name: "[Heroic Tale] Recovery Drink", type: "Consume", group: "Drug", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, cooldownGroup: "TOSHERO_DRUG", cooldown: 60000, script: { function: "SCR_USE_ITEM_TOSHERO_HPSP_DRUG" } }, { itemId: 647047, className: "TOSHERO_item_ballista", name: "[Heroic Tale] Ballista", type: "Consume", group: "Drug", weight: 0, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, cooldownGroup: "TOSHERO_ITEM_BALLISTA", cooldown: 3000, script: { function: "SCR_USE_ITEM_TOSHERO_BALLISTA" } }, { itemId: 648501, className: "emoticonItem_1", name: "Emoticon: Kepa (Joy)", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, script: { function: "SCR_USE_ITEM_ADD_CHAT_EMOTICON", strArg: "emoticon_0002" } }, @@ -8411,7 +8411,7 @@ { itemId: 900142, className: "Event_161110_3", name: "Straight A's Chocolate", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, cooldownGroup: "Event_chocolate", cooldown: 1800000, script: { function: "SCR_USE_ITEM_AddBuff", strArg: "Event_161110_chocolate", numArg2: 1800000 } }, { itemId: 900162, className: "Gacha_HairAcc_001_event14d_Team", name: "Goddess' Blessed Cube (14 Days)", type: "Consume", group: "Drug", weight: 0, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { numArg1: 1 } }, { itemId: 900201, className: "Artefact_900201", name: "Fire Cracker", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, cooldownGroup: "OnionPiece_Red", cooldown: 3000, script: { function: "SCR_USE_ITEM_AddBuff" } }, -{ itemId: 900204, className: "misc_paperBox_party_30d", name: "Cardboard Box (30 Days)", type: "Consume", group: "Drug", weight: 1, maxStack: 1, price: 100, sellPrice: 20, minLevel: 1, script: { function: "SCR_ITEM_PAPERBOX" } }, +{ itemId: 900204, className: "misc_paperBox_party_30d", name: "Cardboard Box (30 Days)", type: "Consume", group: "Drug", weight: 1, maxStack: 1, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_ITEM_PAPERBOX" } }, { itemId: 900205, className: "Event_160908_6_14d", name: "Jumbo Dumpling (14 Days)", type: "Consume", group: "Drug", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, cooldownGroup: "Event_EXP_25", cooldown: 1800000, script: { function: "SCR_USE_ITEM_AddTeamBuff", strArg: "Event_LargeSongPyeon", numArg2: 1800000 } }, { itemId: 900212, className: "Event_170119_1", name: "Rice Cake Soup", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, cooldownGroup: "Event_EXP_15", cooldown: 1800000, script: { function: "SCR_USE_ITEM_AddTeamBuff", strArg: "Event_Rice_Soup", numArg2: 1800000 } }, { itemId: 900213, className: "Event_170119_2", name: "Special Rice Cake Soup", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, cooldownGroup: "Event_EXP_25", cooldown: 1800000, script: { function: "SCR_USE_ITEM_AddTeamBuff", strArg: "Event_LargeRice_Soup", numArg2: 1800000 } }, @@ -9111,13 +9111,13 @@ { itemId: 10000170, className: "Event_Stone_500_4", name: "[5th Anniversary] Attribute Points 500", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 500 } }, { itemId: 10000171, className: "Drug_RedApple20_Event_4", name: "[5th Anniversary] Small Elixir of HP Recovery", type: "Consume", group: "Drug", weight: 1, maxStack: 99999, price: 100, sellPrice: 20, equipType1: "None", minLevel: 1, cooldownGroup: "HPPOTION_TP", cooldown: 20000, script: { function: "SCR_USE_ITEM_DotBuff_Time", strArg: "Drug_Heal100HP_Dot", numArg1: 20, numArg2: 11000 } }, { itemId: 10000172, className: "Drug_BlueApple20_Event_4", name: "[5th Anniversary] Small Elixir of SP Recovery", type: "Consume", group: "Drug", weight: 1, maxStack: 99999, price: 100, sellPrice: 20, equipType1: "None", minLevel: 1, cooldownGroup: "SPPOTION_TP", cooldown: 20000, script: { function: "SCR_USE_ITEM_DotBuff_Time", strArg: "Drug_Heal100SP_Dot", numArg1: 20, numArg2: 11000 } }, -{ itemId: 10000173, className: "Event_gemExpStone09_6", name: "[5th Anniversary] 7-Star Gem Abrasive", type: "Etc", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10000173, className: "Event_gemExpStone09_6", name: "[5th Anniversary] 7-Star Gem Abrasive", type: "Etc", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone09" }, { itemId: 10000176, className: "Event_Ability_Point_Stone_10000_14", name: "[5th Anniversary] Attribute Points 10,000", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 10000 } }, { itemId: 10000177, className: "Event_Ability_Point_Stone_1000_10", name: "[5th Anniversary] Attribute Points 1,000", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 1000 } }, { itemId: 10000178, className: "Event_Adventure_Reward_Seed_8", name: "[5th Anniversary] Miracle Seeds", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 5000, script: { function: "SCR_USE_161215EVENT_SEED" } }, { itemId: 10000179, className: "Event_Goddess_Statue_Team_9", name: "[5th Anniversary] Goddess Sculpture", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_GODDESS_STATUE", numArg1: 10000 } }, { itemId: 10000183, className: "Event_Drug_Looting_Potion_500_5", name: "[Fishing] Looting Chance: 500", type: "Consume", group: "Drug", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "LootingChance", cooldown: 3600000, script: { function: "SCR_USE_ITEM_LOOTINGCHANCE_POTION", numArg1: 500, numArg2: 3600000 } }, -{ itemId: 10000186, className: "misc_gemExpStone10_Ev", name: "[5th Anniversary] 8-Star Gem Abrasive", type: "Etc", group: "Drug", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10000186, className: "misc_gemExpStone10_Ev", name: "[5th Anniversary] 8-Star Gem Abrasive", type: "Etc", group: "Drug", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone10" }, { itemId: 10000188, className: "Event_repairPotion_201", name: "[Attendance] Urgent Repair Kit", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "PREMIUM_REPAIR", numArg1: 500 } }, { itemId: 10000191, className: "Event_Drug_Looting_Potion_500_201", name: "[Attendance] Looting Chance : 500", type: "Consume", group: "Drug", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "LootingChance", cooldown: 3600000, script: { function: "SCR_USE_ITEM_LOOTINGCHANCE_POTION", numArg1: 500, numArg2: 3600000 } }, { itemId: 10000194, className: "Event_Harvest_seed", name: "[Event] Blessed Seed", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_EVENT_THANKSGIVINGDAY" } }, @@ -9130,13 +9130,13 @@ { itemId: 10000226, className: "Event_Goddess_Statue_Team_11", name: "[Supply] Goddess Sculpture", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_GODDESS_STATUE", numArg1: 10000 } }, { itemId: 10000227, className: "Event_Ability_Point_Stone_10000_17", name: "[Supply] Attribute Points 10,000", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 10000 } }, { itemId: 10000228, className: "Event_Ability_Point_Stone_1000_13", name: "[Supply] Attribute Points 1,000", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 1000 } }, -{ itemId: 10000231, className: "Event_gemExpStone09_8", name: "[Supply] 7-Star Gem Abrasive", type: "Etc", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10000232, className: "misc_gemExpStone10_Ev3", name: "[Supply] 8-Star Gem Abrasive", type: "Etc", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10000231, className: "Event_gemExpStone09_8", name: "[Supply] 7-Star Gem Abrasive", type: "Etc", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone09" }, +{ itemId: 10000232, className: "misc_gemExpStone10_Ev3", name: "[Supply] 8-Star Gem Abrasive", type: "Etc", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone10" }, { itemId: 10000233, className: "Drug_RedApple20_Event_5", name: "[Supply] Small Elixir of HP Recovery", type: "Consume", group: "Drug", weight: 1, maxStack: 99999, price: 100, sellPrice: 20, equipType1: "None", minLevel: 1, cooldownGroup: "HPPOTION_TP", cooldown: 20000, script: { function: "SCR_USE_ITEM_DotBuff_Time", strArg: "Drug_Heal100HP_Dot", numArg1: 20, numArg2: 11000 } }, { itemId: 10000234, className: "Drug_BlueApple20_Event_5", name: "[Supply] Small Elixir of SP Recovery", type: "Consume", group: "Drug", weight: 1, maxStack: 99999, price: 100, sellPrice: 20, equipType1: "None", minLevel: 1, cooldownGroup: "SPPOTION_TP", cooldown: 20000, script: { function: "SCR_USE_ITEM_DotBuff_Time", strArg: "Drug_Heal100SP_Dot", numArg1: 20, numArg2: 11000 } }, { itemId: 10000240, className: "Event_Ability_Point_Stone_1000_14", name: "[2021] Attribute Points 1,000", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 1000 } }, { itemId: 10000241, className: "Event_Ability_Point_Stone_10000_18", name: "[2021] Attribute Points 10,000", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 10000 } }, -{ itemId: 10000244, className: "Event_gemExpStone09_9", name: "[2021] 7-Star Gem Abrasive", type: "Etc", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10000244, className: "Event_gemExpStone09_9", name: "[2021] 7-Star Gem Abrasive", type: "Etc", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone09" }, { itemId: 10000245, className: "Event_repairPotion_12", name: "[2021] Urgent Repair Kit", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "PREMIUM_REPAIR", numArg1: 500 } }, { itemId: 10000246, className: "EVENT_Coupon_Reagent_Bottle_Expup_100_7", name: "[2021] Pamoka Solution EXP 2x Voucher", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 3000, script: { function: "SCR_USE_ITEM_AddBuff", strArg: "ITEM_Reagent_Bottle_Expup_100", numArg2: 1.44E+07 } }, { itemId: 10000249, className: "Event_Ability_Point_Stone_100_2", name: "[2021] Attribute Points 100", type: "Consume", group: "Drug", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 100 } }, @@ -9150,7 +9150,7 @@ { itemId: 10000265, className: "Drug_BlueApple20_Event_6", name: "[Lovey Dovey] Small Elixir of SP Recovery", type: "Consume", group: "Drug", weight: 1, maxStack: 99999, price: 100, sellPrice: 20, equipType1: "None", minLevel: 1, cooldownGroup: "SPPOTION_TP", cooldown: 20000, script: { function: "SCR_USE_ITEM_DotBuff_Time", strArg: "Drug_Heal100SP_Dot", numArg1: 20, numArg2: 11000 } }, { itemId: 10000280, className: "Event_Ability_Point_Stone_1000_16", name: "[Goddess Statue] Attribute Points 1,000", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 1000 } }, { itemId: 10000281, className: "Event_Ability_Point_Stone_10000_20", name: "[Goddess Statue] Attribute Points 10,000", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 10000 } }, -{ itemId: 10000283, className: "Event_gemExpStone09_10", name: "[Goddess Statue] 7-Star Gem Abrasive", type: "Etc", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10000283, className: "Event_gemExpStone09_10", name: "[Goddess Statue] 7-Star Gem Abrasive", type: "Etc", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone09" }, { itemId: 10000284, className: "Event_repairPotion_14", name: "[Goddess Statue] Urgent Repair Kit", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "PREMIUM_REPAIR", numArg1: 500 } }, { itemId: 10000285, className: "EVENT_Coupon_Reagent_Bottle_Expup_100_8", name: "[Goddess Statue] Pamoka Solution EXP 2x Voucher", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 3000, script: { function: "SCR_USE_ITEM_AddBuff", strArg: "ITEM_Reagent_Bottle_Expup_100", numArg2: 1.44E+07 } }, { itemId: 10000286, className: "Event_Ability_Point_Stone_10_1", name: "[2021] Attribute Points 100", type: "Consume", group: "Drug", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 100 } }, @@ -9162,7 +9162,7 @@ { itemId: 10000299, className: "Drug_RedApple20_Event_7", name: "[Arbor Day] Small Elixir of HP Recovery", type: "Consume", group: "Drug", weight: 1, maxStack: 99999, price: 100, sellPrice: 20, equipType1: "None", minLevel: 1, cooldownGroup: "HPPOTION_TP", cooldown: 20000, script: { function: "SCR_USE_ITEM_DotBuff_Time", strArg: "Drug_Heal100HP_Dot", numArg1: 20, numArg2: 11000 } }, { itemId: 10000300, className: "Drug_BlueApple20_Event_7", name: "[Arbor Day] Small Elixir of SP Recovery", type: "Consume", group: "Drug", weight: 1, maxStack: 99999, price: 100, sellPrice: 20, equipType1: "None", minLevel: 1, cooldownGroup: "SPPOTION_TP", cooldown: 20000, script: { function: "SCR_USE_ITEM_DotBuff_Time", strArg: "Drug_Heal100SP_Dot", numArg1: 20, numArg2: 11000 } }, { itemId: 10000303, className: "EVENT_Coupon_Reagent_Bottle_Expup_100_9", name: "[Arbor Day] Pamoka Solution EXP 2x Voucher", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 3000, script: { function: "SCR_USE_ITEM_AddBuff", strArg: "ITEM_Reagent_Bottle_Expup_100", numArg2: 1.44E+07 } }, -{ itemId: 10000304, className: "Event_gemExpStone09_11", name: "[Arbor Day] 7-Star Gem Abrasive", type: "Etc", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10000304, className: "Event_gemExpStone09_11", name: "[Arbor Day] 7-Star Gem Abrasive", type: "Etc", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone09" }, { itemId: 10000312, className: "Event_Adventure_Reward_Seed_13", name: "[Theif] Miracle Seeds", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 5000, script: { function: "SCR_USE_161215EVENT_SEED" } }, { itemId: 10000313, className: "Event_Goddess_Statue_Team_14", name: "[Theif] Goddess Sculpture", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_GODDESS_STATUE", numArg1: 10000 } }, { itemId: 10000314, className: "Event_repairPotion_16", name: "[Theif] Urgent Repair Kit", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "PREMIUM_REPAIR", numArg1: 500 } }, @@ -9170,7 +9170,7 @@ { itemId: 10000347, className: "Event_Adventure_Reward_Seed_16", name: "[Campfire] Miracle Seeds", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 5000, script: { function: "SCR_USE_161215EVENT_SEED" } }, { itemId: 10000348, className: "Event_Goddess_Statue_Team_17", name: "[Campfire] Goddess Sculpture", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_GODDESS_STATUE", numArg1: 10000 } }, { itemId: 10000349, className: "Event_Ability_Point_Stone_10000_23", name: "[Campfire] Attribute Points 10,000", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 10000 } }, -{ itemId: 10000353, className: "misc_gemExpStone12_Ev3", name: "[Campfire] Shining LV 10 Gem Abrasive", type: "Etc", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10000353, className: "misc_gemExpStone12_Ev3", name: "[Campfire] Shining LV 10 Gem Abrasive", type: "Etc", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone12" }, { itemId: 10000366, className: "Event_Adventure_Reward_Seed_17", name: "[21Summer] Miracle Seeds", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 5000, script: { function: "SCR_USE_161215EVENT_SEED" } }, { itemId: 10000367, className: "Event_Goddess_Statue_Team_18", name: "[21Summer] Goddess Sculpture", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_GODDESS_STATUE", numArg1: 10000 } }, { itemId: 10000368, className: "EVENT_Coupon_Reagent_Bottle_Expup_100_10", name: "[21Summer] Pamoka Solution EXP 2x Voucher", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 3000, script: { function: "SCR_USE_ITEM_AddBuff", strArg: "ITEM_Reagent_Bottle_Expup_100", numArg2: 1.44E+07 } }, @@ -9263,7 +9263,7 @@ { itemId: 10003226, className: "Event_SandraGlass_Box", name: "[5th Anniversary] Sandra's Magnifier Box", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT", strArg: "Event_Sandra_Glass_7/5;Event_Sandra_Glass_1line_11/5;" } }, { itemId: 10003253, className: "EVENT_2012_Blessed_Fruit", name: "[EP.13] Golden Apple of EXP", type: "Consume", group: "Drug", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "SONGPYEON", cooldown: 10000, script: { function: "SCR_USE_EVENT_2012_FRUIT", numArg2: 1.44E+07 } }, { itemId: 10003273, className: "TUTO_TOS_School_Graduate", name: "Title-TOS Academy Graduate", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ACHIEVE_BOX", strArg: "TOS_School_Graduate" } }, -{ itemId: 10003303, className: "card_Xpupkit10_Event_4", name: "[Supply] Lv. 10 Enhancement Card", type: "Etc", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10003303, className: "card_Xpupkit10_Event_4", name: "[Supply] Lv. 10 Enhancement Card", type: "Etc", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, { itemId: 10003309, className: "EVENT_2101_MORU_BOX", name: "[Supply] Advanced Anvil Box", type: "Consume", group: "Drug", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT", strArg: "Moru_Ruby_event_16/2;Moru_Event_Gold_10/5;" } }, { itemId: 10003311, className: "EVENT_2101_Extract_kit_Box", name: "[Supply] Ichor Extraction Kit Box", type: "Consume", group: "Drug", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT", strArg: "Extract_kit_Gold_Team_12/5;Extract_kit_Sliver_Team_10/5;" } }, { itemId: 10003312, className: "EVENT_2101_MORU_BOX_1", name: "[2021] Special Anvil Box", type: "Consume", group: "Drug", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT", strArg: "Moru_Ruby_event_17/10;Moru_Event_Gold_11/30;" } }, @@ -9271,7 +9271,7 @@ { itemId: 10003326, className: "EVENT_Title_2", name: "Unknown Event Title Box", type: "Consume", group: "Drug", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ACHIEVE_BOX", strArg: "EVENT_Title_2101_2" } }, { itemId: 10003340, className: "EVENT_2102_Title_01", name: "Title - Friend of Rozalija", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ACHIEVE_BOX", strArg: "EVENT_2102_Title_01" } }, { itemId: 10003341, className: "EVENT_2102_Title_02", name: "Title - Friend of Boruble", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ACHIEVE_BOX", strArg: "EVENT_2102_Title_02" } }, -{ itemId: 10003352, className: "card_Xpupkit10_Event_6", name: "[Lovey Dovey] Lv. 10 Enhancement Card", type: "Etc", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10003352, className: "card_Xpupkit10_Event_6", name: "[Lovey Dovey] Lv. 10 Enhancement Card", type: "Etc", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, { itemId: 10003359, className: "EVENT_2103_Title_npc_RUN_masterEv", name: "Title- Friend of Shelly", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ACHIEVE_BOX", strArg: "EVENT_2103_Title_01" } }, { itemId: 10003360, className: "EVENT_2103_Title_npc_MIKO_masterEv", name: "Title- Friend of Hitomiko", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ACHIEVE_BOX", strArg: "EVENT_2103_Title_02" } }, { itemId: 10003361, className: "EVENT_2103_Title_npc_sculptor", name: "Title- Friend of Tesla", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ACHIEVE_BOX", strArg: "EVENT_2103_Title_03" } }, @@ -9292,7 +9292,7 @@ { itemId: 10003394, className: "EVENT_2103_Title_peltasta", name: "Title- Friend of Maria", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ACHIEVE_BOX", strArg: "EVENT_2103_Title_13" } }, { itemId: 10003395, className: "EVENT_2103_Title_npc_SCH_master", name: "Title- Friend of Warsis", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ACHIEVE_BOX", strArg: "EVENT_2103_Title_14" } }, { itemId: 10003396, className: "EVENT_2103_Title_npc_DAO_master", name: "Title- Friend of GeHong", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ACHIEVE_BOX", strArg: "EVENT_2103_Title_15" } }, -{ itemId: 10003413, className: "card_Xpupkit10_Event_7", name: "[Campfire] Lv 10 Enhancement Card", type: "Etc", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10003413, className: "card_Xpupkit10_Event_7", name: "[Campfire] Lv 10 Enhancement Card", type: "Etc", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, { itemId: 10003414, className: "GLOBAL_Blessed_Fruit", name: "Golden Apple of EXP (14 Days)", type: "Consume", group: "Drug", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "SONGPYEON", cooldown: 10000, script: { function: "SCR_USE_EVENT_2012_FRUIT", numArg2: 1.44E+07 } }, { itemId: 10003423, className: "Event_2106_title_1", name: "Title - Golden Watermelon", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ACHIEVE_BOX", strArg: "EVENT_2106_Title_1" } }, { itemId: 10003424, className: "Event_2106_title_2", name: "Title - Silver Watermelon", type: "Consume", group: "Drug", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ACHIEVE_BOX", strArg: "EVENT_2106_Title_2" } }, @@ -10108,8 +10108,8 @@ { itemId: 10000115, className: "Event_Stone_500_2", name: "[Full Moon] Attribute Points 500", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 500 } }, { itemId: 10000116, className: "Event_dungeoncount_8", name: "[Full Moon] Instanced Dungeon Multiply Token", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "MultipleIndunToken", numArg1: 1, numArg2: 3 } }, { itemId: 10000117, className: "Event_indunReset_Team_8", name: "[Full Moon] Instanced Dungeon Reset Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10000118, className: "Event_gemExpStone09_4", name: "[Full Moon] 7-Star Gem Abrasive", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10000119, className: "card_Xpupkit01_event_1", name: "[Full Moon] Old Enhancement Card", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 100, sellPrice: 1000, equipType1: "None", minLevel: 1 }, +{ itemId: 10000118, className: "Event_gemExpStone09_4", name: "[Full Moon] 7-Star Gem Abrasive", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone09" }, +{ itemId: 10000119, className: "card_Xpupkit01_event_1", name: "[Full Moon] Old Enhancement Card", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 100, sellPrice: 1000, equipType1: "None", minLevel: 1, equipExpGroup: "Card_dummy01_Event" }, { itemId: 10000120, className: "Event_Ability_Point_Stone_1000_6", name: "[Full Moon] Attribute Points 1,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 1000 } }, { itemId: 10000121, className: "Event_Ability_Point_Stone_10000_8", name: "[Full Moon] Attribute Points 10,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 10000 } }, { itemId: 10000122, className: "Event_ChallengeModeReset_8", name: "[Full Moon] Challenge Mode One Entry Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1000, script: { function: "SCR_USE_ChallengeModeReset" } }, @@ -10130,7 +10130,7 @@ { itemId: 10000153, className: "Event_Ability_Point_Stone_1000_8", name: "[Attendance] Attribute Points 1,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 1000 } }, { itemId: 10000155, className: "Event_ChallengeModeReset_11", name: "[Attendance] Challenge Mode One Entry Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1000, script: { function: "SCR_USE_ChallengeModeReset" } }, { itemId: 10000156, className: "Event_Ability_Point_Stone_10000_12", name: "[Attendance] Attribute Points 10,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 10000 } }, -{ itemId: 10000158, className: "Event_gemExpStone09_5", name: "[Attendance] 7-Star Gem Abrasive", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10000158, className: "Event_gemExpStone09_5", name: "[Attendance] 7-Star Gem Abrasive", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone09" }, { itemId: 10000160, className: "Event_indunReset_Team_10", name: "[Attendance] Instanced Dungeon Reset Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, { itemId: 10000161, className: "Event_ChallengeModeReset_12", name: "[Guild Event] Challenge Mode One Entry Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1000, script: { function: "SCR_USE_ChallengeModeReset" } }, { itemId: 10000162, className: "EVENT_SECOND_CHALLENG_11", name: "[Guild Event] Challenge Portal Scroll", type: "Consume", group: "Event", weight: 1, maxStack: 99999, price: 10, sellPrice: 10, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 3000, script: { function: "SCR_USE_EVENT_1712_SECOND_CHALLENG" } }, @@ -10146,7 +10146,7 @@ { itemId: 10000187, className: "Event_Ability_Point_Stone_1000_201", name: "[Attendance] Attribute Points 1,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ABILITY_STONE_UP", numArg1: 1000 } }, { itemId: 10000189, className: "Event_ChallengeModeReset_201", name: "[Attendance] Challenge Mode One Entry Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1000, script: { function: "SCR_USE_ChallengeModeReset" } }, { itemId: 10000190, className: "Event_Ability_Point_Stone_10000_201", name: "[Attendance] Attribute Points 10,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_ABILITY_STONE_UP", numArg1: 10000 } }, -{ itemId: 10000192, className: "Event_gemExpStone09_201", name: "[Attendance] 7-Star Gem Abrasive", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10000192, className: "Event_gemExpStone09_201", name: "[Attendance] 7-Star Gem Abrasive", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone09" }, { itemId: 10000193, className: "Event_Ability_Point_Stone_10000_15", name: "[EP.13] Attribute Point 10,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 10000 } }, { itemId: 10000195, className: "Event_Ability_Point_Stone_1000_202", name: "[Harvest] Attribute Points 1,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 1000 } }, { itemId: 10000196, className: "Event_Ability_Point_Stone_10000_202", name: "[Harvest] Attribute Points 10,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 10000 } }, @@ -10158,7 +10158,7 @@ { itemId: 10000208, className: "Event_Ability_Point_Stone_100_1", name: "[Yak Mambo] Attribute Point 100 ", type: "Consume", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 100 } }, { itemId: 10000209, className: "Event_Ability_Point_Stone_5_1", name: "[Yak Mambo] Attribute Point 5 ", type: "Consume", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 5 } }, { itemId: 10000213, className: "Event_dungeoncount_12", name: "[Yak Mambo] Instanced Dungeon Multiply Token ", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "MultipleIndunToken", numArg1: 1, numArg2: 3 } }, -{ itemId: 10000214, className: "Event_gemExpStone09_7", name: "[Yak Mambo] 7-Star Gem Abrasive ", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10000214, className: "Event_gemExpStone09_7", name: "[Yak Mambo] 7-Star Gem Abrasive ", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone09" }, { itemId: 10000216, className: "Event_ChallengeModeReset_15", name: "[Yak Mambo] Challenge Mode One Entry Voucher ", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1000, script: { function: "SCR_USE_ChallengeModeReset" } }, { itemId: 10000218, className: "Event_2012_Key", name: "[Yak Mambo] Snowflake Key", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, { itemId: 10000219, className: "Event_2012_Key_2", name: "[Yak Mambo] Golden Snowflake Key", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, @@ -10302,9 +10302,9 @@ { itemId: 10000582, className: "Event_Multiple_Token_MythicHARD_limit", name: "[Rabbit] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "MythicDungeon_Auto_Hard", numArg1: 2 } }, { itemId: 10000583, className: "Event_Elixir_Box_limit", name: "[Rabbit] Event Elixir Box", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT", strArg: "Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;" } }, { itemId: 10000585, className: "Event_awakeningStone_limit", name: "[Rabbit] Premium Awakening Stone", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10000586, className: "Event_misc_reinforce_percentUp_480_NoTrade_limit", name: "[Rabbit] [Lv.480] Enhance Aid", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 480 } }, -{ itemId: 10000587, className: "Event_misc_Enchant_460_NoTrade_limit", name: "[Rabbit] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Enchant", numArg1: 460 } }, -{ itemId: 10000588, className: "Event_misc_Engrave_460_NoTrade_limit", name: "[Rabbit] [Lv.460] Engrave Stone", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, +{ itemId: 10000586, className: "Event_misc_reinforce_percentUp_480_NoTrade_limit", name: "[Rabbit] [Lv.480] Enhance Aid", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 480 } }, +{ itemId: 10000587, className: "Event_misc_Enchant_460_NoTrade_limit", name: "[Rabbit] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Enchant", numArg1: 460 } }, +{ itemId: 10000588, className: "Event_misc_Engrave_460_NoTrade_limit", name: "[Rabbit] [Lv.460] Engrave Stone", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, { itemId: 10000589, className: "Event_Ability_Point_Stone_1000_limit", name: "[Rabbit] Attribute Points 1,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 1000 } }, { itemId: 10000592, className: "Event_Ticket_Mythic_Auto_limit", name: "[Rabbit] Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1000, script: { function: "SCR_USE_Weekly_Entrance_Ticket", strArg: "Weekly_Entrance_Ticket", numArg1: 812 } }, { itemId: 10000593, className: "Event_Multiple_Token_MythicAuto_limit", name: "[Rabbit] Res Sacrae Raid: Auto/Solo (Normal) Multiply Token", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "MythicDungeon_Auto", numArg1: 2 } }, @@ -10317,11 +10317,11 @@ { itemId: 10000602, className: "Event_Sandra_Glass_1line_460_limit", name: "[Rabbit] [Lv.460] Sandra's Detailed Magnifier", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Sandra_Glass_1line", numArg1: 460 } }, { itemId: 10000603, className: "Event_Master_Glass_460_limit", name: "[Rabbit] [Lv.460] Artisan Magnifier", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Master_Glass", numArg1: 460 } }, { itemId: 10000604, className: "Event_Mystic_Glass_460_limit", name: "[Rabbit] [Lv.460] Mysterious Magnifier", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Mystic_Glass", numArg1: 460 } }, -{ itemId: 10000605, className: "Event_card_Xpupkit10_limit", name: "[Rabbit] Lv 10 Enhancement Card", type: "Etc", group: "Event", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10000605, className: "Event_card_Xpupkit10_limit", name: "[Rabbit] Lv 10 Enhancement Card", type: "Etc", group: "Event", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, { itemId: 10000606, className: "Event_SoloRaidCntReset_limit", name: "[Rabbit] Sole Hunt One Entry Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_FreeDungeon_Solo_Raid_Cnt", strArg: "SoloRaidCntReset_Team", numArg1: 1 } }, { itemId: 10000607, className: "Event_misc_pvpmine2_Ticket_10000_limit", name: "[Rabbit] Mercenary Badge Voucher: 10,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "MISC_PVP_MINE2_COUPON", numArg1: 10000 } }, { itemId: 10000608, className: "Event_Abrasive_460_NoTrade_limit", name: "[Rabbit] [Lv.460] Awakening Abrasive", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "AbrasiveStone", numArg1: 460 } }, -{ itemId: 10000609, className: "Event_misc_gemExpStone8_limit", name: "[Rabbit] 8-Star Gem Abrasive", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10000609, className: "Event_misc_gemExpStone8_limit", name: "[Rabbit] 8-Star Gem Abrasive", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone10" }, { itemId: 10000617, className: "Event_2210_Halloween_candy", name: "[Event] Halloween Treat", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, { itemId: 10000618, className: "Event_2210_Stew_Ingredient", name: "[Halloween] Ingredient Box", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, { itemId: 10000622, className: "Event_2210_Costume_Cloth", name: "[Halloween] Ghostly Fabric", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, @@ -10346,9 +10346,9 @@ { itemId: 10002004, className: "Event_Multiple_Token_MythicHARD_limit_1", name: "[New Year] Res Sacrae Raid: Auto(Hard) Add. Reward Voucher", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "MythicDungeon_Auto_Hard", numArg1: 2 } }, { itemId: 10002005, className: "Event_Elixir_Box_limit_1", name: "[New Year] Event Elixir Box", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT", strArg: "Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;" } }, { itemId: 10002007, className: "Event_awakeningStone_limit_1", name: "[New Year] Premium Awakening Stone", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10002008, className: "Event_misc_reinforce_percentUp_480_NoTrade_limit_1", name: "[New Year] [Lv.480] Enhance Aid", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 480 } }, -{ itemId: 10002009, className: "Event_misc_Enchant_460_NoTrade_limit_1", name: "[New Year] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Enchant", numArg1: 460 } }, -{ itemId: 10002010, className: "Event_misc_Engrave_460_NoTrade_limit_1", name: "[New Year] [Lv.460] Engrave Stone", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, +{ itemId: 10002008, className: "Event_misc_reinforce_percentUp_480_NoTrade_limit_1", name: "[New Year] [Lv.480] Enhance Aid", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 480 } }, +{ itemId: 10002009, className: "Event_misc_Enchant_460_NoTrade_limit_1", name: "[New Year] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Enchant", numArg1: 460 } }, +{ itemId: 10002010, className: "Event_misc_Engrave_460_NoTrade_limit_1", name: "[New Year] [Lv.460] Engrave Stone", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, { itemId: 10002011, className: "Event_Ability_Point_Stone_1000_limit_1", name: "[New Year] Attribute Points 1,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 1000 } }, { itemId: 10002014, className: "Event_Ticket_Mythic_Auto_limit_1", name: "[New Year] Res Sacrae Raid: Auto/Solo(Normal) One Entry Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1000, script: { function: "SCR_USE_Weekly_Entrance_Ticket", strArg: "Weekly_Entrance_Ticket", numArg1: 812 } }, { itemId: 10002015, className: "Event_Multiple_Token_MythicAuto_limit_1", name: "[New Year] Res Sacrae Raid: Auto/Solo (Normal) Multiply Token", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "MythicDungeon_Auto", numArg1: 2 } }, @@ -10361,11 +10361,11 @@ { itemId: 10002024, className: "Event_Sandra_Glass_1line_460_limit_1", name: "[New Year] [Lv.460] Sandra's Detailed Magnifier", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Sandra_Glass_1line", numArg1: 460 } }, { itemId: 10002025, className: "Event_Master_Glass_460_limit_1", name: "[New Year] [Lv.460] Artisan Magnifier", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Master_Glass", numArg1: 460 } }, { itemId: 10002026, className: "Event_Mystic_Glass_460_limit_1", name: "[New Year] [Lv.460] Mysterious Magnifier", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Mystic_Glass", numArg1: 460 } }, -{ itemId: 10002027, className: "Event_card_Xpupkit10_limit_1", name: "[New Year] Lv 10 Enhancement Card", type: "Etc", group: "Event", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10002027, className: "Event_card_Xpupkit10_limit_1", name: "[New Year] Lv 10 Enhancement Card", type: "Etc", group: "Event", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, { itemId: 10002028, className: "Event_SoloRaidCntReset_limit_1", name: "[New Year] Sole Hunt One Entry Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_FreeDungeon_Solo_Raid_Cnt", strArg: "SoloRaidCntReset_Team", numArg1: 1 } }, { itemId: 10002029, className: "Event_misc_pvpmine2_Ticket_10000_limit_1", name: "[New Year] Mercenary Badge Voucher: 10,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "MISC_PVP_MINE2_COUPON", numArg1: 10000 } }, { itemId: 10002030, className: "Event_Abrasive_460_NoTrade_limit_1", name: "[New Year] [Lv.460] Awakening Abrasive", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "AbrasiveStone", numArg1: 460 } }, -{ itemId: 10002031, className: "Event_misc_gemExpStone8_limit_1", name: "[New Year] 8-Star Gem Abrasive", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10002031, className: "Event_misc_gemExpStone8_limit_1", name: "[New Year] 8-Star Gem Abrasive", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone10" }, { itemId: 10002038, className: "Event_2310_Stew_Ingredient", name: "[Event] Cooking Material Box", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, { itemId: 10003004, className: "Event_irredians_accessory_box", name: "[Event] Hunting Ground Accessory Selection Box", type: "Consume", group: "Event", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { numArg1: 1 } }, { itemId: 10003016, className: "Event_Roulette_Draconas_box", name: "[Event] Drakonas Accessory Selection Box", type: "Consume", group: "Event", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { numArg1: 1 } }, @@ -10521,9 +10521,9 @@ { itemId: 10004004, className: "Event_Multiple_Token_MythicHARD_limit_2", name: "[Sow] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "MythicDungeon_Auto_Hard", numArg1: 2 } }, { itemId: 10004005, className: "Event_Elixir_Box_limit_2", name: "[Arbor Day] Event Elixir Box", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT", strArg: "Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;" } }, { itemId: 10004007, className: "Event_awakeningStone_limit_2", name: "[Arbor Day] Premium Awakening Stone", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10004008, className: "Event_misc_reinforce_percentUp_480_NoTrade_limit_2", name: "[Arbor Day] [Lv.470] Enhance Aid", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 480 } }, -{ itemId: 10004009, className: "Event_misc_Enchant_460_NoTrade_limit_2", name: "[Arbor Day] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Enchant", numArg1: 460 } }, -{ itemId: 10004010, className: "Event_misc_Engrave_460_NoTrade_limit_2", name: "[Arbor Day] [Lv.460] Engrave Stone", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, +{ itemId: 10004008, className: "Event_misc_reinforce_percentUp_480_NoTrade_limit_2", name: "[Arbor Day] [Lv.470] Enhance Aid", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 480 } }, +{ itemId: 10004009, className: "Event_misc_Enchant_460_NoTrade_limit_2", name: "[Arbor Day] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Enchant", numArg1: 460 } }, +{ itemId: 10004010, className: "Event_misc_Engrave_460_NoTrade_limit_2", name: "[Arbor Day] [Lv.460] Engrave Stone", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, { itemId: 10004011, className: "Event_Ability_Point_Stone_1000_limit_2", name: "[Arbor Day] Attribute Points 1,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 1000 } }, { itemId: 10004014, className: "Event_Ticket_Mythic_Auto_limit_2", name: "[Sow] Res Sacrae Raid: Auto/Solo (Normal) One Entry Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1000, script: { function: "SCR_USE_Weekly_Entrance_Ticket", strArg: "Weekly_Entrance_Ticket", numArg1: 812 } }, { itemId: 10004015, className: "Event_Multiple_Token_MythicAuto_limit_2", name: "[Sow] Res Sacrae Raid: Auto/Solo (Normal) Multiply Token", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "MythicDungeon_Auto", numArg1: 2 } }, @@ -10536,11 +10536,11 @@ { itemId: 10004024, className: "Event_Sandra_Glass_1line_460_limit_2", name: "[Arbor Day] [Lv.460] Sandra's Detailed Magnifier", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Sandra_Glass_1line", numArg1: 460 } }, { itemId: 10004025, className: "Event_Master_Glass_460_limit_2", name: "[Arbor Day] [Lv.460] Artisan Magnifier", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Master_Glass", numArg1: 460 } }, { itemId: 10004026, className: "Event_Mystic_Glass_460_limit_2", name: "[Arbor Day] [Lv.460] Mysterious Magnifier", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Mystic_Glass", numArg1: 460 } }, -{ itemId: 10004027, className: "Event_card_Xpupkit10_limit_2", name: "[Arbor Day] Lv 10 Enhancement Card", type: "Etc", group: "Event", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10004027, className: "Event_card_Xpupkit10_limit_2", name: "[Arbor Day] Lv 10 Enhancement Card", type: "Etc", group: "Event", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, { itemId: 10004028, className: "Event_SoloRaidCntReset_limit_2", name: "[Arbor Day] Solo Raid One Entry Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_FreeDungeon_Solo_Raid_Cnt", strArg: "SoloRaidCntReset_Team", numArg1: 1 } }, { itemId: 10004029, className: "Event_misc_pvpmine2_Ticket_10000_limit_2", name: "[Arbor Day] Mercenary Badge Voucher : 10,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "MISC_PVP_MINE2_COUPON", numArg1: 10000 } }, { itemId: 10004030, className: "Event_Abrasive_460_NoTrade_limit_2", name: "[Arbor Day] [Lv.460] Awakening Abrasive", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "AbrasiveStone", numArg1: 460 } }, -{ itemId: 10004031, className: "Event_misc_gemExpStone8_limit_2", name: "[Arbor Day] 8-Star Gem Abrasive", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10004031, className: "Event_misc_gemExpStone8_limit_2", name: "[Arbor Day] 8-Star Gem Abrasive", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone10" }, { itemId: 10010001, className: "Extract_kit_Gold_Team_1", name: "[TOSventure] Golden Ichor Extraction Kit", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Extract_kit_Gold" } }, { itemId: 10010002, className: "Extract_kit_Gold_Team_2", name: "[FLEX BOX] Golden Ichor Extraction Kit", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Extract_kit_Gold" } }, { itemId: 10010019, className: "Extract_kit_Gold_Team_4", name: "[Stamp Tour] Golden Ichor Extraction Kit", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Extract_kit_Gold" } }, @@ -10560,7 +10560,7 @@ { itemId: 10820000, className: "Event_misc_pvpmine2_Ticket_10000_limit_renew", name: "[TOS] Mercenary Badge Voucher: 10,000", type: "Consume", group: "Event", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "MISC_PVP_MINE2_COUPON", numArg1: 10000 } }, { itemId: 10820001, className: "Event_Contents_total_point_boost_Coupon_limit_renew", name: "[TOS] Contents Point Acquisition x2 Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 3000, script: { function: "SCR_USE_ITEM_AddBuff", strArg: "ITEM_Coupon_CONTENTS_TOTAL_POINT_BOOST", numArg2: 7200000 } }, { itemId: 10820002, className: "Event_Ability_Point_Stone_10000_limit_renew", name: "[TOS] Attribute Points 10,000", type: "Consume", group: "Event", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 10000 } }, -{ itemId: 10820003, className: "Event_misc_gemExpStone8_limit_renew", name: "[TOS] 8-Star Gem Abrasive", type: "Etc", group: "Event", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10820003, className: "Event_misc_gemExpStone8_limit_renew", name: "[TOS] 8-Star Gem Abrasive", type: "Etc", group: "Event", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone10" }, { itemId: 10820005, className: "Event_Elixir_Box_limit_renew", name: "[TOS] Event Elixir Box", type: "Consume", group: "Event", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_STRING_GIVE_ITEM_NUMBER_SPLIT", strArg: "Event_Drug_RedApple20/10;Event_Drug_BlueApple20/10;" } }, { itemId: 10820009, className: "Event_SoloRaidCntReset_limit_renew", name: "[TOS] Sole Hunt One Entry Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_FreeDungeon_Solo_Raid_Cnt", strArg: "SoloRaidCntReset_Team", numArg1: 1 } }, { itemId: 10820012, className: "Event_Multiple_Token_MythicHARD_limit_renew", name: "[TOS] Res Sacrae Raid: Auto/Solo (Hard) Add. Reward Voucher", type: "Etc", group: "Event", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "MythicDungeon_Auto_Hard", numArg1: 2 } }, @@ -10570,9 +10570,9 @@ { itemId: 10820017, className: "Event_indunReset_limit_renew", name: "[TOS] Instanced Dungeon Reset Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, { itemId: 10820018, className: "Event_ChallengeExpertModeCountUp_limit_renew", name: "[TOS] Division Singularity One Entry Voucher", type: "Consume", group: "Event", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1000, script: { function: "SCR_USE_ChallengeExpertModeCountUp" } }, { itemId: 10820019, className: "Event_ChallengeModeReset_limit_renew", name: "[TOS] Challenge Mode One Entry Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1000, script: { function: "SCR_USE_ChallengeModeReset" } }, -{ itemId: 10820020, className: "Event_misc_reinforce_percentUp_480_NoTrade_limit_renew", name: "[Event] [Lv.480] Enhance Aid", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 480 } }, -{ itemId: 10820024, className: "Event_misc_Engrave_460_NoTrade_limit_renew", name: "[TOS] [Lv.460] Engrave Stone", type: "Etc", group: "Event", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, -{ itemId: 10820025, className: "Event_card_Xpupkit10_limit_renew", name: "[TOS] Lv 10 Enhancement Card", type: "Etc", group: "Event", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10820020, className: "Event_misc_reinforce_percentUp_480_NoTrade_limit_renew", name: "[Event] [Lv.480] Enhance Aid", type: "Etc", group: "Event", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 480 } }, +{ itemId: 10820024, className: "Event_misc_Engrave_460_NoTrade_limit_renew", name: "[TOS] [Lv.460] Engrave Stone", type: "Etc", group: "Event", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, +{ itemId: 10820025, className: "Event_card_Xpupkit10_limit_renew", name: "[TOS] Lv 10 Enhancement Card", type: "Etc", group: "Event", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, { itemId: 10820029, className: "Event_dungeoncount_36", name: "[Event] Instanced Dungeon Multiply Token", type: "Etc", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "MultipleIndunToken", numArg1: 1, numArg2: 3 } }, { itemId: 10820030, className: "Event_indunReset_Team_36", name: "[Event] Instanced Dungeon Reset Voucher", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, { itemId: 10820033, className: "Event_Ability_Point_Stone_10000_36", name: "[Event] Attribute Point 10,000", type: "Consume", group: "Event", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, cooldownGroup: "QuestItem1", cooldown: 1500, script: { strArg: "AbilityPoint", numArg1: 10000 } }, @@ -10613,834 +10613,834 @@ // Gem //--------------------------------------------------------------------------- -{ itemId: 643501, className: "gem_circle_1", name: "Red Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643502, className: "gem_square_1", name: "Blue Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643503, className: "gem_diamond_1", name: "Green Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643504, className: "gem_star_1", name: "Yellow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643505, className: "gem_star_test", name: "Test Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643506, className: "Gem_Swordman_Thrust", name: "Thrust Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643507, className: "Gem_Swordman_Bash", name: "Bash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643508, className: "Gem_Swordman_GungHo", name: "Gun Ho Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643509, className: "Gem_Swordman_Concentrate", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643510, className: "Gem_Swordman_PainBarrier", name: "Pain Barrier Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643511, className: "Gem_Swordman_Restrain", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643512, className: "Gem_Swordman_PommelBeat", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643513, className: "Gem_Swordman_DoubleSlash", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643514, className: "Gem_Highlander_WagonWheel", name: "Wagon Wheel Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643515, className: "Gem_Highlander_CartarStroke", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643516, className: "Gem_Highlander_Crown", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643517, className: "Gem_Highlander_CrossGuard", name: "Cross Guard Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643518, className: "Gem_Highlander_Moulinet", name: "Moulinet Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643519, className: "Gem_Highlander_SkyLiner", name: "Skyliner Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643520, className: "Gem_Highlander_CrossCut", name: "Crosscut Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643521, className: "Gem_Highlander_ScullSwing", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643522, className: "Gem_Highlander_VerticalSlash", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643523, className: "Gem_Peltasta_Langort", name: "Langort Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643524, className: "Gem_Peltasta_RimBlow", name: "Rim Blow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643525, className: "Gem_Peltasta_SwashBuckling", name: "Swash Buckling Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643526, className: "Gem_Peltasta_Guardian", name: "Guardian Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643527, className: "Gem_Peltasta_ShieldLob", name: "Shield Lob Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643528, className: "Gem_Peltasta_HighGuard", name: "High Guard Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643529, className: "Gem_Murmillo_EvadeThrust", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643530, className: "Gem_Peltasta_UmboThrust", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643531, className: "Gem_Hoplite_Stabbing", name: "Stabbing Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643532, className: "Gem_Hoplite_Pierce", name: "Pierce Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643533, className: "Gem_Hoplite_Finestra", name: "Finestra Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643534, className: "Gem_Hoplite_SynchroThrusting", name: "Synchro Thrusting Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643535, className: "Gem_Hoplite_LongStride", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643536, className: "Gem_Hoplite_SpearLunge", name: "Spear Lunge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643537, className: "Gem_Hoplite_ThrouwingSpear", name: "Spear Throw Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643538, className: "Gem_Barbarian_Embowel", name: "Embowel Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643539, className: "Gem_Barbarian_StompingKick", name: "Stomping Kick Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643540, className: "Gem_Barbarian_Cleave", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643541, className: "Gem_Barbarian_HelmChopper", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643542, className: "Gem_Barbarian_Warcry", name: "Warcry Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643543, className: "Gem_Barbarian_Frenzy", name: "Frenzy Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643544, className: "Gem_Barbarian_Seism", name: "Seism Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643545, className: "Gem_Barbarian_GiantSwing", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643546, className: "Gem_Barbarian_Pouncing", name: "Pouncing Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643547, className: "Gem_Cataphract_Impaler", name: "Impaler Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643548, className: "Gem_Cataphract_EarthWave", name: "Earth Wave Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643549, className: "Gem_Cataphract_Trot", name: "Trot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643550, className: "Gem_Cataphract_SteedCharge", name: "Steed Charge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643551, className: "Gem_Cataphract_DoomSpike", name: "Doom Spike Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643552, className: "Gem_Cataphract_Rush", name: "Rush Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643553, className: "Gem_Corsair_JollyRoger", name: "Jolly Roger Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643554, className: "Gem_Corsair_IronHook", name: "Iron Hook Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643555, className: "Gem_Corsair_Keelhauling", name: "Keel Hauling Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643556, className: "Gem_Corsair_DustDevil", name: "Dust Devil Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643557, className: "Gem_Corsair_SubweaponCancel", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643558, className: "Gem_Corsair_HexenDropper", name: "Hexen Dropper Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643559, className: "Gem_Doppelsoeldner_Punish", name: "Punish Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643560, className: "Gem_Doppelsoeldner_DeedsOfValor", name: "Deeds of Valor Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643561, className: "Gem_Doppelsoeldner_Mordschlag", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643562, className: "Gem_Doppelsoeldner_Double_pay_earn", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643563, className: "Gem_Doppelsoeldner_Cyclone", name: "Cyclone Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643564, className: "Gem_Rodelero_ShieldCharge", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643565, className: "Gem_Rodelero_Montano", name: "Montano Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643566, className: "Gem_Rodelero_TargeSmash", name: "Targe Smash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643567, className: "Gem_Rodelero_ShieldPush", name: "Shield Push Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643568, className: "Gem_Rodelero_ShieldShoving", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643569, className: "Gem_Rodelero_ShieldBash", name: "Shield Bash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643570, className: "Gem_Rodelero_Slithering", name: "Slithering Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643571, className: "Gem_Rodelero_ShootingStar", name: "Shooting Star Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643572, className: "Gem_Rodelero_HighKick", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643573, className: "Gem_Squire_Arrest", name: "Arrest Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643574, className: "Gem_Fencer_Lunge", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643575, className: "Gem_Fencer_SeptEtoiles", name: "Sept Etoiles Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643576, className: "Gem_Fencer_AttaqueCoquille", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643577, className: "Gem_Fencer_EsquiveToucher", name: "Esquive Toucher Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643578, className: "Gem_Fencer_Flanconnade", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643579, className: "Gem_Fencer_AttaqueComposee", name: "Attaque Composee Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643580, className: "Gem_Wizard_EnergyBolt", name: "Energy Bolt Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643581, className: "Gem_Wizard_Lethargy", name: "Lethargy Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643582, className: "Gem_Wizard_Sleep", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643583, className: "Gem_Wizard_ReflectShield", name: "Magic Shield Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643584, className: "Gem_Wizard_EarthQuake", name: "Earthquake Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643585, className: "Gem_Wizard_Surespell", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643586, className: "Gem_Wizard_MagicMissile", name: "Magic Missile Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643587, className: "Gem_Pyromancer_FireBall", name: "Fireball Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643588, className: "Gem_Pyromancer_FireWall", name: "Fire Wall Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643589, className: "Gem_Pyromancer_EnchantFire", name: "Enchant Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643590, className: "Gem_Pyromancer_Flare", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643591, className: "Gem_Pyromancer_FlameGround", name: "Flame Ground Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643592, className: "Gem_Pyromancer_FirePillar", name: "Fire Pillar Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643593, className: "Gem_Pyromancer_HellBreath", name: "Hell Breath Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643594, className: "Gem_Cryomancer_IceBolt", name: "Ice Bolt Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643595, className: "Gem_Cryomancer_IciclePike", name: "Ice Pike Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643596, className: "Gem_Cryomancer_IceWall", name: "Ice Wall Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643597, className: "Gem_Cryomancer_IceBlast", name: "Ice Blast Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643598, className: "Gem_Cryomancer_Gust", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643599, className: "Gem_Cryomancer_SnowRolling", name: "Snow Rolling Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643600, className: "Gem_Cryomancer_FrostPillar", name: "Frost Pillar Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643601, className: "Gem_Psychokino_PsychicPressure", name: "Psychic Pressure Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643602, className: "Gem_Psychokino_Telekinesis", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643603, className: "Gem_Psychokino_Swap", name: "Swap Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643604, className: "Gem_Psychokino_Teleportation", name: "Teleportation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643605, className: "Gem_Psychokino_MagneticForce", name: "Magnetic Force Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643606, className: "Gem_Psychokino_Raise", name: "Raise Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643607, className: "Gem_Psychokino_GravityPole", name: "Gravity Pole Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643608, className: "Gem_Sorcerer_Summoning", name: "Summoning Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643609, className: "Gem_Sorcerer_SummonFamiliar", name: "Summon Familiar Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643610, className: "Gem_Sorcerer_SummonSalamion", name: "Summon Salamion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643611, className: "Gem_Linker_Physicallink", name: "Physical Link Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643612, className: "Gem_Linker_JointPenalty", name: "Joint Penalty Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643613, className: "Gem_Linker_HangmansKnot", name: "Hangman's Knot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643614, className: "Gem_Linker_SpiritualChain", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643615, className: "Gem_Linker_UmbilicalCord", name: "Lifeline Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643616, className: "Gem_Chronomancer_Quicken", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643617, className: "Gem_Chronomancer_Samsara", name: "Reincarnate Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643618, className: "Gem_Chronomancer_Stop", name: "Stop Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643619, className: "Gem_Chronomancer_Slow", name: "Slow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643620, className: "Gem_Chronomancer_Haste", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643621, className: "Gem_Chronomancer_BackMasking", name: "Backmasking Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643622, className: "Gem_Necromancer_GatherCorpse", name: "Gather Corpse Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643623, className: "Gem_Necromancer_FleshCannon", name: "Flesh Cannon Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643624, className: "Gem_Necromancer_FleshHoop", name: "Flesh Hoop Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643625, className: "Gem_Necromancer_DirtyPole", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643626, className: "Gem_Necromancer_CorpseTower", name: "Corpse Tower Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643627, className: "Gem_Thaumaturge_SwellLeftArm", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643628, className: "Gem_Thaumaturge_ShrinkBody", name: "Shrink Body Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643629, className: "Gem_Thaumaturge_SwellBody", name: "Swell Body Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643630, className: "Gem_Thaumaturge_Transpose", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643631, className: "Gem_Thaumaturge_SwellRightArm", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643632, className: "Gem_Thaumaturge_SwellBrain", name: "Swell Brain Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643633, className: "Gem_Elementalist_Electrocute", name: "Electrocute Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643634, className: "Gem_Elementalist_StoneCurse", name: "Lightning Orb Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643635, className: "Gem_Elementalist_Hail", name: "Hail Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643636, className: "Gem_Elementalist_Prominence", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643637, className: "Gem_Elementalist_Meteor", name: "Meteor Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643638, className: "Gem_Elementalist_FreezingSphere", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643639, className: "Gem_Elementalist_Rain", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643640, className: "Gem_Elementalist_FrostCloud", name: "Blizzard Storm Gem ", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643641, className: "Gem_Archer_SwiftStep", name: "Swift Step Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643642, className: "Gem_Archer_Multishot", name: "Multi Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643643, className: "Gem_Archer_Fulldraw", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643644, className: "Gem_Archer_ObliqueShot", name: "Oblique Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643645, className: "Gem_Archer_Kneelingshot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643646, className: "Gem_Archer_HeavyShot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643647, className: "Gem_Archer_TwinArrows", name: "Twin Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643648, className: "Gem_Hunter_Coursing", name: "(Faded) Coursing Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643649, className: "Gem_Hunter_Snatching", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643650, className: "Gem_Hunter_Pointing", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643651, className: "Gem_Hunter_RushDog", name: "(Faded) Rush Dog Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643652, className: "Gem_Hunter_Retrieve", name: "(Faded) Retrieve Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643653, className: "Gem_Hunter_Hounding", name: "(Faded) Hounding Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643654, className: "Gem_Hunter_Growling", name: "Growling Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643655, className: "Gem_QuarrelShooter_DeployPavise", name: "Deploy Pavise Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643656, className: "Gem_QuarrelShooter_ScatterCaltrop", name: "Scatter Caltrops Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643657, className: "Gem_QuarrelShooter_StoneShot", name: "Stone Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643658, className: "Gem_QuarrelShooter_RapidFire", name: "Rapid Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643659, className: "Gem_QuarrelShooter_Teardown", name: "Teardown Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643660, className: "Gem_QuarrelShooter_RunningShot", name: "Running Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643661, className: "Gem_Ranger_Barrage", name: "Barrage Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643662, className: "Gem_Ranger_HighAnchoring", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643663, className: "Gem_Ranger_CriticalShot", name: "Double Take Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643664, className: "Gem_Ranger_SteadyAim", name: "Full Throttle Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643665, className: "Gem_Ranger_TimeBombArrow", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643666, className: "Gem_Ranger_BounceShot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643667, className: "Gem_Ranger_SpiralArrow", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643668, className: "Gem_Sapper_StakeStockades", name: "(Faded) Stake Stockades Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643669, className: "Gem_Sapper_Cover", name: "(Faded) Conceal Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643670, className: "Gem_Sapper_Claymore", name: "Claymore Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643671, className: "Gem_Sapper_PunjiStake", name: "Punji Stake Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643672, className: "Gem_Sapper_DetonateTraps", name: "Detonate Traps Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643673, className: "Gem_Sapper_BroomTrap", name: "Broom Trap Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643674, className: "Gem_Sapper_CollarBomb", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643675, className: "Gem_Sapper_SpikeShooter", name: "Spike Shooter Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643676, className: "Gem_Wugushi_Detoxify", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643677, className: "Gem_Wugushi_NeedleBlow", name: "Latent Venom Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643678, className: "Gem_Wugushi_Bewitch", name: "Wide Miasma Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643679, className: "Gem_Wugushi_WugongGu", name: "Wugong Gu Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643680, className: "Gem_Wugushi_Zhendu", name: "Zhendu Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643681, className: "Gem_Wugushi_ThrowGuPot", name: "Poison Pot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643682, className: "Gem_Wugushi_JincanGu", name: "Golden Frog Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643683, className: "Gem_Scout_FluFlu", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643684, className: "Gem_Scout_FlareShot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643685, className: "Gem_Scout_Cloaking", name: "Cloaking Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643686, className: "Gem_Scout_Undistance", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643687, className: "Gem_Scout_Scan", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643688, className: "Gem_Scout_SplitArrow", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643689, className: "Gem_Rogue_SneakHit", name: "Sneak Hit Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643690, className: "Gem_Rogue_Feint", name: "Feint Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643691, className: "Gem_Rogue_Spoliation", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643692, className: "Gem_Rogue_Vendetta", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643693, className: "Gem_Rogue_Burrow", name: "Burrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643694, className: "Gem_Rogue_Evasion", name: "Evasion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643695, className: "Gem_Rogue_Lachrymator", name: "Lachrymator Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643696, className: "Gem_Rogue_Backstab", name: "Backstab Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643697, className: "Gem_Schwarzereiter_ConcentratedFire", name: "Concentrated Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643698, className: "Gem_Schwarzereiter_Caracole", name: "Caracole Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643699, className: "Gem_Schwarzereiter_Limacon", name: "Limacon Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643700, className: "Gem_Schwarzereiter_RetreatShot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643701, className: "Gem_Fletcher_BroadHead", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643702, className: "Gem_Fletcher_BodkinPoint", name: "Bodkin Point Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643703, className: "Gem_Fletcher_BarbedArrow", name: "Barbed Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643704, className: "Gem_Fletcher_CrossFire", name: "Crossfire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643705, className: "Gem_Fletcher_MagicArrow", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643706, className: "Gem_Fletcher_Singijeon", name: "Divine Machine Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643707, className: "Gem_Falconer_BuildRoost", name: "Roost Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643708, className: "Gem_Falconer_Circling", name: "Circling Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643709, className: "Gem_Falconer_Hovering", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643710, className: "Gem_Falconer_Pheasant", name: "Pheasant Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643711, className: "Gem_Falconer_HangingShot", name: "Hanging Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643712, className: "Gem_Cannoneer_CannonShot", name: "Cannon Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643713, className: "Gem_Cannoneer_ShootDown", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643714, className: "Gem_Cannoneer_SiegeBurst", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643715, className: "Gem_Cannoneer_CannonBlast", name: "Cannon Blast Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643716, className: "Gem_Cleric_Heal", name: "Heal Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643717, className: "Gem_Cleric_Cure", name: "Cure Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643718, className: "Gem_Cleric_SafetyZone", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643719, className: "Gem_Cleric_DeprotectedZone", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643720, className: "Gem_Cleric_DivineMight", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643721, className: "Gem_Cleric_Fade", name: "Fade Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643722, className: "Gem_Cleric_PatronSaint", name: "Guardian Saint Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643723, className: "Gem_Priest_Aspersion", name: "Aspersion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643724, className: "Gem_Priest_Monstrance", name: "Monstrance Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643725, className: "Gem_Priest_Blessing", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643726, className: "Gem_Priest_Sacrament", name: "Sacrament Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643727, className: "Gem_Priest_Revive", name: "Revive Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643728, className: "Gem_Priest_MassHeal", name: "Mass Heal Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643729, className: "Gem_Priest_Exorcise", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643730, className: "Gem_Priest_StoneSkin", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643731, className: "Gem_Kriwi_Aukuras", name: "Aukuras Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643732, className: "Gem_Kriwi_Zalciai", name: "Zalciai Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643733, className: "Gem_Kriwi_Daino", name: "Daino Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643734, className: "Gem_Kriwi_Zaibas", name: "Zaibas Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643735, className: "Gem_Kriwi_DivineStigma", name: "Divine Stigma Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643736, className: "Gem_Kriwi_Melstis", name: "Piety Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643737, className: "Gem_Bokor_Hexing", name: "Curse of Debility Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643738, className: "Gem_Bokor_Effigy", name: "Effigy Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643739, className: "Gem_Bokor_Zombify", name: "Zombify Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643740, className: "Gem_Bokor_Mackangdal", name: "Mackangdal Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643741, className: "Gem_Bokor_BwaKayiman", name: "Bwa Kayiman Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643742, className: "Gem_Bokor_Samdiveve", name: "Samediveve Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643743, className: "Gem_Bokor_Ogouveve", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643744, className: "Gem_Bokor_Damballa", name: "Damballa Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643745, className: "Gem_Druid_Chortasmata", name: "Chortasmata Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643746, className: "Gem_Druid_Carnivory", name: "Carnivory Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643747, className: "Gem_Druid_StereaTrofh", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643748, className: "Gem_Druid_Transform", name: "Transform Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643749, className: "Gem_Druid_ShapeShifting", name: "Shape Shifting Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643750, className: "Gem_Druid_Telepath", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643751, className: "Gem_Sadhu_OutofBody", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643752, className: "Gem_Sadhu_AstralBodyExplosion", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643753, className: "Gem_Sadhu_VashitaSiddhi", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643754, className: "Gem_Sadhu_Possession", name: "Possession Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643755, className: "Gem_Dievdirbys_CarveVakarine", name: "Statue of Goddess Vakarine Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643756, className: "Gem_Dievdirbys_CarveZemina", name: "Statue of Goddess Zemyna Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643757, className: "Gem_Dievdirbys_CarveLaima", name: "Statue of Goddess Laima Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643758, className: "Gem_Dievdirbys_Carve", name: "Carve Attack Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643759, className: "Gem_Dievdirbys_CarveOwl", name: "Carve Owl Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643760, className: "Gem_Dievdirbys_CarveAustrasKoks", name: "Carve World Tree Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643761, className: "Gem_Dievdirbys_CarveAusirine", name: "Statue of Goddess Ausrine Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643762, className: "Gem_Oracle_ArcaneEnergy", name: "Arcane Energy Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643763, className: "Gem_Oracle_Change", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643764, className: "Gem_Oracle_CounterSpell", name: "Counter Spell Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643765, className: "Gem_Oracle_Forecast", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643766, className: "Gem_Oracle_Prophecy", name: "Prophecy Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643767, className: "Gem_Monk_IronSkin", name: "Iron Skin Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643768, className: "Gem_Monk_DoublePunch", name: "Double Punch Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643769, className: "Gem_Monk_PalmStrike", name: "Palm Strike Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643770, className: "Gem_Monk_HandKnife", name: "Hand Knife Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643771, className: "Gem_Monk_EnergyBlast", name: "Energy Blast Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643772, className: "Gem_Monk_1InchPunch", name: "One Inch Punch Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643773, className: "Gem_Monk_God_Finger_Flicking", name: "God Finger Flick Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643774, className: "Gem_Monk_Golden_Bell_Shield", name: "Golden Bell Shield Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643775, className: "Gem_Pardoner_Simony", name: "Simony Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643776, className: "Gem_Pardoner_Indulgentia", name: "Indulgentia Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643777, className: "Gem_Pardoner_DiscernEvil", name: "Discerning Evil Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643778, className: "Gem_Pardoner_IncreaseMagicDEF", name: "Increase Magic Defense Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643779, className: "Gem_Pardoner_Oblation", name: "Oblation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643780, className: "Gem_Paladin_Smite", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643781, className: "Gem_Paladin_Restoration", name: "Restoration Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643782, className: "Gem_Paladin_ResistElements", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643783, className: "Gem_Paladin_TurnUndead", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643784, className: "Gem_Paladin_Conversion", name: "Sanctuary Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643785, className: "Gem_Paladin_Barrier", name: "Barrier Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643786, className: "Gem_Paladin_Conviction", name: "Conviction Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643816, className: "gem_candy_1", name: "#N/A", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643817, className: "gem_White_1", name: "White Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643818, className: "Gem_Peltasta_UmboBlow", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643819, className: "Gem_Squire_DeadlyCombo", name: "Deadly Combo Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643820, className: "Gem_Corsair_PistolShot", name: "Quick and Dead Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643821, className: "Gem_Doppelsoeldner_Zornhau", name: "Zornhau Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643822, className: "Gem_Doppelsoeldner_Redel", name: "Redel Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643823, className: "Gem_Doppelsoeldner_Zucken", name: "Zuchen Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643824, className: "Gem_Doppelsoeldner_Zwerchhau", name: "Zwerchhau Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643825, className: "Gem_Doppelsoeldner_Sturzhau", name: "Sturtzhau Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643827, className: "Gem_Dragoon_Dragontooth", name: "Dragontooth Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643828, className: "Gem_Dragoon_Serpentine", name: "Serpentine Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643829, className: "Gem_Dragoon_Gae_Bulg", name: "Gae Bulg Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643830, className: "Gem_Dragoon_Dragon_Soar", name: "Dragon Soar Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643831, className: "Gem_Templer_BattleOrders", name: "Battle Orders Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643832, className: "Gem_Templer_NonInvasiveArea", name: "(Faded) Non-Invasive Area Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643833, className: "Gem_Cryomancer_SubzeroShield", name: "Subzero Shield Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643834, className: "Gem_Sorcerer_Evocation", name: "Evocation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643835, className: "Gem_Sorcerer_Desmodus", name: "Desmodus Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643837, className: "Gem_Alchemist_Combustion", name: "Combustion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643838, className: "Gem_Warlock_PoleofAgony", name: "Pole of Agony Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643839, className: "Gem_Warlock_Invocation", name: "Invocation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643840, className: "Gem_Warlock_DarkTheurge", name: "Dark Theurge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643841, className: "Gem_Warlock_Mastema", name: "Mastema Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643842, className: "Gem_QuarrelShooter_StonePicking", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643845, className: "Gem_Schwarzereiter_WildShot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643846, className: "Gem_Falconer_BlisteringThrash", name: "Sonic Strike Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643847, className: "Gem_Musketeer_CoveringFire", name: "Covering Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643848, className: "Gem_Musketeer_HeadShot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643849, className: "Gem_Musketeer_Snipe", name: "Snipe Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643850, className: "Gem_Musketeer_PenetrationShot", name: "Penetration Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643851, className: "Gem_Musketeer_GroovingMuzzle", name: "Grooving Muzzle Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643854, className: "Gem_Paladin_Sanctuary", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643855, className: "Gem_Paladin_Demolition", name: "Demolition Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643856, className: "Gem_Pardoner_Dekatos", name: "Decatose Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643857, className: "Gem_PlagueDoctor_HealingFactor", name: "Healing Factor Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643858, className: "Gem_PlagueDoctor_Incineration", name: "Incineration Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643860, className: "Gem_PlagueDoctor_Fumigate", name: "Fumigate Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643861, className: "Gem_PlagueDoctor_Pandemic", name: "Pandemic Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643862, className: "Gem_PlagueDoctor_BeakMask", name: "Beak Mask Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643863, className: "Gem_Kabbalist_RevengedSevenfold", name: "Revenged Sevenfold Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643864, className: "Gem_Kabbalist_Ayin_sof", name: "Ein Sof Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643865, className: "GEM_Swordman_Bear", name: "Bear Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643866, className: "GEM_Peltasta_HardShield", name: "Hard Shield Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643867, className: "GEM_Hoplite_SharpSpear", name: "Sharp Spear Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643868, className: "GEM_Dragoon_DragonFear", name: "Dragon Fear Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643869, className: "GEM_Templer_AdvancedOrders", name: "Advanced Orders Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643870, className: "GEM_Templer_FlyingColors", name: "(Faded) Flying Colors Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643871, className: "GEM_Pyromancer_Prominence", name: "Prominence Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643872, className: "GEM_Alchemist_SprinkleHPPotion", name: "Sprinkle HP Potion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643873, className: "GEM_Alchemist_SprinkleSPPotion", name: "Sprinkle SP Potion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643874, className: "GEM_Chronomancer_TimeForward", name: "Time Forward Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643875, className: "GEM_Necromancer_RaiseSkullwizard", name: "Raise Skull Mage", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643876, className: "GEM_Elementalist_FireClaw", name: "Fire Claw Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643877, className: "GEM_Elementalist_ElementalEssence", name: "Elemental Burst Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643878, className: "GEM_RuneCaster_Stan", name: "Rune of Rock Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643879, className: "GEM_Archer_Concentration", name: "Concentration Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643880, className: "GEM_Hunter_Howling", name: "Howling Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643881, className: "GEM_QuarrelShooter_BlockAndShoot", name: "Block and Shoot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643882, className: "GEM_Sapper_SpringTrap", name: "Spring Trap Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643883, className: "GEM_Sapper_LegHoldTrap", name: "Leghold Trap Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643884, className: "GEM_Appraiser_Insurance", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643885, className: "GEM_Falconer_Tomahawk", name: "Tomahawk Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643886, className: "GEM_Chaplain_Binatio", name: "Binatio Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643887, className: "GEM_Chaplain_ParaclitusTime", name: "Paraclitus Time Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643888, className: "GEM_Chaplain_VisibleTalent", name: "Visible Talent Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643889, className: "GEM_Miko_Omikuji", name: "Omikuji Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643890, className: "GEM_Scout_DaggerSlash", name: "Dagger Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643891, className: "GEM_Scout_ObliqueFire", name: "Oblique Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643892, className: "GEM_Scout_DoubleAttack", name: "Double Attack Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643893, className: "GEM_Scout_FreeStep", name: "Free Step Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643894, className: "GEM_Assassin_Behead", name: "Behead Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643895, className: "GEM_Assassin_InstantaneousAcceleration", name: "Instant Acceleration Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643896, className: "GEM_Hackapell_HelmChopper", name: "Helm Chopper Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643897, className: "GEM_QuarrelShooter_Kneelingshot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643898, className: "GEM_Cleric_Smite", name: "Smite Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643899, className: "GEM_Priest_TurnUndead", name: "Turn Undead Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643900, className: "GEM_Paladin_StoneSkin", name: "Stone Skin Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643901, className: "GEM_Oracle_DivineMight", name: "Divine Might Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643902, className: "GEM_OutLaw_FireBlindly", name: "Bully Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643903, className: "GEM_OutLaw_Bully", name: "Aggress Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643904, className: "GEM_OutLaw_Rampage", name: "Rampage Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643905, className: "GEM_Shinobi_Raiton_no_Jutsu", name: "Raiton no Jutsu Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643906, className: "GEM_Thaumaturge_SwellHands", name: "Swell Hands Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643907, className: "GEM_Enchanter_EnchantGlove", name: "Enchant Glove Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643908, className: "GEM_Rogue_KnifeThrowing", name: "Knife Throw Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643909, className: "GEM_Thaumaturge_Quicken", name: "Quicken Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643910, className: "GEM_PlagueDoctor_Modafinil", name: "Modafinil Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643911, className: "GEM_Murmillo_FrenziedBurst", name: "Frenzied Burst Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643912, className: "GEM_Peltasta_ButterFly", name: "Butterfly Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643913, className: "GEM_Murmillo_Headbutt", name: "Headbutt Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643914, className: "GEM_Murmillo_ScutumHit", name: "Scutum Hit Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643915, className: "GEM_Murmillo_ShieldTrain", name: "Shield Train Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643916, className: "GEM_Murmillo_EmperorsBane", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643917, className: "GEM_Fencer_BalestraFente", name: "Balestra Fente Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643919, className: "GEM_Fencer_Fleche", name: "Fleche Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643920, className: "GEM_Dragoon_Dethrone", name: "Dethrone Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643921, className: "GEM_Dragoon_DragonFall", name: "Dragon Fall Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643922, className: "GEM_Templer_MortalSlash", name: "Mortal Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643923, className: "GEM_Rancer_Crush", name: "Crush Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643924, className: "GEM_Rancer_Joust", name: "Joust Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643925, className: "GEM_Rancer_SpillAttack", name: "Unhorsing Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643926, className: "GEM_Rancer_Quintain", name: "Quintain Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643927, className: "GEM_Rancer_Chage", name: "Rhongomiant Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643928, className: "GEM_Rancer_GiganteMarcha", name: "Gigante Marcha Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643929, className: "GEM_Retiarii_TridentFinish", name: "Trident Finish Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643930, className: "GEM_Retiarii_EquipDesrption", name: "Disarm Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643931, className: "GEM_Retiarii_DaggerFinish", name: "Dagger Finish Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643932, className: "GEM_Retiarii_BlandirCadena", name: "Blandir Cadena Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643933, className: "GEM_Matador_Muleta", name: "Muleta Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643934, className: "GEM_Matador_Faena", name: "Faena Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643935, className: "GEM_Matador_PasoDoble", name: "Paso Doble Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643936, className: "GEM_Matador_CorridaFinale", name: "Corrida Finale Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643937, className: "GEM_NakMuay_TeKha", name: "Te Kha Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643938, className: "GEM_NakMuay_SokChiang", name: "Sok Chiang Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643939, className: "GEM_NakMuay_TeTrong", name: "Te Trong Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643940, className: "GEM_NakMuay_KhaoLoi", name: "Khao Loi Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643941, className: "GEM_Hackapell_Skarphuggning", name: "Skarphuggning Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643942, className: "GEM_Hackapell_StormBolt", name: "Storm Bolt Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643943, className: "GEM_Hackapell_CavalryCharge", name: "Cavalry Charge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643944, className: "GEM_Hackapell_GrindCutter", name: "Grind Cutter Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643945, className: "GEM_Hackapell_InfiniteAssault", name: "Infinite Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643946, className: "GEM_Psychokino_HeavyGravity", name: "Heavy Gravity Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643947, className: "GEM_Alchemist_AlchemisticMissile", name: "Alchemistic Missile Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643948, className: "GEM_Elementalist_StormDust", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643949, className: "GEM_Sage_MicroDimension", name: "Micro Dimension Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643950, className: "GEM_Sage_UltimateDimension", name: "Ultimate Dimension Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643951, className: "GEM_Sage_DimensionCompression", name: "Dimension Compression Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643952, className: "GEM_Sage_HoleOfDarkness", name: "Hole of Darkness Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643953, className: "GEM_Warlock_Sabbath", name: "Ghastly Trail Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643954, className: "GEM_Warlock_DemonScratch", name: "Demon Scratch Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643955, className: "GEM_Featherfoot_BloodBath", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643956, className: "GEM_Featherfoot_BloodSucking", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643957, className: "GEM_Featherfoot_BonePointing", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643958, className: "GEM_Featherfoot_Ngadhundi", name: "Ngadhundi Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643959, className: "GEM_Featherfoot_Kurdaitcha", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643960, className: "GEM_Featherfoot_KundelaSlash", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643961, className: "GEM_Featherfoot_Enervation", name: "Enervation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643962, className: "GEM_Featherfoot_BloodCurse", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643963, className: "GEM_RuneCaster_Isa", name: "Rune of Earth Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643964, className: "GEM_RuneCaster_Thurisaz", name: "Rune of Repulsion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643965, className: "GEM_RuneCaster_Tiwaz", name: "Rune of Justice Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643966, className: "GEM_RuneCaster_Algiz", name: "Rune of Protection Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643967, className: "GEM_RuneCaster_Hagalaz", name: "Rune of Destruction Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643968, className: "GEM_Shadowmancer_ShadowThorn", name: "Shadow Thorn Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643969, className: "GEM_Shadowmancer_ShadowConjuration", name: "Shadow Conjuration Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643970, className: "GEM_Shadowmancer_ShadowCondensation", name: "Shadow Condensation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643971, className: "GEM_Onmyoji_FireFoxShikigami", name: "Soul Fox Shikigami Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643972, className: "GEM_Onmyoji_GreenwoodShikigami", name: "Greenwood Shikigami Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643973, className: "GEM_Onmyoji_WhiteTigerHowling", name: "Howling White Tiger Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643974, className: "GEM_Onmyoji_WaterShikigami", name: "Wind Shikigami Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643975, className: "GEM_Onmyoji_Toyou", name: "Toyou Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643976, className: "GEM_Onmyoji_YinYangConsonance", name: "Ying Yang Harmony Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643977, className: "GEM_Daoshi_BegoneDemon", name: "Flame Radiation Charm Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643978, className: "GEM_Daoshi_StormCalling", name: "Snow Tempest Charm Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643979, className: "GEM_Daoshi_CreepingDeath", name: "Creeping Death Charm Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643980, className: "GEM_Daoshi_DivinePunishment", name: "Divine Punishment Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643981, className: "GEM_Daoshi_PhantomEradication", name: "Eradication Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643982, className: "GEM_Wugushi_LatentVenom", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643983, className: "GEM_Wugushi_WideMiasma", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643984, className: "GEM_Wugushi_CrescendoBane", name: "Crescendo Bane Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643985, className: "GEM_PiedPiper_HamelnNagetier", name: "Hameln Nagetier Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643986, className: "GEM_Cannoneer_CannonBarrage", name: "Cannon Barrage Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643987, className: "GEM_Cannoneer_SweepingCannon", name: "Sweeping Cannon Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643988, className: "GEM_Musketeer_Volleyfire", name: "Volleyfire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643989, className: "GEM_Mergen_Unload", name: "Spread Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643990, className: "GEM_Mergen_FocusFire", name: "Targeted Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643991, className: "GEM_Mergen_TrickShot", name: "Triple Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643992, className: "GEM_Mergen_DownFall", name: "Down Fall Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643993, className: "GEM_Mergen_ArrowRain", name: "Arrow Sprinkle Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643994, className: "GEM_Mergen_Zenith", name: "Zenith Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643995, className: "GEM_Matross_FireAndRun", name: "Fire and Run Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643996, className: "GEM_Matross_Explosion", name: "Explosion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643997, className: "GEM_Matross_CrouchingStrike", name: "Crouching Strike Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 643998, className: "GEM_Matross_CanisterShot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 643999, className: "GEM_TigerHunter_PierceShot", name: "Piercing Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 644000, className: "GEM_TigerHunter_RapidShot", name: "Rapid Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744000, className: "GEM_TigerHunter_Blitz", name: "Ambush Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744001, className: "GEM_Druid_Seedbomb", name: "Seed Bomb Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744002, className: "GEM_Druid_ThornVine", name: "Thorn Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744003, className: "GEM_PlagueDoctor_PlagueVapours", name: "Black Death Steam Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744004, className: "GEM_Kabbalist_Merkabah", name: "Merkabah Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744005, className: "GEM_Inquisitor_GodSmash", name: "God Smash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744006, className: "GEM_Inquisitor_PearofAnguish", name: "Pear of Anguish Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744007, className: "GEM_Inquisitor_BreakingWheel", name: "Breaking Wheel Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744008, className: "GEM_Inquisitor_MalleusMaleficarum", name: "Malleus Maleficarum Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744009, className: "GEM_Inquisitor_BreastRipper", name: "Ripper Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744010, className: "GEM_Miko_Gohei", name: "Gohei Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744011, className: "GEM_Miko_Hamaya", name: "Hamaya Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744012, className: "GEM_Zealot_Immolation", name: "Immolation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744013, className: "GEM_Zealot_FanaticIllusion", name: "Fanatic Illusion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744014, className: "GEM_Exorcist_Rubric", name: "Rubric Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744015, className: "GEM_Exorcist_Entity", name: "Entity Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744016, className: "GEM_Exorcist_AquaBenedicta", name: "Aqua Benedicta Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744017, className: "GEM_Exorcist_Gregorate", name: "Gregorate Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744018, className: "GEM_Exorcist_Katadikazo", name: "Katadikazo Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744019, className: "GEM_Assassin_PiercingHeart", name: "Piercing Heart Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744020, className: "GEM_Assassin_Annihilation", name: "Annihilation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744021, className: "GEM_OutLaw_SprinkleSands", name: "Throw Sand Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744022, className: "GEM_OutLaw_BreakBrick", name: "Brick Smash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744023, className: "GEM_OutLaw_Mangle", name: "Mangle Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744024, className: "GEM_Corsair_ImpaleDagger", name: "Impale Dagger Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744025, className: "GEM_Shinobi_Kunai", name: "Kunai Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744026, className: "GEM_Shinobi_Katon_no_jutsu", name: "Katon no Jutsu Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744027, className: "GEM_Shinobi_Mijin_no_jutsu", name: "Mijin no Jutsu Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744028, className: "GEM_Linker_ElectricShock", name: "Electric Shock Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744029, className: "GEM_Schwarzereiter_AssaultFire", name: "Marching Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744030, className: "GEM_Bulletmarker_NapalmBullet", name: "Napalm Bullet Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744031, className: "GEM_Bulletmarker_FullMetalJacket", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744032, className: "GEM_Bulletmarker_RestInPeace", name: "R.I.P. Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744033, className: "GEM_Bulletmarker_BloodyOverdrive", name: "Bloody Overdrive Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744034, className: "GEM_Bulletmarker_SmashBullet", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744035, className: "GEM_Bulletmarker_MozambiqueDrill", name: "Mozambique Drill Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744036, className: "GEM_Arditi_Granata", name: "Granata Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744037, className: "GEM_Arditi_TreGranata", name: "Tre Granate Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744038, className: "GEM_Arditi_Ritirarsi", name: "Ritirarsi Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744039, className: "GEM_Arditi_Invasione", name: "Invasione Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744040, className: "GEM_Arditi_Taglio", name: "Taglio Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744041, className: "GEM_Sheriff_QuickDraw", name: "Quick Draw Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744042, className: "GEM_Sheriff_Fanning", name: "Fanning Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744043, className: "GEM_Sheriff_Peacemaker", name: "Peacemaker Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744044, className: "GEM_Sheriff_AimingShot", name: "Aiming Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744045, className: "GEM_BlossomBlader_FallenBlossom", name: "Fallen Blossom Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744046, className: "GEM_BlossomBlader_ControlBlade", name: "Control Blade Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744047, className: "GEM_BlossomBlader_Flash", name: "Flash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744048, className: "GEM_BlossomBlader_BlossomSlash", name: "Blossom Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744049, className: "GEM_TerraMancer_SandBlast", name: "Sand Blast Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744050, className: "GEM_TerraMancer_StoneShower", name: "Stone Shower Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744051, className: "GEM_TerraMancer_RollingStone", name: "Rolling Stone Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744052, className: "GEM_TerraMancer_Implosion", name: "Implosion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744053, className: "GEM_TerraMancer_HornOfGolem", name: "Horn of Golem Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744054, className: "GEM_Arbalester_DarkJudgement", name: "Dark Judgement Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744055, className: "GEM_Arbalester_GuidedShot", name: "Guided Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744056, className: "GEM_Arbalester_FanwiseShots", name: "Fanwise Shots Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744057, className: "GEM_Arbalester_Escape", name: "Escape Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744058, className: "GEM_Arbalester_DeadZone", name: "Dead Zone Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744059, className: "GEM_Arbalester_ShiningBurst", name: "Shining Burst Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744060, className: "GEM_Crusader_HolySmash", name: "Holy Smash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744061, className: "GEM_Crusader_Sacred", name: "Sacred Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744062, className: "GEM_Crusader_RingOfLight", name: "Ring of Light Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744063, className: "GEM_Crusader_Condemn", name: "Condemn Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744064, className: "GEM_Crusader_ProtectionOfGoddess", name: "Protection of Goddess Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744065, className: "GEM_Crusader_Retaliation", name: "Retaliation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744066, className: "GEM_Rangda_Luka", name: "Luka Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744067, className: "GEM_Rangda_Kutukan", name: "Kutukan Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744068, className: "GEM_Rangda_Rawa", name: "Rawa Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744069, className: "GEM_OutLaw_FireBlindly_True", name: "Blindfire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744070, className: "GEM_Appraiser_LargeMagnifyingGlass", name: "Huge Magnifier Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744071, className: "GEM_Appraiser_HighMagnifyingGlass", name: "High Scale Magnifying Glass Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744072, className: "GEM_Appraiser_TripletLens", name: "Triplet Lense Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744090, className: "GEM_Schwarzereiter_DoubleBullet", name: "Serial Bullet Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744377, className: "GEM_Swordman_Liberate", name: "Liberate Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744378, className: "GEM_Cataphract_AcrobaticMount", name: "Acrobatic Mount Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744379, className: "GEM_Fencer_Preparation", name: "Preparation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744380, className: "GEM_Fencer_EpeeGarde", name: "Epee Garde Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744381, className: "GEM_Murmillo_CassisCrista", name: "Cassis Crista Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744382, className: "GEM_Murmillo_Sprint", name: "Sprint Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744383, className: "GEM_Dragoon_DragoonHelmet", name: "Dragonoid Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744384, className: "GEM_Templer_BuildForge", name: "(Faded) Forge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744385, className: "GEM_Templer_BuildShieldCharger", name: "(Faded) Shield Charger Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744386, className: "GEM_Templer_HorseRiding", name: "(Faded) Horse Riding Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744387, className: "GEM_Rancer_Commence", name: "Initiate Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744388, className: "GEM_Rancer_Prevent", name: "Prevent Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744389, className: "GEM_Matador_Capote", name: "Capote Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744390, className: "GEM_Matador_Ole", name: "Ole Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744391, className: "GEM_Matador_BackSlide", name: "Back Slide Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744392, className: "GEM_NakMuay_RamMuay", name: "Ram Muay Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744393, className: "GEM_NakMuay_MuayThai", name: "Muay Thai Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744394, className: "GEM_Retiarii_FishingNetsDraw", name: "Pull Rete Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744395, className: "GEM_Retiarii_ThrowingFishingNet", name: "Throw Rete Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744396, className: "GEM_Retiarii_DaggerGuard", name: "Dagger Guard Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744397, className: "GEM_Hackapell_HakkaPalle", name: "Hakka Palle Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744398, className: "GEM_BlossomBlader_Flowering", name: "Flowering Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744399, className: "GEM_BlossomBlader_StartUp", name: "StartUp Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744446, className: "GEM_Sorcerer_Obey", name: "Riding Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744447, className: "GEM_Sorcerer_Morph", name: "Morph Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744448, className: "GEM_Sorcerer_SummonServant", name: "Summon Servant Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744449, className: "GEM_Chronomancer_Pass", name: "Pass Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744450, className: "GEM_Chronomancer_QuickCast", name: "Quick Cast", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744451, className: "GEM_Necromancer_CreateShoggoth", name: "Create Shoggoth Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744452, className: "GEM_Necromancer_Disinter", name: "Disinter Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744453, className: "GEM_Necromancer_RaiseDead", name: "Raise Dead Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744454, className: "GEM_Necromancer_RaiseSkullarcher", name: "Raise Skull Archer Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744455, className: "GEM_Alchemist_Dig", name: "Dig Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744456, className: "GEM_Alchemist_Roasting", name: "Gem Roasting Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744457, className: "GEM_Alchemist_Tincturing", name: "Tincturing Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744458, className: "GEM_Alchemist_MagnumOpus", name: "Magnum Opus Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744459, className: "GEM_Featherfoot_Levitation", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744460, className: "GEM_Warlock_EvilSacrifice", name: "Evil Sacrifice Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744461, className: "GEM_RuneCaster_Ehwaz", name: "Rune of Gravity Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744462, className: "GEM_RuneCaster_Berkana", name: "Rune of Beginning Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744463, className: "GEM_Sage_Portal", name: "Portal Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744464, className: "GEM_Sage_Blink", name: "Blink Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744465, className: "GEM_Sage_MissileHole", name: "Missile Hole Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744466, className: "GEM_Sage_PortalShop", name: "Portal Shop Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744467, className: "GEM_Shadowmancer_ShadowPool", name: "Shadow Pool Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744468, className: "GEM_Shadowmancer_Hallucination", name: "Hallucination Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744469, className: "GEM_Shadowmancer_ShadowFatter", name: "Shadow Fatter Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744470, className: "GEM_Shadowmancer_InfernalShadow", name: "Infernal Shadow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744471, className: "GEM_Onmyoji_GenbuArmor", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744472, className: "GEM_Onmyoji_CrystalballShikigami", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744473, className: "GEM_Daoshi_LightningCharm", name: "Strengthen Charm Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744474, className: "GEM_Daoshi_FlameRadiation", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744475, className: "GEM_Daoshi_FireCharm", name: "Fire Charm Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744476, className: "GEM_TerraMancer_SandWall", name: "Sand Wall Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744538, className: "GEM_Archer_Jump", name: "Leap Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744539, className: "GEM_Hunter_Praise", name: "Praise Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744540, className: "GEM_Falconer_Aiming", name: "Aiming Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744541, className: "GEM_Falconer_FirstStrike", name: "Pre-Emptive Strike Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744542, className: "GEM_Cannoneer_SmokeGrenade", name: "Smoke Grenade Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744543, className: "GEM_Cannoneer_Bazooka", name: "Bazooka Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744544, className: "GEM_Musketeer_SnipersSerenity", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744545, className: "GEM_Musketeer_PrimeAndLoad", name: "Prime and Load Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744546, className: "GEM_Appraiser_Apprise", name: "Identify Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744547, className: "GEM_Appraiser_Overestimate", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744548, className: "GEM_Appraiser_Forgery", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744549, className: "GEM_Appraiser_Devaluation", name: "Devaluation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744550, className: "GEM_Appraiser_Blindside", name: "Expose Weakness Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744551, className: "GEM_PiedPiper_Dissonanz", name: "Dissonanz Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744552, className: "GEM_PiedPiper_Wiegenlied", name: "Wiegenlied Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744553, className: "GEM_PiedPiper_HypnotischeFlote", name: "Hypnotische Floete Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744554, className: "GEM_PiedPiper_Friedenslied", name: "Friedenslied Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744555, className: "GEM_PiedPiper_Marschierendeslied", name: "Marschierendeslied Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744556, className: "GEM_PiedPiper_LiedDerWeltbaum", name: "Lied des Weltbaum Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744557, className: "GEM_PiedPiper_Improvisation", name: "Stegreifspiel Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744558, className: "GEM_Matross_MenaceShot", name: "Menace Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744559, className: "GEM_Matross_Roar", name: "Roar Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744560, className: "GEM_TigerHunter_Tracking", name: "Tracking Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744561, className: "GEM_TigerHunter_EyeofBeast", name: "Tiger Hunting Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744562, className: "GEM_TigerHunter_HideShot", name: "Camo Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744563, className: "GEM_Arquebusier_Prediction", name: "Prediction Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744564, className: "GEM_Arquebusier_PinpointFire", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744565, className: "GEM_Arquebusier_LuckyStrike", name: "Linear Shooting Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744566, className: "GEM_Arquebusier_ArquebusBarrage", name: "Arquebus Barrage Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744567, className: "GEM_Arquebusier_Salute", name: "Dusty Salute Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744568, className: "GEM_Arquebusier_DesperateDefense", name: "Desperate Defense Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744569, className: "GEM_Arquebusier_PrecisionFire", name: "Precision Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744602, className: "GEM_Priest_Resurrection", name: "Resurrection Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744603, className: "GEM_Sadhu_Prakriti", name: "Prakriti Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744604, className: "GEM_Sadhu_TransmitPrana", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744605, className: "GEM_Sadhu_AstralBodySmite", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744606, className: "GEM_Pardoner_SpellShop", name: "Spell Shop Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744607, className: "GEM_Druid_Lycanthropy", name: "Lycanthropy Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744608, className: "GEM_Druid_HengeStone", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744609, className: "GEM_Oracle_Clairvoyance", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744610, className: "GEM_Oracle_Ressetting", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744611, className: "GEM_Oracle_DeathVerdict", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744612, className: "GEM_Oracle_SwitchGender", name: "Gender Switch Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744613, className: "GEM_Oracle_Foretell", name: "Foretell Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744614, className: "GEM_Oracle_TwistOfFate", name: "Twist of Fate Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744615, className: "GEM_PlagueDoctor_Methadone", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744616, className: "GEM_Kabbalist_Nachash", name: "Nachash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744617, className: "GEM_Kabbalist_Notarikon", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744618, className: "GEM_Kabbalist_Clone", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744619, className: "GEM_Kabbalist_Gevura", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744620, className: "GEM_Kabbalist_TheTreeOfSepiroth", name: "Tree of Sepiroth Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744621, className: "GEM_Chaplain_LastRites", name: "Last Rites Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744622, className: "GEM_Chaplain_BuildCappella", name: "Deploy Cappella Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744623, className: "GEM_Chaplain_Aspergillum", name: "Aspergillum Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744624, className: "GEM_Inquisitor_IronMaiden", name: "Iron Maiden Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744625, className: "GEM_Inquisitor_Judgment", name: "Judgment Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744626, className: "GEM_Miko_HoukiBroom", name: "Sweeping Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744627, className: "GEM_Miko_Kasiwade", name: "Clap Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744628, className: "GEM_Miko_KaguraDance", name: "Kagura Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744629, className: "GEM_Zealot_Invulnerable", name: "Invulnerable Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744630, className: "GEM_Zealot_BeadyEyed", name: "Beady Eyed Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744631, className: "GEM_Zealot_Fanaticism", name: "Fanaticism Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744632, className: "GEM_Zealot_BlindFaith", name: "Blind Faith Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744633, className: "GEM_Zealot_EmphasisTrust", name: "Emphatic Trust Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744634, className: "GEM_Exorcist_Engkrateia", name: "Engkrateia Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744635, className: "GEM_Exorcist_Koinonia", name: "Grand Cross Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744636, className: "GEM_Crusader_Chants", name: "Chant Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744722, className: "GEM_Assassin_Hasisas", name: "Hasisas Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744723, className: "GEM_Assassin_HallucinationSmoke", name: "Hallucination Smoke Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744725, className: "GEM_Squire_Repair", name: "Repair Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744726, className: "GEM_Squire_Camp", name: "Base Camp Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744727, className: "GEM_Squire_FoodTable", name: "Refreshment Table Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744728, className: "GEM_Squire_EquipmentTouchUp", name: "Equipment Maintenance Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744729, className: "GEM_Corsair_Brutality", name: "Brutality Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744730, className: "GEM_Shinobi_Bunshin_no_jutsu", name: "Bunshin no Jutsu Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744731, className: "GEM_Shinobi_Mokuton_no_jutsu", name: "Mokuton no Jutsu Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744732, className: "GEM_Thaumaturge_Reversi", name: "Reversi Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744733, className: "GEM_Linker_Unbind", name: "Unbind Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744734, className: "GEM_Enchanter_Agility", name: "Agility Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744735, className: "GEM_Enchanter_EnchantArmor", name: "Enchant Armor Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744736, className: "GEM_Enchanter_EnchantLightning", name: "Enchant Weapon Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744737, className: "GEM_Enchanter_EnchantEarth", name: "Enchant Earth Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744738, className: "GEM_Enchanter_LightningHands", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, -{ itemId: 744739, className: "GEM_Enchanter_OverReinforce", name: "Over-Reinforce Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744740, className: "GEM_Schwarzereiter_EvasiveAction", name: "Evasive Action Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744741, className: "GEM_Bulletmarker_DoubleGunStance", name: "Double Gun Stance Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744742, className: "GEM_Bulletmarker_TracerBullet", name: "Tracer Bullet Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744743, className: "GEM_Bulletmarker_FreezeBullet", name: "Freeze Bullet Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744744, className: "GEM_Bulletmarker_Outrage", name: "Outrage Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744745, className: "GEM_Arditi_Recupero", name: "Recupero Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744746, className: "GEM_Sheriff_Westraid", name: "Westraid Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744747, className: "GEM_Sheriff_Redemption", name: "Redemption Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744748, className: "GEM_Rangda_Barong", name: "Barong Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744749, className: "GEM_Rangda_Penyerapan", name: "Penyerapan Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744750, className: "GEM_Rangda_Keletihan", name: "Keletihan Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744751, className: "GEM_Clown_SpinningKnife", name: "Spinning Knife Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744752, className: "GEM_Clown_Replica", name: "Replica Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744753, className: "GEM_Clown_FatalRoulette", name: "Fatal Roulette Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744754, className: "GEM_Clown_Climax", name: "Climax Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744755, className: "GEM_Clown_TrickorTreat", name: "Trick or Treat Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744756, className: "GEM_Clown_ClownWalk", name: "Clown Walk Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744757, className: "GEM_Luchador_Enmascarado", name: "Enmascarado Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744758, className: "GEM_Luchador_Chop", name: "Chop Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744759, className: "GEM_Luchador_LuchaDeSilla", name: "Lucha De Silla Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744760, className: "GEM_Luchador_Golpear", name: "Golpear Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744761, className: "GEM_Luchador_Chocar", name: "Chocar Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744762, className: "GEM_Luchador_Ceremonia", name: "Ceremonia Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744763, className: "GEM_Luchador_Martinete", name: "Martinete Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744764, className: "GEM_Sadhu_Anila", name: "Enira Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744765, className: "GEM_Sadhu_Tanoti", name: "Tanoti Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744766, className: "GEM_Sadhu_Patati", name: "Patati Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744767, className: "GEM_Sadhu_Moksha", name: "Moksha Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744768, className: "GEM_Sadhu_Soulmaster", name: "Spirit Expert Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744820, className: "GEM_Alchemist_ItemAwakening", name: "Item Awakening Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744821, className: "GEM_Hwarang_PyeonJeon", name: "Pyeonjeon Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744822, className: "GEM_Hwarang_BlackHornBow", name: "Black Horn Bow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744823, className: "GEM_Hwarang_WhiteHornBow", name: "White Horn Bow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744824, className: "GEM_Hwarang_DoNotRetreat", name: "Outbrave Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744825, className: "GEM_Hwarang_Brotherhood", name: "Brotherhood Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744826, className: "GEM_Hwarang_ArrowDancing", name: "Dancing Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744827, className: "GEM_Ranger_Scan", name: "Scan Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744828, className: "GEM_Ranger_Strafe", name: "Strafe Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744829, className: "GEM_Ranger_BlazingArrow", name: "Blazing Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744830, className: "GEM_Fletcher_FletcherArrowShot", name: "Fletcher Arrow Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744831, className: "GEM_Fletcher_CatenaChainArrow", name: "Catena Chain Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744832, className: "GEM_Matross_ArtilleryCall", name: "Artillery Call Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744833, className: "Gem_Highlander_Defiance", name: "Defiance Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744834, className: "GEM_Enchanter_EnchantAura", name: "Enchant Aura Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744835, className: "Gem_Thaumaturge_Transmute", name: "Transmute Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744836, className: "Gem_Hakkapeliter_HackaPoa", name: "Hakka Poa Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744837, className: "Gem_Hakkapeliter_Blossa", name: "Blosa Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744838, className: "Gem_Hakkapeliter_AnkleShot", name: "Ankle Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744839, className: "Gem_Hakkapeliter_Spaning", name: "Spaning Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744840, className: "Gem_Hakkapeliter_TrooperCharge", name: "Trooper Charge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744841, className: "Gem_Hakkapeliter_InfiniteAssault", name: "Infinite Assault Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744842, className: "GEM_Featherfoot_Kundela", name: "Kundela Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744843, className: "GEM_Featherfoot_Bloodexplosion", name: "Blood Explosion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744844, className: "GEM_Featherfoot_Bloodpool", name: "Blood Pool Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744845, className: "GEM_Featherfoot_Plague", name: "Plague Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744846, className: "GEM_Keraunos_OverLoad", name: "Overload Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744847, className: "GEM_Keraunos_MagneticField", name: "Electric Orb Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744848, className: "GEM_Keraunos_LightningSpear", name: "Lightning Spear Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744849, className: "GEM_Keraunos_ElectRode", name: "Electrode Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744850, className: "GEM_Keraunos_Static", name: "Static Field Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744851, className: "GEM_Keraunos_ElectricDrive", name: "Electric Drive Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744852, className: "GEM_Lama_Lamapose", name: "Vipashyana Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744853, className: "GEM_Lama_StrongfistHanginglegs", name: "Strong Fist/ Leg Trip Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744854, className: "GEM_Lama_PointkickEarthshock", name: "Point Kick / Break Mountain Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744855, className: "GEM_Lama_FlyingkickSuddenkick", name: "Sudden Kick / Flying Kick Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744856, className: "GEM_Lama_Endlessattacks", name: "Surging Wave Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744857, className: "GEM_Kabbalist_Anagrama", name: "Anagrama Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744858, className: "GEM_Templer_MortalWave", name: "Mortal Wave Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744859, className: "GEM_Templer_Retribution", name: "Retribution Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744860, className: "GEM_Templer_MoraleBanner", name: "Flag of Morale Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744861, className: "GEM_Templer_RevengeBanner", name: "Flag of Revenge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744862, className: "GEM_Templer_VitalityBanner", name: "Flag of Vitality Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744863, className: "GEM_Jaguar_JaguarStance", name: "Jaguar Stance Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744864, className: "GEM_Jaguar_WildRush", name: "Wild Rush Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744865, className: "GEM_Jaguar_TargetOfHunt", name: "Hunter’s Target Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744866, className: "GEM_Jaguar_WildHowling", name: "Wild Howling Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744867, className: "GEM_Jaguar_WildThorn", name: "Wild Thorn Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744868, className: "GEM_Jaguar_WildClaw", name: "Wild Claw Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744869, className: "GEM_Jaguar_AdaptabilityOfWildness", name: "Wild Adaptability: Extreme", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744870, className: "GEM_Hunter_PetAttack", name: "Attack! Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744871, className: "GEM_Hunter_Bolas", name: "Bolas Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744872, className: "GEM_Hunter_BleedingPierce", name: "Bleeding Pierce Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744873, className: "GEM_Hunter_Brawl", name: "Udang-tang-tang! Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744874, className: "GEM_SpearMaster_WildTigerSpear", name: "Spear of the Brave Tiger Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744875, className: "GEM_SpearMaster_RushSpear", name: "Advancing Spear Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744876, className: "GEM_SpearMaster_SwiftMove", name: "Light as a Feather Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744877, className: "GEM_SpearMaster_FlyingSerpentFall", name: "Fall of the Ascending Dragon Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744878, className: "GEM_SpearMaster_UniqueSpearDance", name: "Painting with a Spear Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744879, className: "GEM_SpearMaster_Hierophany", name: "Incarnation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744880, className: "GEM_Engineer_FlameTurret", name: "Flame Turret Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744882, className: "GEM_Engineer_ArrowTurret", name: "Arrow Turret Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744883, className: "GEM_Engineer_LightningTurret", name: "Lightning Turret Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744884, className: "GEM_Engineer_BuffTurret", name: "Buff Turret Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744885, className: "GEM_Engineer_KingMechaV", name: "King Mecha V Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744886, className: "GEM_Engineer_RepairKit", name: "Fix Kit Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744887, className: "GEM_Illusionist_IllusionSword", name: "Illusion Blade Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744888, className: "GEM_Illusionist_IllusionBlast", name: "Illusion Blast Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744889, className: "GEM_Illusionist_MagicalIllusion", name: "Magical Illusion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744890, className: "GEM_Illusionist_Flood", name: "Deluge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744891, className: "GEM_Illusionist_Nightmare", name: "Nightmare Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744892, className: "GEM_Illusionist_IllusionArmor", name: "Illusion Armor Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744899, className: "GEM_Pontifex_Missa", name: "Mass Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744900, className: "GEM_Pontifex_EvilBurn", name: "Evil Burn Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744901, className: "GEM_Pontifex_Atonement", name: "Atonement Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744902, className: "GEM_Pontifex_Evangelism", name: "Evangelism Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744903, className: "GEM_Pontifex_Gospel", name: "Gospel Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744904, className: "GEM_Pontifex_Didache", name: "Didache: Absolution Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744905, className: "GEM_WingedHussars_CircleWings", name: "Circle Wings Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744906, className: "GEM_WingedHussars_RisingWings", name: "Rising Wings Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744907, className: "GEM_WingedHussars_GiantWings", name: "Giant Wings Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744908, className: "GEM_WingedHussars_WindPulse", name: "Wind Pulse Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744909, className: "GEM_WingedHussars_ImpulseSpears", name: "Impulse Spears Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744910, className: "GEM_WingedHussars_BattleSpirit", name: "Battle Spirit Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744911, className: "GEM_WingedHussars_ExplosionSpears", name: "Explosion Spears Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744912, className: "GEM_Desperado_BadGuy", name: "Bad Guy Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744913, className: "GEM_Desperado_Equilibrium", name: "Equilibrium Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744914, className: "GEM_Desperado_Revenged", name: "Revenged Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744915, className: "GEM_Desperado_DeadlyFire", name: "Deadly Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744916, className: "GEM_Desperado_RussianRoulette", name: "Russian Roulette Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744917, className: "GEM_Desperado_LastManStanding", name: "Last Man Standing Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744918, className: "GEM_BowMaster_FocusFire", name: "Concentrated Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744919, className: "GEM_BowMaster_DodgeFire", name: "Dodging Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744920, className: "GEM_BowMaster_SkyBow", name: "Angelic Bow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744921, className: "GEM_BowMaster_ScatterShot", name: "Scatter Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744922, className: "GEM_BowMaster_Hyunmoo", name: "Blasting Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744923, className: "GEM_BowMaster_GodArrow", name: "Angelic Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744924, className: "GEM_Vanquisher_VerticalSlash", name: "Vertical Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744925, className: "GEM_Vanquisher_TurnOver", name: "Spiral Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744926, className: "GEM_Vanquisher_VoidSlash", name: "Hollow Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744927, className: "GEM_Vanquisher_EarthCrusher", name: "Terra Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744928, className: "GEM_Vanquisher_WindSlasher", name: "Void Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744929, className: "GEM_Vanquisher_FatalSwordDance", name: "Dance Macabre Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744930, className: "GEM_Vulture_CombatProtocol_Archer", name: "Battle Protocol Gem[A]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744931, className: "GEM_Vulture_Decomposition_Archer", name: "Input: Decompose Gem [A]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744932, className: "GEM_Vulture_GravityField_Archer", name: "Input: Gravity Gem [A]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744933, className: "GEM_Vulture_Diffusion_Archer", name: "Input: Diffusion Gem [A]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744934, className: "GEM_Vulture_PurificationProtocol_Archer", name: "Purification Protocol Gem[A]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744935, className: "GEM_Vulture_Purification_Archer", name: "Input: Purification Gem [A]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744936, className: "GEM_Vulture_Devastation_Archer", name: "Input: Devastation Gem [A]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744937, className: "GEM_Vulture_CombatProtocol_Wizard", name: "Battle Protocol Gem [W]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744938, className: "GEM_Vulture_Decomposition_Wizard", name: "Input: Decompose Gem [W]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744939, className: "GEM_Vulture_GravityField_Wizard", name: "Input: Gravity Gem [W]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744940, className: "GEM_Vulture_Diffusion_Wizard", name: "Input: Diffusion Gem [W]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744941, className: "GEM_Vulture_PurificationProtocol_Wizard", name: "Purification Protocol Gem [W]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744942, className: "GEM_Vulture_Purification_Wizard", name: "Input: Purification Gem [W]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744943, className: "GEM_Vulture_Devastation_Wizard", name: "Input: Devastation Gem [W]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744944, className: "GEM_Vulture_CombatProtocol_Scout", name: "Battle Protocol Gem [T]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744945, className: "GEM_Vulture_Decomposition_Scout", name: "Input: Decomposition Gem [T]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744946, className: "GEM_Vulture_GravityField_Scout", name: "Input: Gravity Gem [T]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744947, className: "GEM_Vulture_Diffusion_Scout", name: "Input: Diffusion Gem [T]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744948, className: "GEM_Vulture_PurificationProtocol_Scout", name: "Purification Protocol Gem [T]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744949, className: "GEM_Vulture_Purification_Scout", name: "Input: Purification Gem [T]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, -{ itemId: 744950, className: "GEM_Vulture_Devastation_Scout", name: "Input: Devastation Gem [T]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643501, className: "gem_circle_1", name: "Red Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643502, className: "gem_square_1", name: "Blue Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643503, className: "gem_diamond_1", name: "Green Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643504, className: "gem_star_1", name: "Yellow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643505, className: "gem_star_test", name: "Test Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643506, className: "Gem_Swordman_Thrust", name: "Thrust Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643507, className: "Gem_Swordman_Bash", name: "Bash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643508, className: "Gem_Swordman_GungHo", name: "Gun Ho Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643509, className: "Gem_Swordman_Concentrate", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643510, className: "Gem_Swordman_PainBarrier", name: "Pain Barrier Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643511, className: "Gem_Swordman_Restrain", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643512, className: "Gem_Swordman_PommelBeat", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643513, className: "Gem_Swordman_DoubleSlash", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643514, className: "Gem_Highlander_WagonWheel", name: "Wagon Wheel Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643515, className: "Gem_Highlander_CartarStroke", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643516, className: "Gem_Highlander_Crown", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643517, className: "Gem_Highlander_CrossGuard", name: "Cross Guard Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643518, className: "Gem_Highlander_Moulinet", name: "Moulinet Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643519, className: "Gem_Highlander_SkyLiner", name: "Skyliner Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643520, className: "Gem_Highlander_CrossCut", name: "Crosscut Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643521, className: "Gem_Highlander_ScullSwing", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643522, className: "Gem_Highlander_VerticalSlash", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643523, className: "Gem_Peltasta_Langort", name: "Langort Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643524, className: "Gem_Peltasta_RimBlow", name: "Rim Blow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643525, className: "Gem_Peltasta_SwashBuckling", name: "Swash Buckling Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643526, className: "Gem_Peltasta_Guardian", name: "Guardian Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643527, className: "Gem_Peltasta_ShieldLob", name: "Shield Lob Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643528, className: "Gem_Peltasta_HighGuard", name: "High Guard Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643529, className: "Gem_Murmillo_EvadeThrust", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643530, className: "Gem_Peltasta_UmboThrust", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643531, className: "Gem_Hoplite_Stabbing", name: "Stabbing Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643532, className: "Gem_Hoplite_Pierce", name: "Pierce Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643533, className: "Gem_Hoplite_Finestra", name: "Finestra Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643534, className: "Gem_Hoplite_SynchroThrusting", name: "Synchro Thrusting Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643535, className: "Gem_Hoplite_LongStride", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643536, className: "Gem_Hoplite_SpearLunge", name: "Spear Lunge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643537, className: "Gem_Hoplite_ThrouwingSpear", name: "Spear Throw Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643538, className: "Gem_Barbarian_Embowel", name: "Embowel Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643539, className: "Gem_Barbarian_StompingKick", name: "Stomping Kick Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643540, className: "Gem_Barbarian_Cleave", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643541, className: "Gem_Barbarian_HelmChopper", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643542, className: "Gem_Barbarian_Warcry", name: "Warcry Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643543, className: "Gem_Barbarian_Frenzy", name: "Frenzy Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643544, className: "Gem_Barbarian_Seism", name: "Seism Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643545, className: "Gem_Barbarian_GiantSwing", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643546, className: "Gem_Barbarian_Pouncing", name: "Pouncing Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643547, className: "Gem_Cataphract_Impaler", name: "Impaler Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643548, className: "Gem_Cataphract_EarthWave", name: "Earth Wave Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643549, className: "Gem_Cataphract_Trot", name: "Trot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643550, className: "Gem_Cataphract_SteedCharge", name: "Steed Charge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643551, className: "Gem_Cataphract_DoomSpike", name: "Doom Spike Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643552, className: "Gem_Cataphract_Rush", name: "Rush Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643553, className: "Gem_Corsair_JollyRoger", name: "Jolly Roger Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643554, className: "Gem_Corsair_IronHook", name: "Iron Hook Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643555, className: "Gem_Corsair_Keelhauling", name: "Keel Hauling Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643556, className: "Gem_Corsair_DustDevil", name: "Dust Devil Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643557, className: "Gem_Corsair_SubweaponCancel", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643558, className: "Gem_Corsair_HexenDropper", name: "Hexen Dropper Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643559, className: "Gem_Doppelsoeldner_Punish", name: "Punish Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643560, className: "Gem_Doppelsoeldner_DeedsOfValor", name: "Deeds of Valor Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643561, className: "Gem_Doppelsoeldner_Mordschlag", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643562, className: "Gem_Doppelsoeldner_Double_pay_earn", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643563, className: "Gem_Doppelsoeldner_Cyclone", name: "Cyclone Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643564, className: "Gem_Rodelero_ShieldCharge", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643565, className: "Gem_Rodelero_Montano", name: "Montano Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643566, className: "Gem_Rodelero_TargeSmash", name: "Targe Smash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643567, className: "Gem_Rodelero_ShieldPush", name: "Shield Push Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643568, className: "Gem_Rodelero_ShieldShoving", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643569, className: "Gem_Rodelero_ShieldBash", name: "Shield Bash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643570, className: "Gem_Rodelero_Slithering", name: "Slithering Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643571, className: "Gem_Rodelero_ShootingStar", name: "Shooting Star Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643572, className: "Gem_Rodelero_HighKick", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643573, className: "Gem_Squire_Arrest", name: "Arrest Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643574, className: "Gem_Fencer_Lunge", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643575, className: "Gem_Fencer_SeptEtoiles", name: "Sept Etoiles Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643576, className: "Gem_Fencer_AttaqueCoquille", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643577, className: "Gem_Fencer_EsquiveToucher", name: "Esquive Toucher Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643578, className: "Gem_Fencer_Flanconnade", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643579, className: "Gem_Fencer_AttaqueComposee", name: "Attaque Composee Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643580, className: "Gem_Wizard_EnergyBolt", name: "Energy Bolt Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643581, className: "Gem_Wizard_Lethargy", name: "Lethargy Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643582, className: "Gem_Wizard_Sleep", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643583, className: "Gem_Wizard_ReflectShield", name: "Magic Shield Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643584, className: "Gem_Wizard_EarthQuake", name: "Earthquake Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643585, className: "Gem_Wizard_Surespell", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643586, className: "Gem_Wizard_MagicMissile", name: "Magic Missile Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643587, className: "Gem_Pyromancer_FireBall", name: "Fireball Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643588, className: "Gem_Pyromancer_FireWall", name: "Fire Wall Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643589, className: "Gem_Pyromancer_EnchantFire", name: "Enchant Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643590, className: "Gem_Pyromancer_Flare", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643591, className: "Gem_Pyromancer_FlameGround", name: "Flame Ground Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643592, className: "Gem_Pyromancer_FirePillar", name: "Fire Pillar Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643593, className: "Gem_Pyromancer_HellBreath", name: "Hell Breath Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643594, className: "Gem_Cryomancer_IceBolt", name: "Ice Bolt Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643595, className: "Gem_Cryomancer_IciclePike", name: "Ice Pike Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643596, className: "Gem_Cryomancer_IceWall", name: "Ice Wall Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643597, className: "Gem_Cryomancer_IceBlast", name: "Ice Blast Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643598, className: "Gem_Cryomancer_Gust", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643599, className: "Gem_Cryomancer_SnowRolling", name: "Snow Rolling Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643600, className: "Gem_Cryomancer_FrostPillar", name: "Frost Pillar Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643601, className: "Gem_Psychokino_PsychicPressure", name: "Psychic Pressure Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643602, className: "Gem_Psychokino_Telekinesis", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643603, className: "Gem_Psychokino_Swap", name: "Swap Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643604, className: "Gem_Psychokino_Teleportation", name: "Teleportation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643605, className: "Gem_Psychokino_MagneticForce", name: "Magnetic Force Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643606, className: "Gem_Psychokino_Raise", name: "Raise Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643607, className: "Gem_Psychokino_GravityPole", name: "Gravity Pole Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643608, className: "Gem_Sorcerer_Summoning", name: "Summoning Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643609, className: "Gem_Sorcerer_SummonFamiliar", name: "Summon Familiar Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643610, className: "Gem_Sorcerer_SummonSalamion", name: "Summon Salamion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643611, className: "Gem_Linker_Physicallink", name: "Physical Link Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643612, className: "Gem_Linker_JointPenalty", name: "Joint Penalty Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643613, className: "Gem_Linker_HangmansKnot", name: "Hangman's Knot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643614, className: "Gem_Linker_SpiritualChain", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643615, className: "Gem_Linker_UmbilicalCord", name: "Lifeline Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643616, className: "Gem_Chronomancer_Quicken", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643617, className: "Gem_Chronomancer_Samsara", name: "Reincarnate Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643618, className: "Gem_Chronomancer_Stop", name: "Stop Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643619, className: "Gem_Chronomancer_Slow", name: "Slow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643620, className: "Gem_Chronomancer_Haste", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643621, className: "Gem_Chronomancer_BackMasking", name: "Backmasking Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643622, className: "Gem_Necromancer_GatherCorpse", name: "Gather Corpse Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643623, className: "Gem_Necromancer_FleshCannon", name: "Flesh Cannon Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643624, className: "Gem_Necromancer_FleshHoop", name: "Flesh Hoop Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643625, className: "Gem_Necromancer_DirtyPole", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643626, className: "Gem_Necromancer_CorpseTower", name: "Corpse Tower Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643627, className: "Gem_Thaumaturge_SwellLeftArm", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643628, className: "Gem_Thaumaturge_ShrinkBody", name: "Shrink Body Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643629, className: "Gem_Thaumaturge_SwellBody", name: "Swell Body Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643630, className: "Gem_Thaumaturge_Transpose", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643631, className: "Gem_Thaumaturge_SwellRightArm", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643632, className: "Gem_Thaumaturge_SwellBrain", name: "Swell Brain Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643633, className: "Gem_Elementalist_Electrocute", name: "Electrocute Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643634, className: "Gem_Elementalist_StoneCurse", name: "Lightning Orb Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643635, className: "Gem_Elementalist_Hail", name: "Hail Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643636, className: "Gem_Elementalist_Prominence", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643637, className: "Gem_Elementalist_Meteor", name: "Meteor Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643638, className: "Gem_Elementalist_FreezingSphere", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643639, className: "Gem_Elementalist_Rain", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643640, className: "Gem_Elementalist_FrostCloud", name: "Blizzard Storm Gem ", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643641, className: "Gem_Archer_SwiftStep", name: "Swift Step Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643642, className: "Gem_Archer_Multishot", name: "Multi Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643643, className: "Gem_Archer_Fulldraw", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643644, className: "Gem_Archer_ObliqueShot", name: "Oblique Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643645, className: "Gem_Archer_Kneelingshot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643646, className: "Gem_Archer_HeavyShot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643647, className: "Gem_Archer_TwinArrows", name: "Twin Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643648, className: "Gem_Hunter_Coursing", name: "(Faded) Coursing Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643649, className: "Gem_Hunter_Snatching", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643650, className: "Gem_Hunter_Pointing", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643651, className: "Gem_Hunter_RushDog", name: "(Faded) Rush Dog Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643652, className: "Gem_Hunter_Retrieve", name: "(Faded) Retrieve Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643653, className: "Gem_Hunter_Hounding", name: "(Faded) Hounding Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643654, className: "Gem_Hunter_Growling", name: "Growling Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643655, className: "Gem_QuarrelShooter_DeployPavise", name: "Deploy Pavise Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643656, className: "Gem_QuarrelShooter_ScatterCaltrop", name: "Scatter Caltrops Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643657, className: "Gem_QuarrelShooter_StoneShot", name: "Stone Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643658, className: "Gem_QuarrelShooter_RapidFire", name: "Rapid Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643659, className: "Gem_QuarrelShooter_Teardown", name: "Teardown Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643660, className: "Gem_QuarrelShooter_RunningShot", name: "Running Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643661, className: "Gem_Ranger_Barrage", name: "Barrage Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643662, className: "Gem_Ranger_HighAnchoring", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643663, className: "Gem_Ranger_CriticalShot", name: "Double Take Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643664, className: "Gem_Ranger_SteadyAim", name: "Full Throttle Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643665, className: "Gem_Ranger_TimeBombArrow", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643666, className: "Gem_Ranger_BounceShot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643667, className: "Gem_Ranger_SpiralArrow", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643668, className: "Gem_Sapper_StakeStockades", name: "(Faded) Stake Stockades Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643669, className: "Gem_Sapper_Cover", name: "(Faded) Conceal Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643670, className: "Gem_Sapper_Claymore", name: "Claymore Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643671, className: "Gem_Sapper_PunjiStake", name: "Punji Stake Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643672, className: "Gem_Sapper_DetonateTraps", name: "Detonate Traps Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643673, className: "Gem_Sapper_BroomTrap", name: "Broom Trap Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643674, className: "Gem_Sapper_CollarBomb", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643675, className: "Gem_Sapper_SpikeShooter", name: "Spike Shooter Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643676, className: "Gem_Wugushi_Detoxify", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643677, className: "Gem_Wugushi_NeedleBlow", name: "Latent Venom Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643678, className: "Gem_Wugushi_Bewitch", name: "Wide Miasma Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643679, className: "Gem_Wugushi_WugongGu", name: "Wugong Gu Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643680, className: "Gem_Wugushi_Zhendu", name: "Zhendu Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643681, className: "Gem_Wugushi_ThrowGuPot", name: "Poison Pot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643682, className: "Gem_Wugushi_JincanGu", name: "Golden Frog Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643683, className: "Gem_Scout_FluFlu", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643684, className: "Gem_Scout_FlareShot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643685, className: "Gem_Scout_Cloaking", name: "Cloaking Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643686, className: "Gem_Scout_Undistance", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643687, className: "Gem_Scout_Scan", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643688, className: "Gem_Scout_SplitArrow", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643689, className: "Gem_Rogue_SneakHit", name: "Sneak Hit Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643690, className: "Gem_Rogue_Feint", name: "Feint Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643691, className: "Gem_Rogue_Spoliation", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643692, className: "Gem_Rogue_Vendetta", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643693, className: "Gem_Rogue_Burrow", name: "Burrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643694, className: "Gem_Rogue_Evasion", name: "Evasion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643695, className: "Gem_Rogue_Lachrymator", name: "Lachrymator Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643696, className: "Gem_Rogue_Backstab", name: "Backstab Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643697, className: "Gem_Schwarzereiter_ConcentratedFire", name: "Concentrated Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643698, className: "Gem_Schwarzereiter_Caracole", name: "Caracole Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643699, className: "Gem_Schwarzereiter_Limacon", name: "Limacon Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643700, className: "Gem_Schwarzereiter_RetreatShot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643701, className: "Gem_Fletcher_BroadHead", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643702, className: "Gem_Fletcher_BodkinPoint", name: "Bodkin Point Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643703, className: "Gem_Fletcher_BarbedArrow", name: "Barbed Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643704, className: "Gem_Fletcher_CrossFire", name: "Crossfire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643705, className: "Gem_Fletcher_MagicArrow", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643706, className: "Gem_Fletcher_Singijeon", name: "Divine Machine Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643707, className: "Gem_Falconer_BuildRoost", name: "Roost Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643708, className: "Gem_Falconer_Circling", name: "Circling Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643709, className: "Gem_Falconer_Hovering", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643710, className: "Gem_Falconer_Pheasant", name: "Pheasant Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643711, className: "Gem_Falconer_HangingShot", name: "Hanging Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643712, className: "Gem_Cannoneer_CannonShot", name: "Cannon Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643713, className: "Gem_Cannoneer_ShootDown", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643714, className: "Gem_Cannoneer_SiegeBurst", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643715, className: "Gem_Cannoneer_CannonBlast", name: "Cannon Blast Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643716, className: "Gem_Cleric_Heal", name: "Heal Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643717, className: "Gem_Cleric_Cure", name: "Cure Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643718, className: "Gem_Cleric_SafetyZone", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643719, className: "Gem_Cleric_DeprotectedZone", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643720, className: "Gem_Cleric_DivineMight", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643721, className: "Gem_Cleric_Fade", name: "Fade Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643722, className: "Gem_Cleric_PatronSaint", name: "Guardian Saint Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643723, className: "Gem_Priest_Aspersion", name: "Aspersion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643724, className: "Gem_Priest_Monstrance", name: "Monstrance Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643725, className: "Gem_Priest_Blessing", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643726, className: "Gem_Priest_Sacrament", name: "Sacrament Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643727, className: "Gem_Priest_Revive", name: "Revive Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643728, className: "Gem_Priest_MassHeal", name: "Mass Heal Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643729, className: "Gem_Priest_Exorcise", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643730, className: "Gem_Priest_StoneSkin", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643731, className: "Gem_Kriwi_Aukuras", name: "Aukuras Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643732, className: "Gem_Kriwi_Zalciai", name: "Zalciai Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643733, className: "Gem_Kriwi_Daino", name: "Daino Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643734, className: "Gem_Kriwi_Zaibas", name: "Zaibas Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643735, className: "Gem_Kriwi_DivineStigma", name: "Divine Stigma Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643736, className: "Gem_Kriwi_Melstis", name: "Piety Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643737, className: "Gem_Bokor_Hexing", name: "Curse of Debility Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643738, className: "Gem_Bokor_Effigy", name: "Effigy Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643739, className: "Gem_Bokor_Zombify", name: "Zombify Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643740, className: "Gem_Bokor_Mackangdal", name: "Mackangdal Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643741, className: "Gem_Bokor_BwaKayiman", name: "Bwa Kayiman Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643742, className: "Gem_Bokor_Samdiveve", name: "Samediveve Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643743, className: "Gem_Bokor_Ogouveve", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643744, className: "Gem_Bokor_Damballa", name: "Damballa Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643745, className: "Gem_Druid_Chortasmata", name: "Chortasmata Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643746, className: "Gem_Druid_Carnivory", name: "Carnivory Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643747, className: "Gem_Druid_StereaTrofh", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643748, className: "Gem_Druid_Transform", name: "Transform Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643749, className: "Gem_Druid_ShapeShifting", name: "Shape Shifting Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643750, className: "Gem_Druid_Telepath", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643751, className: "Gem_Sadhu_OutofBody", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643752, className: "Gem_Sadhu_AstralBodyExplosion", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643753, className: "Gem_Sadhu_VashitaSiddhi", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643754, className: "Gem_Sadhu_Possession", name: "Possession Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643755, className: "Gem_Dievdirbys_CarveVakarine", name: "Statue of Goddess Vakarine Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643756, className: "Gem_Dievdirbys_CarveZemina", name: "Statue of Goddess Zemyna Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643757, className: "Gem_Dievdirbys_CarveLaima", name: "Statue of Goddess Laima Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643758, className: "Gem_Dievdirbys_Carve", name: "Carve Attack Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643759, className: "Gem_Dievdirbys_CarveOwl", name: "Carve Owl Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643760, className: "Gem_Dievdirbys_CarveAustrasKoks", name: "Carve World Tree Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643761, className: "Gem_Dievdirbys_CarveAusirine", name: "Statue of Goddess Ausrine Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643762, className: "Gem_Oracle_ArcaneEnergy", name: "Arcane Energy Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643763, className: "Gem_Oracle_Change", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643764, className: "Gem_Oracle_CounterSpell", name: "Counter Spell Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643765, className: "Gem_Oracle_Forecast", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643766, className: "Gem_Oracle_Prophecy", name: "Prophecy Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643767, className: "Gem_Monk_IronSkin", name: "Iron Skin Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643768, className: "Gem_Monk_DoublePunch", name: "Double Punch Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643769, className: "Gem_Monk_PalmStrike", name: "Palm Strike Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643770, className: "Gem_Monk_HandKnife", name: "Hand Knife Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643771, className: "Gem_Monk_EnergyBlast", name: "Energy Blast Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643772, className: "Gem_Monk_1InchPunch", name: "One Inch Punch Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643773, className: "Gem_Monk_God_Finger_Flicking", name: "God Finger Flick Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643774, className: "Gem_Monk_Golden_Bell_Shield", name: "Golden Bell Shield Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643775, className: "Gem_Pardoner_Simony", name: "Simony Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643776, className: "Gem_Pardoner_Indulgentia", name: "Indulgentia Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643777, className: "Gem_Pardoner_DiscernEvil", name: "Discerning Evil Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643778, className: "Gem_Pardoner_IncreaseMagicDEF", name: "Increase Magic Defense Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643779, className: "Gem_Pardoner_Oblation", name: "Oblation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643780, className: "Gem_Paladin_Smite", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643781, className: "Gem_Paladin_Restoration", name: "Restoration Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643782, className: "Gem_Paladin_ResistElements", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643783, className: "Gem_Paladin_TurnUndead", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643784, className: "Gem_Paladin_Conversion", name: "Sanctuary Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643785, className: "Gem_Paladin_Barrier", name: "Barrier Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643786, className: "Gem_Paladin_Conviction", name: "Conviction Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643816, className: "gem_candy_1", name: "#N/A", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643817, className: "gem_White_1", name: "White Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643818, className: "Gem_Peltasta_UmboBlow", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643819, className: "Gem_Squire_DeadlyCombo", name: "Deadly Combo Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643820, className: "Gem_Corsair_PistolShot", name: "Quick and Dead Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643821, className: "Gem_Doppelsoeldner_Zornhau", name: "Zornhau Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643822, className: "Gem_Doppelsoeldner_Redel", name: "Redel Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643823, className: "Gem_Doppelsoeldner_Zucken", name: "Zuchen Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643824, className: "Gem_Doppelsoeldner_Zwerchhau", name: "Zwerchhau Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643825, className: "Gem_Doppelsoeldner_Sturzhau", name: "Sturtzhau Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643827, className: "Gem_Dragoon_Dragontooth", name: "Dragontooth Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643828, className: "Gem_Dragoon_Serpentine", name: "Serpentine Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643829, className: "Gem_Dragoon_Gae_Bulg", name: "Gae Bulg Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643830, className: "Gem_Dragoon_Dragon_Soar", name: "Dragon Soar Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643831, className: "Gem_Templer_BattleOrders", name: "Battle Orders Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643832, className: "Gem_Templer_NonInvasiveArea", name: "(Faded) Non-Invasive Area Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643833, className: "Gem_Cryomancer_SubzeroShield", name: "Subzero Shield Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643834, className: "Gem_Sorcerer_Evocation", name: "Evocation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643835, className: "Gem_Sorcerer_Desmodus", name: "Desmodus Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643837, className: "Gem_Alchemist_Combustion", name: "Combustion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643838, className: "Gem_Warlock_PoleofAgony", name: "Pole of Agony Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643839, className: "Gem_Warlock_Invocation", name: "Invocation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643840, className: "Gem_Warlock_DarkTheurge", name: "Dark Theurge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643841, className: "Gem_Warlock_Mastema", name: "Mastema Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643842, className: "Gem_QuarrelShooter_StonePicking", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643845, className: "Gem_Schwarzereiter_WildShot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643846, className: "Gem_Falconer_BlisteringThrash", name: "Sonic Strike Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643847, className: "Gem_Musketeer_CoveringFire", name: "Covering Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643848, className: "Gem_Musketeer_HeadShot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643849, className: "Gem_Musketeer_Snipe", name: "Snipe Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643850, className: "Gem_Musketeer_PenetrationShot", name: "Penetration Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643851, className: "Gem_Musketeer_GroovingMuzzle", name: "Grooving Muzzle Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643854, className: "Gem_Paladin_Sanctuary", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643855, className: "Gem_Paladin_Demolition", name: "Demolition Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643856, className: "Gem_Pardoner_Dekatos", name: "Decatose Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643857, className: "Gem_PlagueDoctor_HealingFactor", name: "Healing Factor Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643858, className: "Gem_PlagueDoctor_Incineration", name: "Incineration Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643860, className: "Gem_PlagueDoctor_Fumigate", name: "Fumigate Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643861, className: "Gem_PlagueDoctor_Pandemic", name: "Pandemic Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643862, className: "Gem_PlagueDoctor_BeakMask", name: "Beak Mask Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643863, className: "Gem_Kabbalist_RevengedSevenfold", name: "Revenged Sevenfold Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643864, className: "Gem_Kabbalist_Ayin_sof", name: "Ein Sof Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643865, className: "GEM_Swordman_Bear", name: "Bear Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643866, className: "GEM_Peltasta_HardShield", name: "Hard Shield Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643867, className: "GEM_Hoplite_SharpSpear", name: "Sharp Spear Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643868, className: "GEM_Dragoon_DragonFear", name: "Dragon Fear Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643869, className: "GEM_Templer_AdvancedOrders", name: "Advanced Orders Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643870, className: "GEM_Templer_FlyingColors", name: "(Faded) Flying Colors Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643871, className: "GEM_Pyromancer_Prominence", name: "Prominence Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643872, className: "GEM_Alchemist_SprinkleHPPotion", name: "Sprinkle HP Potion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643873, className: "GEM_Alchemist_SprinkleSPPotion", name: "Sprinkle SP Potion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643874, className: "GEM_Chronomancer_TimeForward", name: "Time Forward Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643875, className: "GEM_Necromancer_RaiseSkullwizard", name: "Raise Skull Mage", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643876, className: "GEM_Elementalist_FireClaw", name: "Fire Claw Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643877, className: "GEM_Elementalist_ElementalEssence", name: "Elemental Burst Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643878, className: "GEM_RuneCaster_Stan", name: "Rune of Rock Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643879, className: "GEM_Archer_Concentration", name: "Concentration Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643880, className: "GEM_Hunter_Howling", name: "Howling Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643881, className: "GEM_QuarrelShooter_BlockAndShoot", name: "Block and Shoot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643882, className: "GEM_Sapper_SpringTrap", name: "Spring Trap Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643883, className: "GEM_Sapper_LegHoldTrap", name: "Leghold Trap Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643884, className: "GEM_Appraiser_Insurance", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643885, className: "GEM_Falconer_Tomahawk", name: "Tomahawk Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643886, className: "GEM_Chaplain_Binatio", name: "Binatio Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643887, className: "GEM_Chaplain_ParaclitusTime", name: "Paraclitus Time Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643888, className: "GEM_Chaplain_VisibleTalent", name: "Visible Talent Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643889, className: "GEM_Miko_Omikuji", name: "Omikuji Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643890, className: "GEM_Scout_DaggerSlash", name: "Dagger Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643891, className: "GEM_Scout_ObliqueFire", name: "Oblique Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643892, className: "GEM_Scout_DoubleAttack", name: "Double Attack Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643893, className: "GEM_Scout_FreeStep", name: "Free Step Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643894, className: "GEM_Assassin_Behead", name: "Behead Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643895, className: "GEM_Assassin_InstantaneousAcceleration", name: "Instant Acceleration Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643896, className: "GEM_Hackapell_HelmChopper", name: "Helm Chopper Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643897, className: "GEM_QuarrelShooter_Kneelingshot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643898, className: "GEM_Cleric_Smite", name: "Smite Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643899, className: "GEM_Priest_TurnUndead", name: "Turn Undead Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643900, className: "GEM_Paladin_StoneSkin", name: "Stone Skin Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643901, className: "GEM_Oracle_DivineMight", name: "Divine Might Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643902, className: "GEM_OutLaw_FireBlindly", name: "Bully Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643903, className: "GEM_OutLaw_Bully", name: "Aggress Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643904, className: "GEM_OutLaw_Rampage", name: "Rampage Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643905, className: "GEM_Shinobi_Raiton_no_Jutsu", name: "Raiton no Jutsu Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643906, className: "GEM_Thaumaturge_SwellHands", name: "Swell Hands Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643907, className: "GEM_Enchanter_EnchantGlove", name: "Enchant Glove Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643908, className: "GEM_Rogue_KnifeThrowing", name: "Knife Throw Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643909, className: "GEM_Thaumaturge_Quicken", name: "Quicken Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643910, className: "GEM_PlagueDoctor_Modafinil", name: "Modafinil Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643911, className: "GEM_Murmillo_FrenziedBurst", name: "Frenzied Burst Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643912, className: "GEM_Peltasta_ButterFly", name: "Butterfly Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643913, className: "GEM_Murmillo_Headbutt", name: "Headbutt Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643914, className: "GEM_Murmillo_ScutumHit", name: "Scutum Hit Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643915, className: "GEM_Murmillo_ShieldTrain", name: "Shield Train Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643916, className: "GEM_Murmillo_EmperorsBane", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643917, className: "GEM_Fencer_BalestraFente", name: "Balestra Fente Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643919, className: "GEM_Fencer_Fleche", name: "Fleche Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643920, className: "GEM_Dragoon_Dethrone", name: "Dethrone Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643921, className: "GEM_Dragoon_DragonFall", name: "Dragon Fall Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643922, className: "GEM_Templer_MortalSlash", name: "Mortal Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643923, className: "GEM_Rancer_Crush", name: "Crush Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643924, className: "GEM_Rancer_Joust", name: "Joust Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643925, className: "GEM_Rancer_SpillAttack", name: "Unhorsing Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643926, className: "GEM_Rancer_Quintain", name: "Quintain Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643927, className: "GEM_Rancer_Chage", name: "Rhongomiant Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643928, className: "GEM_Rancer_GiganteMarcha", name: "Gigante Marcha Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643929, className: "GEM_Retiarii_TridentFinish", name: "Trident Finish Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643930, className: "GEM_Retiarii_EquipDesrption", name: "Disarm Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643931, className: "GEM_Retiarii_DaggerFinish", name: "Dagger Finish Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643932, className: "GEM_Retiarii_BlandirCadena", name: "Blandir Cadena Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643933, className: "GEM_Matador_Muleta", name: "Muleta Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643934, className: "GEM_Matador_Faena", name: "Faena Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643935, className: "GEM_Matador_PasoDoble", name: "Paso Doble Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643936, className: "GEM_Matador_CorridaFinale", name: "Corrida Finale Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643937, className: "GEM_NakMuay_TeKha", name: "Te Kha Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643938, className: "GEM_NakMuay_SokChiang", name: "Sok Chiang Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643939, className: "GEM_NakMuay_TeTrong", name: "Te Trong Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643940, className: "GEM_NakMuay_KhaoLoi", name: "Khao Loi Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643941, className: "GEM_Hackapell_Skarphuggning", name: "Skarphuggning Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643942, className: "GEM_Hackapell_StormBolt", name: "Storm Bolt Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643943, className: "GEM_Hackapell_CavalryCharge", name: "Cavalry Charge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643944, className: "GEM_Hackapell_GrindCutter", name: "Grind Cutter Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643945, className: "GEM_Hackapell_InfiniteAssault", name: "Infinite Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643946, className: "GEM_Psychokino_HeavyGravity", name: "Heavy Gravity Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643947, className: "GEM_Alchemist_AlchemisticMissile", name: "Alchemistic Missile Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643948, className: "GEM_Elementalist_StormDust", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643949, className: "GEM_Sage_MicroDimension", name: "Micro Dimension Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643950, className: "GEM_Sage_UltimateDimension", name: "Ultimate Dimension Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643951, className: "GEM_Sage_DimensionCompression", name: "Dimension Compression Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643952, className: "GEM_Sage_HoleOfDarkness", name: "Hole of Darkness Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643953, className: "GEM_Warlock_Sabbath", name: "Ghastly Trail Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643954, className: "GEM_Warlock_DemonScratch", name: "Demon Scratch Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643955, className: "GEM_Featherfoot_BloodBath", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643956, className: "GEM_Featherfoot_BloodSucking", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643957, className: "GEM_Featherfoot_BonePointing", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643958, className: "GEM_Featherfoot_Ngadhundi", name: "Ngadhundi Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643959, className: "GEM_Featherfoot_Kurdaitcha", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643960, className: "GEM_Featherfoot_KundelaSlash", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643961, className: "GEM_Featherfoot_Enervation", name: "Enervation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643962, className: "GEM_Featherfoot_BloodCurse", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643963, className: "GEM_RuneCaster_Isa", name: "Rune of Earth Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643964, className: "GEM_RuneCaster_Thurisaz", name: "Rune of Repulsion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643965, className: "GEM_RuneCaster_Tiwaz", name: "Rune of Justice Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643966, className: "GEM_RuneCaster_Algiz", name: "Rune of Protection Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643967, className: "GEM_RuneCaster_Hagalaz", name: "Rune of Destruction Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643968, className: "GEM_Shadowmancer_ShadowThorn", name: "Shadow Thorn Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643969, className: "GEM_Shadowmancer_ShadowConjuration", name: "Shadow Conjuration Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643970, className: "GEM_Shadowmancer_ShadowCondensation", name: "Shadow Condensation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643971, className: "GEM_Onmyoji_FireFoxShikigami", name: "Soul Fox Shikigami Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643972, className: "GEM_Onmyoji_GreenwoodShikigami", name: "Greenwood Shikigami Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643973, className: "GEM_Onmyoji_WhiteTigerHowling", name: "Howling White Tiger Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643974, className: "GEM_Onmyoji_WaterShikigami", name: "Wind Shikigami Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643975, className: "GEM_Onmyoji_Toyou", name: "Toyou Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643976, className: "GEM_Onmyoji_YinYangConsonance", name: "Ying Yang Harmony Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643977, className: "GEM_Daoshi_BegoneDemon", name: "Flame Radiation Charm Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643978, className: "GEM_Daoshi_StormCalling", name: "Snow Tempest Charm Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643979, className: "GEM_Daoshi_CreepingDeath", name: "Creeping Death Charm Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643980, className: "GEM_Daoshi_DivinePunishment", name: "Divine Punishment Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643981, className: "GEM_Daoshi_PhantomEradication", name: "Eradication Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643982, className: "GEM_Wugushi_LatentVenom", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643983, className: "GEM_Wugushi_WideMiasma", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643984, className: "GEM_Wugushi_CrescendoBane", name: "Crescendo Bane Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643985, className: "GEM_PiedPiper_HamelnNagetier", name: "Hameln Nagetier Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643986, className: "GEM_Cannoneer_CannonBarrage", name: "Cannon Barrage Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643987, className: "GEM_Cannoneer_SweepingCannon", name: "Sweeping Cannon Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643988, className: "GEM_Musketeer_Volleyfire", name: "Volleyfire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643989, className: "GEM_Mergen_Unload", name: "Spread Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643990, className: "GEM_Mergen_FocusFire", name: "Targeted Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643991, className: "GEM_Mergen_TrickShot", name: "Triple Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643992, className: "GEM_Mergen_DownFall", name: "Down Fall Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643993, className: "GEM_Mergen_ArrowRain", name: "Arrow Sprinkle Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643994, className: "GEM_Mergen_Zenith", name: "Zenith Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643995, className: "GEM_Matross_FireAndRun", name: "Fire and Run Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643996, className: "GEM_Matross_Explosion", name: "Explosion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643997, className: "GEM_Matross_CrouchingStrike", name: "Crouching Strike Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 643998, className: "GEM_Matross_CanisterShot", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 643999, className: "GEM_TigerHunter_PierceShot", name: "Piercing Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 644000, className: "GEM_TigerHunter_RapidShot", name: "Rapid Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744000, className: "GEM_TigerHunter_Blitz", name: "Ambush Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744001, className: "GEM_Druid_Seedbomb", name: "Seed Bomb Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744002, className: "GEM_Druid_ThornVine", name: "Thorn Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744003, className: "GEM_PlagueDoctor_PlagueVapours", name: "Black Death Steam Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744004, className: "GEM_Kabbalist_Merkabah", name: "Merkabah Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744005, className: "GEM_Inquisitor_GodSmash", name: "God Smash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744006, className: "GEM_Inquisitor_PearofAnguish", name: "Pear of Anguish Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744007, className: "GEM_Inquisitor_BreakingWheel", name: "Breaking Wheel Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744008, className: "GEM_Inquisitor_MalleusMaleficarum", name: "Malleus Maleficarum Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744009, className: "GEM_Inquisitor_BreastRipper", name: "Ripper Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744010, className: "GEM_Miko_Gohei", name: "Gohei Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744011, className: "GEM_Miko_Hamaya", name: "Hamaya Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744012, className: "GEM_Zealot_Immolation", name: "Immolation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744013, className: "GEM_Zealot_FanaticIllusion", name: "Fanatic Illusion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744014, className: "GEM_Exorcist_Rubric", name: "Rubric Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744015, className: "GEM_Exorcist_Entity", name: "Entity Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744016, className: "GEM_Exorcist_AquaBenedicta", name: "Aqua Benedicta Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744017, className: "GEM_Exorcist_Gregorate", name: "Gregorate Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744018, className: "GEM_Exorcist_Katadikazo", name: "Katadikazo Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744019, className: "GEM_Assassin_PiercingHeart", name: "Piercing Heart Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744020, className: "GEM_Assassin_Annihilation", name: "Annihilation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744021, className: "GEM_OutLaw_SprinkleSands", name: "Throw Sand Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744022, className: "GEM_OutLaw_BreakBrick", name: "Brick Smash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744023, className: "GEM_OutLaw_Mangle", name: "Mangle Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744024, className: "GEM_Corsair_ImpaleDagger", name: "Impale Dagger Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744025, className: "GEM_Shinobi_Kunai", name: "Kunai Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744026, className: "GEM_Shinobi_Katon_no_jutsu", name: "Katon no Jutsu Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744027, className: "GEM_Shinobi_Mijin_no_jutsu", name: "Mijin no Jutsu Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744028, className: "GEM_Linker_ElectricShock", name: "Electric Shock Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744029, className: "GEM_Schwarzereiter_AssaultFire", name: "Marching Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744030, className: "GEM_Bulletmarker_NapalmBullet", name: "Napalm Bullet Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744031, className: "GEM_Bulletmarker_FullMetalJacket", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744032, className: "GEM_Bulletmarker_RestInPeace", name: "R.I.P. Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744033, className: "GEM_Bulletmarker_BloodyOverdrive", name: "Bloody Overdrive Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744034, className: "GEM_Bulletmarker_SmashBullet", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744035, className: "GEM_Bulletmarker_MozambiqueDrill", name: "Mozambique Drill Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744036, className: "GEM_Arditi_Granata", name: "Granata Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744037, className: "GEM_Arditi_TreGranata", name: "Tre Granate Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744038, className: "GEM_Arditi_Ritirarsi", name: "Ritirarsi Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744039, className: "GEM_Arditi_Invasione", name: "Invasione Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744040, className: "GEM_Arditi_Taglio", name: "Taglio Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744041, className: "GEM_Sheriff_QuickDraw", name: "Quick Draw Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744042, className: "GEM_Sheriff_Fanning", name: "Fanning Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744043, className: "GEM_Sheriff_Peacemaker", name: "Peacemaker Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744044, className: "GEM_Sheriff_AimingShot", name: "Aiming Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744045, className: "GEM_BlossomBlader_FallenBlossom", name: "Fallen Blossom Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744046, className: "GEM_BlossomBlader_ControlBlade", name: "Control Blade Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744047, className: "GEM_BlossomBlader_Flash", name: "Flash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744048, className: "GEM_BlossomBlader_BlossomSlash", name: "Blossom Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744049, className: "GEM_TerraMancer_SandBlast", name: "Sand Blast Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744050, className: "GEM_TerraMancer_StoneShower", name: "Stone Shower Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744051, className: "GEM_TerraMancer_RollingStone", name: "Rolling Stone Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744052, className: "GEM_TerraMancer_Implosion", name: "Implosion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744053, className: "GEM_TerraMancer_HornOfGolem", name: "Horn of Golem Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744054, className: "GEM_Arbalester_DarkJudgement", name: "Dark Judgement Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744055, className: "GEM_Arbalester_GuidedShot", name: "Guided Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744056, className: "GEM_Arbalester_FanwiseShots", name: "Fanwise Shots Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744057, className: "GEM_Arbalester_Escape", name: "Escape Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744058, className: "GEM_Arbalester_DeadZone", name: "Dead Zone Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744059, className: "GEM_Arbalester_ShiningBurst", name: "Shining Burst Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744060, className: "GEM_Crusader_HolySmash", name: "Holy Smash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744061, className: "GEM_Crusader_Sacred", name: "Sacred Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744062, className: "GEM_Crusader_RingOfLight", name: "Ring of Light Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744063, className: "GEM_Crusader_Condemn", name: "Condemn Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744064, className: "GEM_Crusader_ProtectionOfGoddess", name: "Protection of Goddess Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744065, className: "GEM_Crusader_Retaliation", name: "Retaliation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744066, className: "GEM_Rangda_Luka", name: "Luka Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744067, className: "GEM_Rangda_Kutukan", name: "Kutukan Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744068, className: "GEM_Rangda_Rawa", name: "Rawa Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744069, className: "GEM_OutLaw_FireBlindly_True", name: "Blindfire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744070, className: "GEM_Appraiser_LargeMagnifyingGlass", name: "Huge Magnifier Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744071, className: "GEM_Appraiser_HighMagnifyingGlass", name: "High Scale Magnifying Glass Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744072, className: "GEM_Appraiser_TripletLens", name: "Triplet Lense Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744090, className: "GEM_Schwarzereiter_DoubleBullet", name: "Serial Bullet Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744377, className: "GEM_Swordman_Liberate", name: "Liberate Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744378, className: "GEM_Cataphract_AcrobaticMount", name: "Acrobatic Mount Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744379, className: "GEM_Fencer_Preparation", name: "Preparation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744380, className: "GEM_Fencer_EpeeGarde", name: "Epee Garde Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744381, className: "GEM_Murmillo_CassisCrista", name: "Cassis Crista Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744382, className: "GEM_Murmillo_Sprint", name: "Sprint Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744383, className: "GEM_Dragoon_DragoonHelmet", name: "Dragonoid Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744384, className: "GEM_Templer_BuildForge", name: "(Faded) Forge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744385, className: "GEM_Templer_BuildShieldCharger", name: "(Faded) Shield Charger Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744386, className: "GEM_Templer_HorseRiding", name: "(Faded) Horse Riding Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744387, className: "GEM_Rancer_Commence", name: "Initiate Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744388, className: "GEM_Rancer_Prevent", name: "Prevent Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744389, className: "GEM_Matador_Capote", name: "Capote Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744390, className: "GEM_Matador_Ole", name: "Ole Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744391, className: "GEM_Matador_BackSlide", name: "Back Slide Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744392, className: "GEM_NakMuay_RamMuay", name: "Ram Muay Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744393, className: "GEM_NakMuay_MuayThai", name: "Muay Thai Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744394, className: "GEM_Retiarii_FishingNetsDraw", name: "Pull Rete Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744395, className: "GEM_Retiarii_ThrowingFishingNet", name: "Throw Rete Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744396, className: "GEM_Retiarii_DaggerGuard", name: "Dagger Guard Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744397, className: "GEM_Hackapell_HakkaPalle", name: "Hakka Palle Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744398, className: "GEM_BlossomBlader_Flowering", name: "Flowering Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744399, className: "GEM_BlossomBlader_StartUp", name: "StartUp Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744446, className: "GEM_Sorcerer_Obey", name: "Riding Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744447, className: "GEM_Sorcerer_Morph", name: "Morph Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744448, className: "GEM_Sorcerer_SummonServant", name: "Summon Servant Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744449, className: "GEM_Chronomancer_Pass", name: "Pass Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744450, className: "GEM_Chronomancer_QuickCast", name: "Quick Cast", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744451, className: "GEM_Necromancer_CreateShoggoth", name: "Create Shoggoth Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744452, className: "GEM_Necromancer_Disinter", name: "Disinter Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744453, className: "GEM_Necromancer_RaiseDead", name: "Raise Dead Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744454, className: "GEM_Necromancer_RaiseSkullarcher", name: "Raise Skull Archer Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744455, className: "GEM_Alchemist_Dig", name: "Dig Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744456, className: "GEM_Alchemist_Roasting", name: "Gem Roasting Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744457, className: "GEM_Alchemist_Tincturing", name: "Tincturing Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744458, className: "GEM_Alchemist_MagnumOpus", name: "Magnum Opus Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744459, className: "GEM_Featherfoot_Levitation", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744460, className: "GEM_Warlock_EvilSacrifice", name: "Evil Sacrifice Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744461, className: "GEM_RuneCaster_Ehwaz", name: "Rune of Gravity Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744462, className: "GEM_RuneCaster_Berkana", name: "Rune of Beginning Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744463, className: "GEM_Sage_Portal", name: "Portal Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744464, className: "GEM_Sage_Blink", name: "Blink Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744465, className: "GEM_Sage_MissileHole", name: "Missile Hole Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744466, className: "GEM_Sage_PortalShop", name: "Portal Shop Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744467, className: "GEM_Shadowmancer_ShadowPool", name: "Shadow Pool Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744468, className: "GEM_Shadowmancer_Hallucination", name: "Hallucination Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744469, className: "GEM_Shadowmancer_ShadowFatter", name: "Shadow Fatter Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744470, className: "GEM_Shadowmancer_InfernalShadow", name: "Infernal Shadow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744471, className: "GEM_Onmyoji_GenbuArmor", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744472, className: "GEM_Onmyoji_CrystalballShikigami", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744473, className: "GEM_Daoshi_LightningCharm", name: "Strengthen Charm Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744474, className: "GEM_Daoshi_FlameRadiation", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744475, className: "GEM_Daoshi_FireCharm", name: "Fire Charm Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744476, className: "GEM_TerraMancer_SandWall", name: "Sand Wall Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744538, className: "GEM_Archer_Jump", name: "Leap Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744539, className: "GEM_Hunter_Praise", name: "Praise Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744540, className: "GEM_Falconer_Aiming", name: "Aiming Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744541, className: "GEM_Falconer_FirstStrike", name: "Pre-Emptive Strike Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744542, className: "GEM_Cannoneer_SmokeGrenade", name: "Smoke Grenade Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744543, className: "GEM_Cannoneer_Bazooka", name: "Bazooka Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744544, className: "GEM_Musketeer_SnipersSerenity", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744545, className: "GEM_Musketeer_PrimeAndLoad", name: "Prime and Load Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744546, className: "GEM_Appraiser_Apprise", name: "Identify Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744547, className: "GEM_Appraiser_Overestimate", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744548, className: "GEM_Appraiser_Forgery", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744549, className: "GEM_Appraiser_Devaluation", name: "Devaluation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744550, className: "GEM_Appraiser_Blindside", name: "Expose Weakness Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744551, className: "GEM_PiedPiper_Dissonanz", name: "Dissonanz Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744552, className: "GEM_PiedPiper_Wiegenlied", name: "Wiegenlied Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744553, className: "GEM_PiedPiper_HypnotischeFlote", name: "Hypnotische Floete Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744554, className: "GEM_PiedPiper_Friedenslied", name: "Friedenslied Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744555, className: "GEM_PiedPiper_Marschierendeslied", name: "Marschierendeslied Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744556, className: "GEM_PiedPiper_LiedDerWeltbaum", name: "Lied des Weltbaum Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744557, className: "GEM_PiedPiper_Improvisation", name: "Stegreifspiel Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744558, className: "GEM_Matross_MenaceShot", name: "Menace Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744559, className: "GEM_Matross_Roar", name: "Roar Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744560, className: "GEM_TigerHunter_Tracking", name: "Tracking Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744561, className: "GEM_TigerHunter_EyeofBeast", name: "Tiger Hunting Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744562, className: "GEM_TigerHunter_HideShot", name: "Camo Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744563, className: "GEM_Arquebusier_Prediction", name: "Prediction Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744564, className: "GEM_Arquebusier_PinpointFire", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744565, className: "GEM_Arquebusier_LuckyStrike", name: "Linear Shooting Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744566, className: "GEM_Arquebusier_ArquebusBarrage", name: "Arquebus Barrage Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744567, className: "GEM_Arquebusier_Salute", name: "Dusty Salute Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744568, className: "GEM_Arquebusier_DesperateDefense", name: "Desperate Defense Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744569, className: "GEM_Arquebusier_PrecisionFire", name: "Precision Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744602, className: "GEM_Priest_Resurrection", name: "Resurrection Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744603, className: "GEM_Sadhu_Prakriti", name: "Prakriti Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744604, className: "GEM_Sadhu_TransmitPrana", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744605, className: "GEM_Sadhu_AstralBodySmite", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744606, className: "GEM_Pardoner_SpellShop", name: "Spell Shop Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744607, className: "GEM_Druid_Lycanthropy", name: "Lycanthropy Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744608, className: "GEM_Druid_HengeStone", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744609, className: "GEM_Oracle_Clairvoyance", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744610, className: "GEM_Oracle_Ressetting", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744611, className: "GEM_Oracle_DeathVerdict", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744612, className: "GEM_Oracle_SwitchGender", name: "Gender Switch Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744613, className: "GEM_Oracle_Foretell", name: "Foretell Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744614, className: "GEM_Oracle_TwistOfFate", name: "Twist of Fate Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744615, className: "GEM_PlagueDoctor_Methadone", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744616, className: "GEM_Kabbalist_Nachash", name: "Nachash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744617, className: "GEM_Kabbalist_Notarikon", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744618, className: "GEM_Kabbalist_Clone", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744619, className: "GEM_Kabbalist_Gevura", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744620, className: "GEM_Kabbalist_TheTreeOfSepiroth", name: "Tree of Sepiroth Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744621, className: "GEM_Chaplain_LastRites", name: "Last Rites Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744622, className: "GEM_Chaplain_BuildCappella", name: "Deploy Cappella Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744623, className: "GEM_Chaplain_Aspergillum", name: "Aspergillum Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744624, className: "GEM_Inquisitor_IronMaiden", name: "Iron Maiden Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744625, className: "GEM_Inquisitor_Judgment", name: "Judgment Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744626, className: "GEM_Miko_HoukiBroom", name: "Sweeping Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744627, className: "GEM_Miko_Kasiwade", name: "Clap Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744628, className: "GEM_Miko_KaguraDance", name: "Kagura Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744629, className: "GEM_Zealot_Invulnerable", name: "Invulnerable Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744630, className: "GEM_Zealot_BeadyEyed", name: "Beady Eyed Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744631, className: "GEM_Zealot_Fanaticism", name: "Fanaticism Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744632, className: "GEM_Zealot_BlindFaith", name: "Blind Faith Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744633, className: "GEM_Zealot_EmphasisTrust", name: "Emphatic Trust Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744634, className: "GEM_Exorcist_Engkrateia", name: "Engkrateia Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744635, className: "GEM_Exorcist_Koinonia", name: "Grand Cross Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744636, className: "GEM_Crusader_Chants", name: "Chant Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744722, className: "GEM_Assassin_Hasisas", name: "Hasisas Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744723, className: "GEM_Assassin_HallucinationSmoke", name: "Hallucination Smoke Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744725, className: "GEM_Squire_Repair", name: "Repair Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744726, className: "GEM_Squire_Camp", name: "Base Camp Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744727, className: "GEM_Squire_FoodTable", name: "Refreshment Table Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744728, className: "GEM_Squire_EquipmentTouchUp", name: "Equipment Maintenance Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744729, className: "GEM_Corsair_Brutality", name: "Brutality Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744730, className: "GEM_Shinobi_Bunshin_no_jutsu", name: "Bunshin no Jutsu Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744731, className: "GEM_Shinobi_Mokuton_no_jutsu", name: "Mokuton no Jutsu Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744732, className: "GEM_Thaumaturge_Reversi", name: "Reversi Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744733, className: "GEM_Linker_Unbind", name: "Unbind Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744734, className: "GEM_Enchanter_Agility", name: "Agility Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744735, className: "GEM_Enchanter_EnchantArmor", name: "Enchant Armor Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744736, className: "GEM_Enchanter_EnchantLightning", name: "Enchant Weapon Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744737, className: "GEM_Enchanter_EnchantEarth", name: "Enchant Earth Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744738, className: "GEM_Enchanter_LightningHands", name: "Deleted Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", numArg1: 1, numArg2: 9 } }, +{ itemId: 744739, className: "GEM_Enchanter_OverReinforce", name: "Over-Reinforce Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744740, className: "GEM_Schwarzereiter_EvasiveAction", name: "Evasive Action Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744741, className: "GEM_Bulletmarker_DoubleGunStance", name: "Double Gun Stance Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744742, className: "GEM_Bulletmarker_TracerBullet", name: "Tracer Bullet Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744743, className: "GEM_Bulletmarker_FreezeBullet", name: "Freeze Bullet Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744744, className: "GEM_Bulletmarker_Outrage", name: "Outrage Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744745, className: "GEM_Arditi_Recupero", name: "Recupero Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744746, className: "GEM_Sheriff_Westraid", name: "Westraid Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744747, className: "GEM_Sheriff_Redemption", name: "Redemption Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744748, className: "GEM_Rangda_Barong", name: "Barong Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744749, className: "GEM_Rangda_Penyerapan", name: "Penyerapan Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744750, className: "GEM_Rangda_Keletihan", name: "Keletihan Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744751, className: "GEM_Clown_SpinningKnife", name: "Spinning Knife Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744752, className: "GEM_Clown_Replica", name: "Replica Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744753, className: "GEM_Clown_FatalRoulette", name: "Fatal Roulette Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744754, className: "GEM_Clown_Climax", name: "Climax Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744755, className: "GEM_Clown_TrickorTreat", name: "Trick or Treat Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744756, className: "GEM_Clown_ClownWalk", name: "Clown Walk Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744757, className: "GEM_Luchador_Enmascarado", name: "Enmascarado Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744758, className: "GEM_Luchador_Chop", name: "Chop Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744759, className: "GEM_Luchador_LuchaDeSilla", name: "Lucha De Silla Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744760, className: "GEM_Luchador_Golpear", name: "Golpear Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744761, className: "GEM_Luchador_Chocar", name: "Chocar Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744762, className: "GEM_Luchador_Ceremonia", name: "Ceremonia Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744763, className: "GEM_Luchador_Martinete", name: "Martinete Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744764, className: "GEM_Sadhu_Anila", name: "Enira Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744765, className: "GEM_Sadhu_Tanoti", name: "Tanoti Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744766, className: "GEM_Sadhu_Patati", name: "Patati Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744767, className: "GEM_Sadhu_Moksha", name: "Moksha Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744768, className: "GEM_Sadhu_Soulmaster", name: "Spirit Expert Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744820, className: "GEM_Alchemist_ItemAwakening", name: "Item Awakening Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744821, className: "GEM_Hwarang_PyeonJeon", name: "Pyeonjeon Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744822, className: "GEM_Hwarang_BlackHornBow", name: "Black Horn Bow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744823, className: "GEM_Hwarang_WhiteHornBow", name: "White Horn Bow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744824, className: "GEM_Hwarang_DoNotRetreat", name: "Outbrave Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744825, className: "GEM_Hwarang_Brotherhood", name: "Brotherhood Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744826, className: "GEM_Hwarang_ArrowDancing", name: "Dancing Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744827, className: "GEM_Ranger_Scan", name: "Scan Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744828, className: "GEM_Ranger_Strafe", name: "Strafe Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744829, className: "GEM_Ranger_BlazingArrow", name: "Blazing Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744830, className: "GEM_Fletcher_FletcherArrowShot", name: "Fletcher Arrow Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744831, className: "GEM_Fletcher_CatenaChainArrow", name: "Catena Chain Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744832, className: "GEM_Matross_ArtilleryCall", name: "Artillery Call Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744833, className: "Gem_Highlander_Defiance", name: "Defiance Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744834, className: "GEM_Enchanter_EnchantAura", name: "Enchant Aura Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744835, className: "Gem_Thaumaturge_Transmute", name: "Transmute Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744836, className: "Gem_Hakkapeliter_HackaPoa", name: "Hakka Poa Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744837, className: "Gem_Hakkapeliter_Blossa", name: "Blosa Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744838, className: "Gem_Hakkapeliter_AnkleShot", name: "Ankle Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744839, className: "Gem_Hakkapeliter_Spaning", name: "Spaning Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744840, className: "Gem_Hakkapeliter_TrooperCharge", name: "Trooper Charge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744841, className: "Gem_Hakkapeliter_InfiniteAssault", name: "Infinite Assault Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744842, className: "GEM_Featherfoot_Kundela", name: "Kundela Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744843, className: "GEM_Featherfoot_Bloodexplosion", name: "Blood Explosion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744844, className: "GEM_Featherfoot_Bloodpool", name: "Blood Pool Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744845, className: "GEM_Featherfoot_Plague", name: "Plague Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744846, className: "GEM_Keraunos_OverLoad", name: "Overload Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744847, className: "GEM_Keraunos_MagneticField", name: "Electric Orb Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744848, className: "GEM_Keraunos_LightningSpear", name: "Lightning Spear Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744849, className: "GEM_Keraunos_ElectRode", name: "Electrode Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744850, className: "GEM_Keraunos_Static", name: "Static Field Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744851, className: "GEM_Keraunos_ElectricDrive", name: "Electric Drive Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744852, className: "GEM_Lama_Lamapose", name: "Vipashyana Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744853, className: "GEM_Lama_StrongfistHanginglegs", name: "Strong Fist/ Leg Trip Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744854, className: "GEM_Lama_PointkickEarthshock", name: "Point Kick / Break Mountain Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744855, className: "GEM_Lama_FlyingkickSuddenkick", name: "Sudden Kick / Flying Kick Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744856, className: "GEM_Lama_Endlessattacks", name: "Surging Wave Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744857, className: "GEM_Kabbalist_Anagrama", name: "Anagrama Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744858, className: "GEM_Templer_MortalWave", name: "Mortal Wave Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744859, className: "GEM_Templer_Retribution", name: "Retribution Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744860, className: "GEM_Templer_MoraleBanner", name: "Flag of Morale Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744861, className: "GEM_Templer_RevengeBanner", name: "Flag of Revenge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744862, className: "GEM_Templer_VitalityBanner", name: "Flag of Vitality Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744863, className: "GEM_Jaguar_JaguarStance", name: "Jaguar Stance Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744864, className: "GEM_Jaguar_WildRush", name: "Wild Rush Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744865, className: "GEM_Jaguar_TargetOfHunt", name: "Hunter’s Target Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744866, className: "GEM_Jaguar_WildHowling", name: "Wild Howling Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744867, className: "GEM_Jaguar_WildThorn", name: "Wild Thorn Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744868, className: "GEM_Jaguar_WildClaw", name: "Wild Claw Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744869, className: "GEM_Jaguar_AdaptabilityOfWildness", name: "Wild Adaptability: Extreme", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744870, className: "GEM_Hunter_PetAttack", name: "Attack! Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744871, className: "GEM_Hunter_Bolas", name: "Bolas Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744872, className: "GEM_Hunter_BleedingPierce", name: "Bleeding Pierce Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744873, className: "GEM_Hunter_Brawl", name: "Udang-tang-tang! Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744874, className: "GEM_SpearMaster_WildTigerSpear", name: "Spear of the Brave Tiger Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744875, className: "GEM_SpearMaster_RushSpear", name: "Advancing Spear Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744876, className: "GEM_SpearMaster_SwiftMove", name: "Light as a Feather Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744877, className: "GEM_SpearMaster_FlyingSerpentFall", name: "Fall of the Ascending Dragon Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744878, className: "GEM_SpearMaster_UniqueSpearDance", name: "Painting with a Spear Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744879, className: "GEM_SpearMaster_Hierophany", name: "Incarnation Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744880, className: "GEM_Engineer_FlameTurret", name: "Flame Turret Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744882, className: "GEM_Engineer_ArrowTurret", name: "Arrow Turret Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744883, className: "GEM_Engineer_LightningTurret", name: "Lightning Turret Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744884, className: "GEM_Engineer_BuffTurret", name: "Buff Turret Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744885, className: "GEM_Engineer_KingMechaV", name: "King Mecha V Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744886, className: "GEM_Engineer_RepairKit", name: "Fix Kit Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744887, className: "GEM_Illusionist_IllusionSword", name: "Illusion Blade Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744888, className: "GEM_Illusionist_IllusionBlast", name: "Illusion Blast Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744889, className: "GEM_Illusionist_MagicalIllusion", name: "Magical Illusion Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744890, className: "GEM_Illusionist_Flood", name: "Deluge Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744891, className: "GEM_Illusionist_Nightmare", name: "Nightmare Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744892, className: "GEM_Illusionist_IllusionArmor", name: "Illusion Armor Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744899, className: "GEM_Pontifex_Missa", name: "Mass Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744900, className: "GEM_Pontifex_EvilBurn", name: "Evil Burn Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744901, className: "GEM_Pontifex_Atonement", name: "Atonement Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744902, className: "GEM_Pontifex_Evangelism", name: "Evangelism Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744903, className: "GEM_Pontifex_Gospel", name: "Gospel Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744904, className: "GEM_Pontifex_Didache", name: "Didache: Absolution Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744905, className: "GEM_WingedHussars_CircleWings", name: "Circle Wings Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744906, className: "GEM_WingedHussars_RisingWings", name: "Rising Wings Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744907, className: "GEM_WingedHussars_GiantWings", name: "Giant Wings Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744908, className: "GEM_WingedHussars_WindPulse", name: "Wind Pulse Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744909, className: "GEM_WingedHussars_ImpulseSpears", name: "Impulse Spears Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744910, className: "GEM_WingedHussars_BattleSpirit", name: "Battle Spirit Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744911, className: "GEM_WingedHussars_ExplosionSpears", name: "Explosion Spears Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744912, className: "GEM_Desperado_BadGuy", name: "Bad Guy Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744913, className: "GEM_Desperado_Equilibrium", name: "Equilibrium Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744914, className: "GEM_Desperado_Revenged", name: "Revenged Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744915, className: "GEM_Desperado_DeadlyFire", name: "Deadly Fire Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744916, className: "GEM_Desperado_RussianRoulette", name: "Russian Roulette Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744917, className: "GEM_Desperado_LastManStanding", name: "Last Man Standing Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744918, className: "GEM_BowMaster_FocusFire", name: "Concentrated Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744919, className: "GEM_BowMaster_DodgeFire", name: "Dodging Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744920, className: "GEM_BowMaster_SkyBow", name: "Angelic Bow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744921, className: "GEM_BowMaster_ScatterShot", name: "Scatter Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744922, className: "GEM_BowMaster_Hyunmoo", name: "Blasting Shot Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744923, className: "GEM_BowMaster_GodArrow", name: "Angelic Arrow Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744924, className: "GEM_Vanquisher_VerticalSlash", name: "Vertical Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744925, className: "GEM_Vanquisher_TurnOver", name: "Spiral Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744926, className: "GEM_Vanquisher_VoidSlash", name: "Hollow Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744927, className: "GEM_Vanquisher_EarthCrusher", name: "Terra Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744928, className: "GEM_Vanquisher_WindSlasher", name: "Void Slash Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744929, className: "GEM_Vanquisher_FatalSwordDance", name: "Dance Macabre Gem", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744930, className: "GEM_Vulture_CombatProtocol_Archer", name: "Battle Protocol Gem[A]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744931, className: "GEM_Vulture_Decomposition_Archer", name: "Input: Decompose Gem [A]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744932, className: "GEM_Vulture_GravityField_Archer", name: "Input: Gravity Gem [A]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744933, className: "GEM_Vulture_Diffusion_Archer", name: "Input: Diffusion Gem [A]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744934, className: "GEM_Vulture_PurificationProtocol_Archer", name: "Purification Protocol Gem[A]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744935, className: "GEM_Vulture_Purification_Archer", name: "Input: Purification Gem [A]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744936, className: "GEM_Vulture_Devastation_Archer", name: "Input: Devastation Gem [A]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744937, className: "GEM_Vulture_CombatProtocol_Wizard", name: "Battle Protocol Gem [W]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744938, className: "GEM_Vulture_Decomposition_Wizard", name: "Input: Decompose Gem [W]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744939, className: "GEM_Vulture_GravityField_Wizard", name: "Input: Gravity Gem [W]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744940, className: "GEM_Vulture_Diffusion_Wizard", name: "Input: Diffusion Gem [W]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744941, className: "GEM_Vulture_PurificationProtocol_Wizard", name: "Purification Protocol Gem [W]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744942, className: "GEM_Vulture_Purification_Wizard", name: "Input: Purification Gem [W]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744943, className: "GEM_Vulture_Devastation_Wizard", name: "Input: Devastation Gem [W]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744944, className: "GEM_Vulture_CombatProtocol_Scout", name: "Battle Protocol Gem [T]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744945, className: "GEM_Vulture_Decomposition_Scout", name: "Input: Decomposition Gem [T]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744946, className: "GEM_Vulture_GravityField_Scout", name: "Input: Gravity Gem [T]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744947, className: "GEM_Vulture_Diffusion_Scout", name: "Input: Diffusion Gem [T]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744948, className: "GEM_Vulture_PurificationProtocol_Scout", name: "Purification Protocol Gem [T]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744949, className: "GEM_Vulture_Purification_Scout", name: "Input: Purification Gem [T]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, +{ itemId: 744950, className: "GEM_Vulture_Devastation_Scout", name: "Input: Devastation Gem [T]", type: "Consume", group: "Gem", weight: 1, maxStack: 1, price: 1000, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Gem_Skill", script: { function: "SCR_GEM_EQUIP", strArg: "SkillGem", numArg1: 1, numArg2: 9 } }, // Gem_High_Color //--------------------------------------------------------------------------- @@ -12253,32 +12253,32 @@ // MagicAmulet //--------------------------------------------------------------------------- -{ itemId: 648001, className: "magicAmulet_1", name: "String Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648002, className: "magicAmulet_2", name: "Cube Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648003, className: "magicAmulet_3", name: "Pumpkin Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648004, className: "magicAmulet_4", name: "Skull Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648005, className: "magicAmulet_5", name: "Divine Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648006, className: "magicAmulet_6", name: "Rose Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648007, className: "magicAmulet_7", name: "Tini Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648008, className: "magicAmulet_8", name: "Crescent Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648009, className: "magicAmulet_9", name: "Sun Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648010, className: "magicAmulet_10", name: "Fortune Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648011, className: "magicAmulet_11", name: "Bead Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648012, className: "magicAmulet_12", name: "Cross Medal Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648013, className: "magicAmulet_13", name: "Pumpkin Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648014, className: "magicAmulet_14", name: "Gem Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648015, className: "magicAmulet_15", name: "Demono Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648016, className: "magicAmulet_16", name: "Augalo Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648017, className: "magicAmulet_17", name: "Perejimo Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648018, className: "magicAmulet_18", name: "Zveries Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648019, className: "magicAmulet_19", name: "Vabalo Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648020, className: "magicAmulet_20", name: "Magijos Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648021, className: "magicAmulet_21", name: "For Testing", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648022, className: "magicAmulet_22", name: "Vinies Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648023, className: "magicAmulet_23", name: "Palemidas Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648024, className: "magicAmulet_24", name: "Pertraukos Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648025, className: "magicAmulet_25", name: "For Testing", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, -{ itemId: 648026, className: "magicAmulet_26", name: "For Testing", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648001, className: "magicAmulet_1", name: "String Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648002, className: "magicAmulet_2", name: "Cube Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648003, className: "magicAmulet_3", name: "Pumpkin Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648004, className: "magicAmulet_4", name: "Skull Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648005, className: "magicAmulet_5", name: "Divine Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648006, className: "magicAmulet_6", name: "Rose Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648007, className: "magicAmulet_7", name: "Tini Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648008, className: "magicAmulet_8", name: "Crescent Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648009, className: "magicAmulet_9", name: "Sun Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648010, className: "magicAmulet_10", name: "Fortune Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648011, className: "magicAmulet_11", name: "Bead Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648012, className: "magicAmulet_12", name: "Cross Medal Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648013, className: "magicAmulet_13", name: "Pumpkin Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648014, className: "magicAmulet_14", name: "Gem Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648015, className: "magicAmulet_15", name: "Demono Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648016, className: "magicAmulet_16", name: "Augalo Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648017, className: "magicAmulet_17", name: "Perejimo Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648018, className: "magicAmulet_18", name: "Zveries Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648019, className: "magicAmulet_19", name: "Vabalo Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648020, className: "magicAmulet_20", name: "Magijos Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648021, className: "magicAmulet_21", name: "For Testing", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648022, className: "magicAmulet_22", name: "Vinies Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648023, className: "magicAmulet_23", name: "Palemidas Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648024, className: "magicAmulet_24", name: "Pertraukos Amulet", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648025, className: "magicAmulet_25", name: "For Testing", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, +{ itemId: 648026, className: "magicAmulet_26", name: "For Testing", type: "Consume", group: "MagicAmulet", weight: 10, maxStack: 32767, price: 10, sellPrice: 10000, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_MAGICAMULET_EQUIP" } }, // Material //--------------------------------------------------------------------------- @@ -12332,15 +12332,15 @@ { itemId: 640069, className: "Drug_powder", name: "Holy Powder", type: "Etc", group: "Material", weight: 0, maxStack: 999999, price: 20, sellPrice: 2, minLevel: 1, cooldownGroup: "OnionPiece_Red", cooldown: 0, script: { strArg: "ham_obj" } }, { itemId: 640154, className: "Guild_Forge01", name: "Forge", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 1000, sellPrice: 0, minLevel: 1, script: { function: "SCR_USE_AGIT_ACADEMY", strArg: "Forge" } }, { itemId: 640155, className: "Guild_ShieldCharger01", name: "Shield Charger", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 1000, sellPrice: 0, minLevel: 1, script: { function: "SCR_USE_AGIT_ACADEMY", strArg: "ShieldCharger" } }, -{ itemId: 640263, className: "misc_gemExpStone_randomQuest1_TA", name: "Shining Lv2 Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 640264, className: "misc_gemExpStone_randomQuest2_TA", name: "Shining Lv3 Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 640265, className: "misc_gemExpStone_randomQuest3_TA", name: "Shining Lv4 Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 640266, className: "misc_gemExpStone_randomQuest4_TA", name: "Shining Lv5 Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 640276, className: "misc_gemExpStone_5000_TA", name: "Gem Abrasive: 5,000", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 641814, className: "card_Xpupkit02_event", name: "Shining Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 1000, minLevel: 1 }, +{ itemId: 640263, className: "misc_gemExpStone_randomQuest1_TA", name: "Shining Lv2 Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_randomQuest1" }, +{ itemId: 640264, className: "misc_gemExpStone_randomQuest2_TA", name: "Shining Lv3 Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_randomQuest2" }, +{ itemId: 640265, className: "misc_gemExpStone_randomQuest3_TA", name: "Shining Lv4 Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_randomQuest3" }, +{ itemId: 640266, className: "misc_gemExpStone_randomQuest4_TA", name: "Shining Lv5 Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_randomQuest4" }, +{ itemId: 640276, className: "misc_gemExpStone_5000_TA", name: "Gem Abrasive: 5,000", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_5000" }, +{ itemId: 641814, className: "card_Xpupkit02_event", name: "Shining Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 1000, minLevel: 1, equipExpGroup: "Old_Card_TP" }, { itemId: 641819, className: "Gem_Gacha_gold_coin", name: "Ancient Golden Coin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 641821, className: "card_Xpupkit10", name: "Lv 10 Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 1000, minLevel: 1 }, -{ itemId: 641822, className: "card_Xpupkit10_Team", name: "Lv 10 Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 641821, className: "card_Xpupkit10", name: "Lv 10 Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 1000, minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, +{ itemId: 641822, className: "card_Xpupkit10_Team", name: "Lv 10 Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, { itemId: 641823, className: "Gem_Gacha_gold_coin_Team", name: "Ancient Golden Coin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 641976, className: "Event1907_guild_exp_up_lv1", name: "[Event] Guild Quest Reward Coin: Bronze", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, script: { strArg: "Guild_EXP", numArg1: 100 } }, { itemId: 641977, className: "Event1907_guild_exp_up_lv2", name: "[Event] Guild Quest Reward Coin: Silver", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, script: { strArg: "Guild_EXP", numArg1: 200 } }, @@ -12374,115 +12374,115 @@ { itemId: 643063, className: "Moru_Diamond_30d_Team_Lv440", name: "[Lv.440] Diamond Anvil (30 Days)", type: "Consume", group: "Material", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { strArg: "DIAMOND", numArg1: 3, numArg2: 3 } }, { itemId: 643064, className: "Moru_Diamond_30d_Team_Lv450", name: "[Lv.450] Diamond Anvil (30 Days)", type: "Consume", group: "Material", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { strArg: "DIAMOND", numArg1: 3, numArg2: 3 } }, { itemId: 643065, className: "Moru_Gold_TA_NR_Team_Trade", name: "Shining Advanced Golden Anvil", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, script: { strArg: "gold_Moru", numArg1: 3, numArg2: 3 } }, -{ itemId: 645024, className: "leaf_hanaming", name: "Hanaming Petal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 8, sellPrice: 1, minLevel: 1 }, -{ itemId: 645025, className: "TreasureboxKey2", name: "Lv2 Treasure Chest Key", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645026, className: "TreasureboxKey3", name: "Lv3 Treasure Chest Key", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645027, className: "TreasureboxKey4", name: "Lv4 Treasure Chest Key", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645028, className: "TreasureboxKey5", name: "Lv5 Treasure Chest Key", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645117, className: "misc_0001", name: "Kepa Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 5, sellPrice: 1, minLevel: 1 }, -{ itemId: 645118, className: "misc_0002", name: "Leaf Bug Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 6, sellPrice: 1, minLevel: 1 }, -{ itemId: 645120, className: "misc_0004", name: "Chinency Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645121, className: "misc_0005", name: "Infrorocktor Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 15, sellPrice: 3, minLevel: 1 }, -{ itemId: 645122, className: "misc_0006", name: "Chupacabra Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 12, sellPrice: 2, minLevel: 1 }, -{ itemId: 645124, className: "misc_0008", name: "Weaver Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 11, sellPrice: 2, minLevel: 1 }, -{ itemId: 645125, className: "misc_0009", name: "Pokubu Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 24, sellPrice: 4, minLevel: 1 }, -{ itemId: 645126, className: "misc_0010", name: "Jukopus Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 12, sellPrice: 2, minLevel: 1 }, -{ itemId: 645127, className: "misc_0011", name: "Red Kepa Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645128, className: "misc_0012", name: "Large Monster Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645129, className: "misc_0013", name: "Vubbe Token", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 22, sellPrice: 4, minLevel: 1 }, -{ itemId: 645130, className: "misc_0014", name: "Stone Orca Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 39, sellPrice: 7, minLevel: 1 }, -{ itemId: 645131, className: "misc_0015", name: "Crystal Spider Feelers", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 16, sellPrice: 3, minLevel: 1 }, -{ itemId: 645132, className: "misc_0016", name: "Yekubite Antennae", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 19, sellPrice: 3, minLevel: 1 }, -{ itemId: 645134, className: "misc_0018", name: "Panto Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1 }, -{ itemId: 645135, className: "misc_0019", name: "Zignuts Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 18, sellPrice: 3, minLevel: 1 }, -{ itemId: 645136, className: "misc_0020", name: "Butterfly Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645137, className: "misc_0021", name: "Seed's Seed", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645138, className: "misc_0022", name: "Firent Flower", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 78, sellPrice: 15, minLevel: 1 }, -{ itemId: 645141, className: "misc_0025", name: "Egnome Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 26, sellPrice: 5, minLevel: 1 }, -{ itemId: 645142, className: "misc_0026", name: "Yognome Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 44, sellPrice: 8, minLevel: 1 }, -{ itemId: 645143, className: "misc_0027", name: "Violet Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645144, className: "misc_0028", name: "Rafflet Flower", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645150, className: "misc_0034", name: "Tanu Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645151, className: "misc_0035", name: "Beetow Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1 }, -{ itemId: 645152, className: "misc_0036", name: "Maize Spore Pocket", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645153, className: "misc_0037", name: "Ultanun Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 50, sellPrice: 10, minLevel: 1 }, -{ itemId: 645154, className: "misc_0038", name: "Karkash Mushroom", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645155, className: "misc_0039", name: "Elravine Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645156, className: "misc_0040", name: "Upent Bark", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 98, sellPrice: 19, minLevel: 1 }, -{ itemId: 645157, className: "misc_0041", name: "Mantiwood Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645159, className: "misc_0043", name: "Thornball Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645160, className: "misc_0044", name: "Operor Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 26, sellPrice: 5, minLevel: 1 }, -{ itemId: 645161, className: "misc_0045", name: "Bagworm Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 30, sellPrice: 6, minLevel: 1 }, -{ itemId: 645162, className: "misc_0046", name: "Truffle Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 20, sellPrice: 4, minLevel: 1 }, -{ itemId: 645163, className: "misc_0047", name: "Matsum Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1 }, -{ itemId: 645164, className: "misc_0048", name: "Merog Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 84, sellPrice: 16, minLevel: 1 }, -{ itemId: 645165, className: "misc_0049", name: "Chafperor Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 23, sellPrice: 4, minLevel: 1 }, -{ itemId: 645166, className: "misc_0050", name: "Catacomb Leafbug Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645167, className: "misc_0051", name: "Candle", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 13, sellPrice: 2, minLevel: 1 }, -{ itemId: 645168, className: "misc_0052", name: "Catacomb Maggot Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 13, sellPrice: 2, minLevel: 1 }, -{ itemId: 645169, className: "misc_0053", name: "Tontooth Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 18, sellPrice: 3, minLevel: 1 }, -{ itemId: 645170, className: "misc_0054", name: "Pino Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645171, className: "misc_0055", name: "Geppetto Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 25, sellPrice: 5, minLevel: 1 }, -{ itemId: 645172, className: "misc_0056", name: "Zinute Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1 }, -{ itemId: 645173, className: "misc_0057", name: "Desert Chupacabra Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 29, sellPrice: 5, minLevel: 1 }, -{ itemId: 645174, className: "misc_0058", name: "Wendigo Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 67, sellPrice: 13, minLevel: 1 }, -{ itemId: 645175, className: "misc_0059", name: "Sauga Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 60, sellPrice: 12, minLevel: 1 }, -{ itemId: 645176, className: "misc_0060", name: "Lauzinute Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 37, sellPrice: 7, minLevel: 1 }, -{ itemId: 645177, className: "misc_0061", name: "Hogma Tusk", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 130, sellPrice: 26, minLevel: 1 }, -{ itemId: 645178, className: "misc_0062", name: "Varv Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 32, sellPrice: 6, minLevel: 1 }, -{ itemId: 645179, className: "misc_0063", name: "Zinutekas Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 66, sellPrice: 13, minLevel: 1 }, -{ itemId: 645180, className: "misc_0064", name: "Vesper Counterweight", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 32, sellPrice: 6, minLevel: 1 }, -{ itemId: 645181, className: "misc_0065", name: "Vikaras Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 92, sellPrice: 18, minLevel: 1 }, -{ itemId: 645182, className: "misc_0066", name: "Shtayim Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645183, className: "misc_0067", name: "Wheelen Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645185, className: "misc_0069", name: "Rusrat Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645186, className: "misc_0070", name: "Mauros Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 126, sellPrice: 25, minLevel: 1 }, -{ itemId: 645187, className: "misc_0071", name: "Wax", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645188, className: "misc_0072", name: "Stumpy Tree Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645189, className: "misc_0073", name: "Long-Branched Tree Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645190, className: "misc_0074", name: "Infroburk Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645191, className: "misc_0075", name: "Zolem Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 150, sellPrice: 30, minLevel: 1 }, -{ itemId: 645192, className: "misc_0076", name: "Gravegolem Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 175, sellPrice: 35, minLevel: 1 }, -{ itemId: 645193, className: "misc_0077", name: "Hallowventer Spirit Matter", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 1260, sellPrice: 252, minLevel: 1 }, -{ itemId: 645194, className: "misc_0078", name: "Cockat Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 2640, sellPrice: 528, minLevel: 1 }, -{ itemId: 645195, className: "misc_0079", name: "Drake Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 45, sellPrice: 9, minLevel: 1 }, -{ itemId: 645196, className: "misc_0080", name: "Phyracon Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 80, sellPrice: 16, minLevel: 1 }, -{ itemId: 645197, className: "misc_0081", name: "Shaman Doll Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 68, sellPrice: 13, minLevel: 1 }, -{ itemId: 645198, className: "misc_0082", name: "Slime Piece", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645199, className: "misc_0083", name: "Arma Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 56, sellPrice: 11, minLevel: 1 }, -{ itemId: 645200, className: "misc_0084", name: "Red Infrorocktor Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 212, sellPrice: 42, minLevel: 1 }, -{ itemId: 645201, className: "misc_0085", name: "Flask Piece", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645202, className: "misc_0086", name: "Desmodus Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 57, sellPrice: 11, minLevel: 1 }, -{ itemId: 645204, className: "misc_0088", name: "Black Shaman Doll Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 74, sellPrice: 14, minLevel: 1 }, -{ itemId: 645205, className: "misc_0089", name: "Dimmer Marble", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645206, className: "misc_0090", name: "Black Drake Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645208, className: "misc_0092", name: "Rocktor Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645209, className: "misc_0093", name: "Venucelos Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 124, sellPrice: 24, minLevel: 1 }, -{ itemId: 645210, className: "misc_0094", name: "Echad Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 105, sellPrice: 21, minLevel: 1 }, -{ itemId: 645211, className: "misc_0095", name: "Tama Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645212, className: "misc_0096", name: "Lizardman Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645213, className: "misc_0097", name: "Hook", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 93, sellPrice: 18, minLevel: 1 }, -{ itemId: 645214, className: "misc_0098", name: "Winged Frog Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645215, className: "misc_0099", name: "Cockatrice Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645216, className: "misc_0100", name: "Drake Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 104, sellPrice: 20, minLevel: 1 }, -{ itemId: 645218, className: "misc_0102", name: "Groll Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 50, sellPrice: 10, minLevel: 1 }, -{ itemId: 645219, className: "misc_0103", name: "Blue Fragaras Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 26, sellPrice: 5, minLevel: 1 }, -{ itemId: 645220, className: "misc_0104", name: "Vekarabe Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 135, sellPrice: 27, minLevel: 1 }, -{ itemId: 645221, className: "misc_0105", name: "Boowook Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 77, sellPrice: 15, minLevel: 1 }, -{ itemId: 645222, className: "misc_0106", name: "Vubbe Bow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 65, sellPrice: 13, minLevel: 1 }, -{ itemId: 645223, className: "misc_0107", name: "Vubbe Pickaxe", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645224, className: "misc_0108", name: "Vubbe Hood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645225, className: "misc_0109", name: "Dandel Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 22, sellPrice: 4, minLevel: 1 }, -{ itemId: 645226, className: "misc_0110", name: "Panto Eyebrow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645227, className: "misc_0111", name: "Panto Spear Shaft", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645228, className: "misc_0112", name: "Tipio Stamen", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 12, sellPrice: 2, minLevel: 1 }, -{ itemId: 645229, className: "misc_0113", name: "Doyor Leaf Bunch", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 20, sellPrice: 4, minLevel: 1 }, -{ itemId: 645230, className: "misc_0114", name: "Hogma Archer Belt", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645231, className: "misc_0115", name: "Panto Spearhead", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 210, sellPrice: 42, minLevel: 1 }, +{ itemId: 645024, className: "leaf_hanaming", name: "Hanaming Petal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 8, sellPrice: 1, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645025, className: "TreasureboxKey2", name: "Lv2 Treasure Chest Key", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645026, className: "TreasureboxKey3", name: "Lv3 Treasure Chest Key", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645027, className: "TreasureboxKey4", name: "Lv4 Treasure Chest Key", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645028, className: "TreasureboxKey5", name: "Lv5 Treasure Chest Key", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645117, className: "misc_0001", name: "Kepa Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 5, sellPrice: 1, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645118, className: "misc_0002", name: "Leaf Bug Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 6, sellPrice: 1, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645120, className: "misc_0004", name: "Chinency Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645121, className: "misc_0005", name: "Infrorocktor Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 15, sellPrice: 3, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645122, className: "misc_0006", name: "Chupacabra Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 12, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645124, className: "misc_0008", name: "Weaver Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 11, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645125, className: "misc_0009", name: "Pokubu Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 24, sellPrice: 4, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645126, className: "misc_0010", name: "Jukopus Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 12, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645127, className: "misc_0011", name: "Red Kepa Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645128, className: "misc_0012", name: "Large Monster Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645129, className: "misc_0013", name: "Vubbe Token", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 22, sellPrice: 4, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645130, className: "misc_0014", name: "Stone Orca Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 39, sellPrice: 7, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645131, className: "misc_0015", name: "Crystal Spider Feelers", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 16, sellPrice: 3, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645132, className: "misc_0016", name: "Yekubite Antennae", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 19, sellPrice: 3, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645134, className: "misc_0018", name: "Panto Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645135, className: "misc_0019", name: "Zignuts Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 18, sellPrice: 3, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645136, className: "misc_0020", name: "Butterfly Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645137, className: "misc_0021", name: "Seed's Seed", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645138, className: "misc_0022", name: "Firent Flower", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 78, sellPrice: 15, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645141, className: "misc_0025", name: "Egnome Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 26, sellPrice: 5, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645142, className: "misc_0026", name: "Yognome Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 44, sellPrice: 8, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645143, className: "misc_0027", name: "Violet Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645144, className: "misc_0028", name: "Rafflet Flower", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645150, className: "misc_0034", name: "Tanu Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645151, className: "misc_0035", name: "Beetow Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645152, className: "misc_0036", name: "Maize Spore Pocket", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645153, className: "misc_0037", name: "Ultanun Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 50, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645154, className: "misc_0038", name: "Karkash Mushroom", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645155, className: "misc_0039", name: "Elravine Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645156, className: "misc_0040", name: "Upent Bark", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 98, sellPrice: 19, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645157, className: "misc_0041", name: "Mantiwood Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645159, className: "misc_0043", name: "Thornball Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645160, className: "misc_0044", name: "Operor Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 26, sellPrice: 5, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645161, className: "misc_0045", name: "Bagworm Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 30, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645162, className: "misc_0046", name: "Truffle Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 20, sellPrice: 4, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645163, className: "misc_0047", name: "Matsum Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645164, className: "misc_0048", name: "Merog Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 84, sellPrice: 16, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645165, className: "misc_0049", name: "Chafperor Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 23, sellPrice: 4, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645166, className: "misc_0050", name: "Catacomb Leafbug Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645167, className: "misc_0051", name: "Candle", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 13, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645168, className: "misc_0052", name: "Catacomb Maggot Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 13, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645169, className: "misc_0053", name: "Tontooth Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 18, sellPrice: 3, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645170, className: "misc_0054", name: "Pino Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645171, className: "misc_0055", name: "Geppetto Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 25, sellPrice: 5, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645172, className: "misc_0056", name: "Zinute Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645173, className: "misc_0057", name: "Desert Chupacabra Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 29, sellPrice: 5, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645174, className: "misc_0058", name: "Wendigo Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 67, sellPrice: 13, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645175, className: "misc_0059", name: "Sauga Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 60, sellPrice: 12, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645176, className: "misc_0060", name: "Lauzinute Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 37, sellPrice: 7, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645177, className: "misc_0061", name: "Hogma Tusk", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 130, sellPrice: 26, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645178, className: "misc_0062", name: "Varv Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 32, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645179, className: "misc_0063", name: "Zinutekas Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 66, sellPrice: 13, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645180, className: "misc_0064", name: "Vesper Counterweight", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 32, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645181, className: "misc_0065", name: "Vikaras Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 92, sellPrice: 18, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645182, className: "misc_0066", name: "Shtayim Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645183, className: "misc_0067", name: "Wheelen Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645185, className: "misc_0069", name: "Rusrat Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645186, className: "misc_0070", name: "Mauros Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 126, sellPrice: 25, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645187, className: "misc_0071", name: "Wax", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645188, className: "misc_0072", name: "Stumpy Tree Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645189, className: "misc_0073", name: "Long-Branched Tree Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645190, className: "misc_0074", name: "Infroburk Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645191, className: "misc_0075", name: "Zolem Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 150, sellPrice: 30, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645192, className: "misc_0076", name: "Gravegolem Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 175, sellPrice: 35, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645193, className: "misc_0077", name: "Hallowventer Spirit Matter", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 1260, sellPrice: 252, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645194, className: "misc_0078", name: "Cockat Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 2640, sellPrice: 528, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645195, className: "misc_0079", name: "Drake Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 45, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645196, className: "misc_0080", name: "Phyracon Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 80, sellPrice: 16, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645197, className: "misc_0081", name: "Shaman Doll Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 68, sellPrice: 13, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645198, className: "misc_0082", name: "Slime Piece", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645199, className: "misc_0083", name: "Arma Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 56, sellPrice: 11, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645200, className: "misc_0084", name: "Red Infrorocktor Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 212, sellPrice: 42, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645201, className: "misc_0085", name: "Flask Piece", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645202, className: "misc_0086", name: "Desmodus Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 57, sellPrice: 11, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645204, className: "misc_0088", name: "Black Shaman Doll Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 74, sellPrice: 14, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645205, className: "misc_0089", name: "Dimmer Marble", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645206, className: "misc_0090", name: "Black Drake Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645208, className: "misc_0092", name: "Rocktor Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645209, className: "misc_0093", name: "Venucelos Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 124, sellPrice: 24, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645210, className: "misc_0094", name: "Echad Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 105, sellPrice: 21, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645211, className: "misc_0095", name: "Tama Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645212, className: "misc_0096", name: "Lizardman Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645213, className: "misc_0097", name: "Hook", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 93, sellPrice: 18, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645214, className: "misc_0098", name: "Winged Frog Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645215, className: "misc_0099", name: "Cockatrice Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645216, className: "misc_0100", name: "Drake Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 104, sellPrice: 20, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645218, className: "misc_0102", name: "Groll Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 50, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645219, className: "misc_0103", name: "Blue Fragaras Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 26, sellPrice: 5, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645220, className: "misc_0104", name: "Vekarabe Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 135, sellPrice: 27, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645221, className: "misc_0105", name: "Boowook Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 77, sellPrice: 15, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645222, className: "misc_0106", name: "Vubbe Bow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 65, sellPrice: 13, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645223, className: "misc_0107", name: "Vubbe Pickaxe", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645224, className: "misc_0108", name: "Vubbe Hood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645225, className: "misc_0109", name: "Dandel Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 22, sellPrice: 4, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645226, className: "misc_0110", name: "Panto Eyebrow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645227, className: "misc_0111", name: "Panto Spear Shaft", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645228, className: "misc_0112", name: "Tipio Stamen", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 12, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645229, className: "misc_0113", name: "Doyor Leaf Bunch", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 20, sellPrice: 4, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645230, className: "misc_0114", name: "Hogma Archer Belt", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645231, className: "misc_0115", name: "Panto Spearhead", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 210, sellPrice: 42, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645232, className: "misc_0116", name: "Phlogistone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 320, sellPrice: 80, minLevel: 1 }, -{ itemId: 645233, className: "misc_0117", name: "Sulfur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 96, sellPrice: 19, minLevel: 1 }, -{ itemId: 645234, className: "misc_0118", name: "Cinnabar", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 38, sellPrice: 7, minLevel: 1 }, -{ itemId: 645235, className: "misc_0119", name: "Bat Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 6, sellPrice: 1, minLevel: 1 }, +{ itemId: 645233, className: "misc_0117", name: "Sulfur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 96, sellPrice: 19, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645234, className: "misc_0118", name: "Cinnabar", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 38, sellPrice: 7, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645235, className: "misc_0119", name: "Bat Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 6, sellPrice: 1, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645237, className: "misc_0121", name: "Glass Piece", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 5, sellPrice: 1, minLevel: 1 }, { itemId: 645238, className: "wood_01", name: "Oak Wood", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 18, sellPrice: 3, minLevel: 1 }, { itemId: 645239, className: "wood_02", name: "Ash Wood", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 12, sellPrice: 2, minLevel: 1 }, @@ -12492,237 +12492,237 @@ { itemId: 645243, className: "timber_02", name: "Ash Lumber", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 300, sellPrice: 0, minLevel: 1 }, { itemId: 645244, className: "timber_03", name: "Pine Lumber", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 300, sellPrice: 0, minLevel: 1 }, { itemId: 645245, className: "timber_04", name: "Cedar Lumber", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 300, sellPrice: 0, minLevel: 1 }, -{ itemId: 645246, className: "misc_0122", name: "Coliflower Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 31, sellPrice: 6, minLevel: 1 }, -{ itemId: 645247, className: "misc_0123", name: "Altered Sauga Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 124, sellPrice: 24, minLevel: 1 }, -{ itemId: 645248, className: "misc_0124", name: "Dandel Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 88, sellPrice: 17, minLevel: 1 }, -{ itemId: 645249, className: "misc_0125", name: "Bagworm Poison", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 88, sellPrice: 17, minLevel: 1, script: { function: "SCR_USE_ITEM_Poison", numArg1: 150, numArg2: 200 } }, +{ itemId: 645246, className: "misc_0122", name: "Coliflower Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 31, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645247, className: "misc_0123", name: "Altered Sauga Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 124, sellPrice: 24, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645248, className: "misc_0124", name: "Dandel Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 88, sellPrice: 17, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645249, className: "misc_0125", name: "Bagworm Poison", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 88, sellPrice: 17, minLevel: 1, equipExpGroup: "Misc", script: { function: "SCR_USE_ITEM_Poison", numArg1: 150, numArg2: 200 } }, { itemId: 645250, className: "arrow_01", name: "Broadhead Arrow", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 1, sellPrice: 1, minLevel: 1 }, { itemId: 645251, className: "arrow_02", name: "Bodkin Point Arrow", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 1, sellPrice: 1, minLevel: 1 }, { itemId: 645252, className: "arrow_03", name: "Hail Mary Arrow", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 1, sellPrice: 1, minLevel: 1 }, -{ itemId: 645256, className: "misc_0126", name: "Wendigo Fang", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 420, sellPrice: 84, minLevel: 1 }, -{ itemId: 645257, className: "misc_goldbar", name: "Gold Bar", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 50000, sellPrice: 50000, minLevel: 1 }, -{ itemId: 645259, className: "misc_quicksilver", name: "Mercury", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645260, className: "misc_onion2", name: "Kepa Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645261, className: "misc_onion3", name: "Kepa Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645262, className: "misc_leaf_diving2", name: "Leaf Bug Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645263, className: "misc_leaf_diving3", name: "Shiny Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645264, className: "misc_hanaming2", name: "Hanaming Aroma", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645265, className: "misc_hanaming3", name: "Hanaming Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645266, className: "misc_bokchoy2", name: "Chinency Root", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645267, className: "misc_infroRocktor2", name: "Infrorocktor Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 792, sellPrice: 158, minLevel: 1 }, -{ itemId: 645268, className: "misc_talt", name: "Talt", type: "Etc", group: "Material", weight: 10, maxStack: 32767, price: 2500, sellPrice: 5000, minLevel: 1, script: { strArg: "Guild_EXP", numArg1: 20 } }, -{ itemId: 645269, className: "misc_chupacabra2", name: "Chupacabra Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 42, sellPrice: 8, minLevel: 1 }, -{ itemId: 645270, className: "misc_chupacabra3", name: "Chupacabra Eyeball", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645271, className: "misc_popolion2", name: "Popolion Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645272, className: "misc_popolion3", name: "Popolion Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645273, className: "misc_weaver2", name: "Weaver Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645274, className: "misc_weaver3", name: "Weaver Venom", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645275, className: "misc_pokubu2", name: "Pokubu Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645276, className: "misc_pokubu3", name: "Pokubu Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645277, className: "misc_jukopus2", name: "Discolored Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645278, className: "misc_jukopus3", name: "Jukopus Rope", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645279, className: "misc_onion_red2", name: "Red Kepa Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645280, className: "misc_onion_red3", name: "Red Kepa Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645281, className: "misc_goblin_spear2", name: "Vubbe Spear Head", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645282, className: "misc_bubeBlood", name: "Vubbe Blood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645283, className: "misc_whip_vine_ra2", name: "Raflower Root", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645284, className: "misc_whip_vine_ra3", name: "Raflower Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645285, className: "misc_stonOrca2", name: "Stone Orca Piece", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645286, className: "misc_bat2", name: "Bat Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645287, className: "misc_shredded2", name: "Shredded Piece of Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 150, sellPrice: 30, minLevel: 1 }, -{ itemId: 645288, className: "misc_shredded3", name: "Shredded Spirit Matter", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 346, sellPrice: 69, minLevel: 1 }, -{ itemId: 645289, className: "misc_yekubite2", name: "Yekubite Teeth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645290, className: "misc_yekubite3", name: "Yekubite Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645291, className: "misc_quartz_weaver2", name: "Crystal Spider Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645292, className: "misc_quartz_weaver3", name: "Crystal Spider Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645293, className: "misc_bubeWarriorBlood", name: "Vubbe Fighter Blood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 326, sellPrice: 65, minLevel: 1 }, -{ itemId: 645294, className: "misc_zignuts2", name: "Zignuts Fruit", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645295, className: "misc_zignuts3", name: "Zignuts Seed", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645296, className: "misc_panto2", name: "Panto Leaf Decoration", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645297, className: "misc_humming_bud", name: "Hummingbird Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 42, sellPrice: 8, minLevel: 1 }, -{ itemId: 645298, className: "misc_humming_bud2", name: "Hummingbird Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645299, className: "misc_humming_bud3", name: "Hummingbird Wing Power", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645300, className: "misc_leafly", name: "Leafly Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 16, sellPrice: 3, minLevel: 1 }, -{ itemId: 645301, className: "misc_leafly2", name: "Leafly Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645302, className: "misc_leafly3", name: "Leafly Egg", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645303, className: "misc_seedmia", name: "Seedmia Seed", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 27, sellPrice: 5, minLevel: 1 }, -{ itemId: 645304, className: "misc_seedmia3", name: "Seedmia Pollen", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645305, className: "misc_drakeResc", name: "Drake Epaulet", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645306, className: "misc_firent2", name: "Firent Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 1515, sellPrice: 303, minLevel: 1 }, -{ itemId: 645307, className: "misc_pantoSword", name: "Broken Panto Sword", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 170, sellPrice: 34, minLevel: 1 }, -{ itemId: 645308, className: "misc_panto3", name: "Panto Hoof", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645309, className: "misc_pantoStaff", name: "Panto Magician Cane Decoration", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645310, className: "misc_mallardu", name: "Mallardu Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 15, sellPrice: 3, minLevel: 1 }, -{ itemId: 645311, className: "misc_mallardu2", name: "Mallardu Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645312, className: "misc_mallardu3", name: "Mallardu Beak", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645313, className: "misc_udumbara", name: "Udumbara", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645314, className: "misc_violet", name: "Violet Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645315, className: "misc_violet2", name: "Violet Flower", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645316, className: "misc_violet3", name: "Violet Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645317, className: "misc_yognome", name: "Yognome Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645318, className: "misc_yognome2", name: "Yognome Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645319, className: "misc_egnome", name: "Egnome Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645320, className: "misc_egnome2", name: "Egnome Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 420, sellPrice: 84, minLevel: 1 }, -{ itemId: 645322, className: "misc_rodelin2", name: "Rodelin Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645323, className: "misc_rodelin3", name: "Rodelin Cloth Piece", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645325, className: "misc_pawnd2", name: "Pawnd Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645326, className: "misc_pawnd3", name: "Pawnd Bow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645328, className: "misc_pawndel2", name: "Pawndel Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645329, className: "misc_pawndel3", name: "Pawndel Shaft", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 4444, sellPrice: 888, minLevel: 1 }, -{ itemId: 645330, className: "misc_galok", name: "Galok Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 60, sellPrice: 12, minLevel: 1 }, -{ itemId: 645332, className: "misc_galok3", name: "Galok Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645333, className: "misc_glizardon", name: "Glizardon Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 38, sellPrice: 7, minLevel: 1 }, -{ itemId: 645334, className: "misc_glizardon2", name: "Glizardon Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 84, sellPrice: 16, minLevel: 1 }, -{ itemId: 645335, className: "misc_glizardon3", name: "Glizardon Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645336, className: "misc_brcCrystal", name: "Pure Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 645256, className: "misc_0126", name: "Wendigo Fang", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 420, sellPrice: 84, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645257, className: "misc_goldbar", name: "Gold Bar", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 50000, sellPrice: 50000, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645259, className: "misc_quicksilver", name: "Mercury", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645260, className: "misc_onion2", name: "Kepa Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645261, className: "misc_onion3", name: "Kepa Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645262, className: "misc_leaf_diving2", name: "Leaf Bug Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645263, className: "misc_leaf_diving3", name: "Shiny Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645264, className: "misc_hanaming2", name: "Hanaming Aroma", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645265, className: "misc_hanaming3", name: "Hanaming Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645266, className: "misc_bokchoy2", name: "Chinency Root", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645267, className: "misc_infroRocktor2", name: "Infrorocktor Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 792, sellPrice: 158, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645268, className: "misc_talt", name: "Talt", type: "Etc", group: "Material", weight: 10, maxStack: 32767, price: 2500, sellPrice: 5000, minLevel: 1, equipExpGroup: "GemExp_Talt01", script: { strArg: "Guild_EXP", numArg1: 20 } }, +{ itemId: 645269, className: "misc_chupacabra2", name: "Chupacabra Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 42, sellPrice: 8, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645270, className: "misc_chupacabra3", name: "Chupacabra Eyeball", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645271, className: "misc_popolion2", name: "Popolion Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645272, className: "misc_popolion3", name: "Popolion Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645273, className: "misc_weaver2", name: "Weaver Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645274, className: "misc_weaver3", name: "Weaver Venom", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645275, className: "misc_pokubu2", name: "Pokubu Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645276, className: "misc_pokubu3", name: "Pokubu Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645277, className: "misc_jukopus2", name: "Discolored Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645278, className: "misc_jukopus3", name: "Jukopus Rope", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645279, className: "misc_onion_red2", name: "Red Kepa Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645280, className: "misc_onion_red3", name: "Red Kepa Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645281, className: "misc_goblin_spear2", name: "Vubbe Spear Head", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645282, className: "misc_bubeBlood", name: "Vubbe Blood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645283, className: "misc_whip_vine_ra2", name: "Raflower Root", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645284, className: "misc_whip_vine_ra3", name: "Raflower Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645285, className: "misc_stonOrca2", name: "Stone Orca Piece", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645286, className: "misc_bat2", name: "Bat Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645287, className: "misc_shredded2", name: "Shredded Piece of Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 150, sellPrice: 30, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645288, className: "misc_shredded3", name: "Shredded Spirit Matter", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 346, sellPrice: 69, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645289, className: "misc_yekubite2", name: "Yekubite Teeth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645290, className: "misc_yekubite3", name: "Yekubite Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645291, className: "misc_quartz_weaver2", name: "Crystal Spider Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645292, className: "misc_quartz_weaver3", name: "Crystal Spider Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645293, className: "misc_bubeWarriorBlood", name: "Vubbe Fighter Blood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 326, sellPrice: 65, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645294, className: "misc_zignuts2", name: "Zignuts Fruit", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645295, className: "misc_zignuts3", name: "Zignuts Seed", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645296, className: "misc_panto2", name: "Panto Leaf Decoration", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645297, className: "misc_humming_bud", name: "Hummingbird Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 42, sellPrice: 8, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645298, className: "misc_humming_bud2", name: "Hummingbird Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645299, className: "misc_humming_bud3", name: "Hummingbird Wing Power", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645300, className: "misc_leafly", name: "Leafly Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 16, sellPrice: 3, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645301, className: "misc_leafly2", name: "Leafly Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645302, className: "misc_leafly3", name: "Leafly Egg", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645303, className: "misc_seedmia", name: "Seedmia Seed", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 27, sellPrice: 5, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645304, className: "misc_seedmia3", name: "Seedmia Pollen", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645305, className: "misc_drakeResc", name: "Drake Epaulet", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645306, className: "misc_firent2", name: "Firent Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 1515, sellPrice: 303, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645307, className: "misc_pantoSword", name: "Broken Panto Sword", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 170, sellPrice: 34, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645308, className: "misc_panto3", name: "Panto Hoof", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645309, className: "misc_pantoStaff", name: "Panto Magician Cane Decoration", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645310, className: "misc_mallardu", name: "Mallardu Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 15, sellPrice: 3, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645311, className: "misc_mallardu2", name: "Mallardu Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645312, className: "misc_mallardu3", name: "Mallardu Beak", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645313, className: "misc_udumbara", name: "Udumbara", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645314, className: "misc_violet", name: "Violet Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645315, className: "misc_violet2", name: "Violet Flower", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645316, className: "misc_violet3", name: "Violet Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645317, className: "misc_yognome", name: "Yognome Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645318, className: "misc_yognome2", name: "Yognome Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645319, className: "misc_egnome", name: "Egnome Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645320, className: "misc_egnome2", name: "Egnome Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 420, sellPrice: 84, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645322, className: "misc_rodelin2", name: "Rodelin Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645323, className: "misc_rodelin3", name: "Rodelin Cloth Piece", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645325, className: "misc_pawnd2", name: "Pawnd Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645326, className: "misc_pawnd3", name: "Pawnd Bow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645328, className: "misc_pawndel2", name: "Pawndel Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645329, className: "misc_pawndel3", name: "Pawndel Shaft", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 4444, sellPrice: 888, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645330, className: "misc_galok", name: "Galok Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 60, sellPrice: 12, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645332, className: "misc_galok3", name: "Galok Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645333, className: "misc_glizardon", name: "Glizardon Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 38, sellPrice: 7, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645334, className: "misc_glizardon2", name: "Glizardon Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 84, sellPrice: 16, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645335, className: "misc_glizardon3", name: "Glizardon Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645336, className: "misc_brcCrystal", name: "Pure Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645337, className: "misc_campfireKit", name: "Firewood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 30, sellPrice: 6, minLevel: 1 }, -{ itemId: 645338, className: "misc_lapasResin", name: "Lapas Resin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645339, className: "misc_judasCrystal", name: "Judas Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645340, className: "misc_seedOil", name: "Seed Oil", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645341, className: "misc_maize", name: "Maize Spore Pocket", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 23, sellPrice: 4, minLevel: 1 }, -{ itemId: 645342, className: "misc_maize2", name: "Maize Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645343, className: "misc_maize3", name: "Maize Eyeball", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645344, className: "misc_Fisherman", name: "Fishing Rod", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 20, sellPrice: 4, minLevel: 1 }, -{ itemId: 645345, className: "misc_Fisherman2", name: "Fisherman Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645346, className: "misc_zigri", name: "Kitchen Knife", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 18, sellPrice: 3, minLevel: 1 }, -{ itemId: 645347, className: "misc_puragi", name: "Large Hook", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 31, sellPrice: 6, minLevel: 1 }, -{ itemId: 645348, className: "misc_banshee", name: "Banshee Spirit Matter", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 17, sellPrice: 3, minLevel: 1 }, +{ itemId: 645338, className: "misc_lapasResin", name: "Lapas Resin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645339, className: "misc_judasCrystal", name: "Judas Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645340, className: "misc_seedOil", name: "Seed Oil", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645341, className: "misc_maize", name: "Maize Spore Pocket", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 23, sellPrice: 4, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645342, className: "misc_maize2", name: "Maize Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645343, className: "misc_maize3", name: "Maize Eyeball", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645344, className: "misc_Fisherman", name: "Fishing Rod", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 20, sellPrice: 4, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645345, className: "misc_Fisherman2", name: "Fisherman Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645346, className: "misc_zigri", name: "Kitchen Knife", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 18, sellPrice: 3, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645347, className: "misc_puragi", name: "Large Hook", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 31, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645348, className: "misc_banshee", name: "Banshee Spirit Matter", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 17, sellPrice: 3, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645349, className: "arrow_04", name: "Barbed Arrow", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 1, sellPrice: 1, minLevel: 1 }, -{ itemId: 645350, className: "misc_shtayim3", name: "Red Eye of Shtayim", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645351, className: "misc_Echad3", name: "Blue Eye of Echad", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645352, className: "misc_Grummer", name: "Grummer Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 21, sellPrice: 4, minLevel: 1 }, -{ itemId: 645353, className: "Briquetting_01", name: "Sticky Liquid", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645354, className: "Briquetting_02", name: "Latex", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645355, className: "Briquetting_03", name: "Fat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645356, className: "misc_arburn_pokubu", name: "Pokubon Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 98, sellPrice: 19, minLevel: 1 }, -{ itemId: 645357, className: "misc_Rudas_loxodon", name: "Loxodon Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645358, className: "Tincturing_01", name: "Ansur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645359, className: "Tincturing_02", name: "Veonol", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645360, className: "Tincturing_03", name: "Daer", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645361, className: "Tincturing_04", name: "Penol", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645362, className: "Tincturing_05", name: "Arah", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645363, className: "misc_Bushspider_purple", name: "Bushspider Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 27, sellPrice: 5, minLevel: 1 }, -{ itemId: 645364, className: "misc_hogma_warrior2", name: "Gigantic Shinbone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 737, sellPrice: 147, minLevel: 1 }, -{ itemId: 645365, className: "misc_New_desmodus_black2", name: "Black Desmodus Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 45, sellPrice: 9, minLevel: 1 }, -{ itemId: 645366, className: "misc_mushroom_ent_black", name: "Big Black Griba Bamboo Hat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 14, sellPrice: 2, minLevel: 1 }, -{ itemId: 645367, className: "misc_egg", name: "Egg", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 67, sellPrice: 13, minLevel: 1 }, -{ itemId: 645368, className: "misc_kodomor", name: "Oxygen Pocket", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645369, className: "misc_groll2", name: "Groll Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 75, sellPrice: 15, minLevel: 1 }, -{ itemId: 645370, className: "misc_Mushroom_boy", name: "Griba Bamboo Hat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 57, sellPrice: 11, minLevel: 1 }, -{ itemId: 645372, className: "misc_Lantern_mushroom", name: "Gribaru Bamboo Hat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645373, className: "misc_kowak", name: "Wooden Pile", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 40, sellPrice: 8, minLevel: 1 }, -{ itemId: 645374, className: "misc_bubbe_fighter", name: "Rusted Scrap Metal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645376, className: "misc_slime_dark", name: "Dark Slime Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645377, className: "misc_duckey", name: "Ducky Beak", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645378, className: "misc_New_desmodus", name: "Desmodus Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645379, className: "misc_Denden", name: "Denden Petal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645380, className: "misc_Doyor2", name: "Doyor Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1 }, -{ itemId: 645381, className: "misc_Fire_Dragon2", name: "Drake Film", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 297, sellPrice: 59, minLevel: 1 }, -{ itemId: 645383, className: "misc_Drape", name: "Drape Poisoned Needle", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645384, className: "misc_Lapasape", name: "Lafsave Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645385, className: "misc_rafflesia_purple", name: "Rafflesia Poison Extract", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 84, sellPrice: 16, minLevel: 1 }, -{ itemId: 645386, className: "misc_Rambear", name: "Rambear Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645387, className: "misc_RavineLerva", name: "Ravinelarvae Acid Sap", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645388, className: "misc_rublem", name: "Rubblem Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 53, sellPrice: 10, minLevel: 1 }, -{ itemId: 645389, className: "misc_rublem2", name: "Rubblem Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 132, sellPrice: 26, minLevel: 1 }, -{ itemId: 645390, className: "misc_Lemur", name: "Lemur Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645391, className: "misc_Lemuria", name: "Lemuria Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645392, className: "misc_Repusbunny", name: "Lepusbunny Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645393, className: "misc_Rudas_loxodon3", name: "Loxodon Ivory", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 192, sellPrice: 38, minLevel: 1 }, -{ itemId: 645394, className: "misc_Rudas_loxodon2", name: "Loxodon Backbones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 96, sellPrice: 19, minLevel: 1 }, -{ itemId: 645395, className: "misc_Rubabos", name: "Rubabos Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645396, className: "misc_Lizardman2", name: "Lizardman Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 165, sellPrice: 33, minLevel: 1 }, -{ itemId: 645397, className: "misc_Lizardman", name: "Lizardman Fang", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 62, sellPrice: 12, minLevel: 1 }, -{ itemId: 645398, className: "misc_Leafnut", name: "Leafnut Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645400, className: "misc_banshee_purple", name: "Specter Hood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645401, className: "misc_schlesien_darkmage3", name: "Medakia Metal Decoration", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 171, sellPrice: 34, minLevel: 1 }, -{ itemId: 645402, className: "misc_schlesien_darkmage", name: "Medakia Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 60, sellPrice: 12, minLevel: 1 }, -{ itemId: 645403, className: "misc_Mentiwood", name: "Mantiwood Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645404, className: "misc_Meleech", name: "Meleech Foreleg", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645405, className: "misc_Moglan", name: "Moglan Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 64, sellPrice: 12, minLevel: 1 }, -{ itemId: 645406, className: "misc_Moyabu", name: "Moyabu Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645407, className: "misc_minivern", name: "Minivern Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 73, sellPrice: 14, minLevel: 1 }, -{ itemId: 645409, className: "misc_Bavon", name: "Bavon Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645410, className: "misc_varv2", name: "Varv Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 160, sellPrice: 32, minLevel: 1 }, -{ itemId: 645411, className: "misc_schlesien_guard", name: "Wheel", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 102, sellPrice: 20, minLevel: 1 }, -{ itemId: 645412, className: "misc_banshee3", name: "Banshee Hood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 480, sellPrice: 96, minLevel: 1 }, -{ itemId: 645413, className: "misc_Velwriggler", name: "Velwriggler Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 50, sellPrice: 10, minLevel: 1 }, -{ itemId: 645414, className: "misc_raffly", name: "Violet Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 36, sellPrice: 7, minLevel: 1 }, -{ itemId: 645415, className: "misc_Goblin_Spear_red", name: "Red Vubbe Token", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645417, className: "misc_Beeteros", name: "Beeteros Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645418, className: "misc_mushroom_ent", name: "Big Griba Bamboo Hat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645419, className: "misc_Big_Cockatries2", name: "Cockat Beak", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 3780, sellPrice: 756, minLevel: 1 }, -{ itemId: 645420, className: "misc_chupacabra_desert2", name: "Desert Chupacabra Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 85, sellPrice: 17, minLevel: 1 }, -{ itemId: 645421, className: "misc_Sauga_s3", name: "Sauga Motor Drive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 900, sellPrice: 180, minLevel: 1 }, -{ itemId: 645422, className: "misc_Cire", name: "Cire Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645423, className: "misc_Sakmoli", name: "Sakmoli Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 47, sellPrice: 9, minLevel: 1 }, -{ itemId: 645426, className: "misc_Shardstatue", name: "Shardstatue Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645427, className: "misc_resin", name: "Resin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 130, sellPrice: 26, minLevel: 1 }, -{ itemId: 645428, className: "misc_shtayim", name: "Shtayim Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 47, sellPrice: 9, minLevel: 1 }, -{ itemId: 645429, className: "misc_Stoulet", name: "Stoulet Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645430, className: "misc_Spector_Gh", name: "Corpse Hand", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645431, className: "misc_Armory", name: "Armori Plate", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 54, sellPrice: 10, minLevel: 1 }, -{ itemId: 645432, className: "misc_Ammon", name: "Ammon Backbone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 21, sellPrice: 4, minLevel: 1 }, -{ itemId: 645433, className: "misc_jellyfish", name: "Glow Spore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 56, sellPrice: 11, minLevel: 1 }, -{ itemId: 645435, className: "misc_Ultanun", name: "Ultanun Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 520, sellPrice: 104, minLevel: 1 }, -{ itemId: 645436, className: "misc_ellogua", name: "Ellogua Petal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645437, className: "misc_ellomago", name: "Ellomago Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 38, sellPrice: 7, minLevel: 1 }, -{ itemId: 645438, className: "misc_ellom", name: "Ellom Bell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645439, className: "misc_ellom2", name: "Ellom Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 75, sellPrice: 15, minLevel: 1 }, -{ itemId: 645442, className: "misc_Infroholder", name: "Infro Holder Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645443, className: "misc_TerraNymph", name: "Terra Imp Decoration", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 89, sellPrice: 17, minLevel: 1 }, -{ itemId: 645445, className: "misc_Geppetto2", name: "Geppetto Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 96, sellPrice: 19, minLevel: 1 }, -{ itemId: 645446, className: "misc_Dumaro", name: "Shackle", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 38, sellPrice: 7, minLevel: 1 }, -{ itemId: 645447, className: "misc_tower_of_firepuppet2", name: "Shaman Doll Cotton", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 68, sellPrice: 13, minLevel: 1 }, -{ itemId: 645448, className: "misc_ellom_green", name: "Green Ellom Bell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 56, sellPrice: 11, minLevel: 1 }, -{ itemId: 645449, className: "misc_chupaluka", name: "Chupaluka Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645450, className: "misc_Karas", name: "Karas Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 84, sellPrice: 16, minLevel: 1 }, -{ itemId: 645451, className: "misc_Caro", name: "Caro Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 12, sellPrice: 2, minLevel: 1 }, -{ itemId: 645452, className: "misc_raider", name: "Kepa Raider Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645453, className: "misc_Corylus", name: "Corylus Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 32, sellPrice: 6, minLevel: 1 }, -{ itemId: 645454, className: "misc_Cockatries2", name: "Cockatrice Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 255, sellPrice: 51, minLevel: 1 }, -{ itemId: 645455, className: "misc_Cockatries", name: "Cockatrice Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 102, sellPrice: 20, minLevel: 1 }, -{ itemId: 645457, className: "misc_colimen", name: "Colimen Flower", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645458, className: "misc_colitile", name: "Colitile Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645459, className: "misc_Cronewt", name: "Cronewt Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645460, className: "misc_chromadog", name: "Chromadog Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 57, sellPrice: 11, minLevel: 1 }, -{ itemId: 645461, className: "misc_Tanu", name: "Tanu Flower", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 864, sellPrice: 172, minLevel: 1 }, -{ itemId: 645462, className: "misc_Tama", name: "Tama Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 93, sellPrice: 18, minLevel: 1 }, -{ itemId: 645463, className: "misc_Tontulia", name: "Tontulia Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 56, sellPrice: 11, minLevel: 1 }, -{ itemId: 645464, className: "misc_Tucen", name: "Tucen Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 38, sellPrice: 7, minLevel: 1 }, -{ itemId: 645465, className: "misc_Ticen", name: "Ticen Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 47, sellPrice: 9, minLevel: 1 }, -{ itemId: 645468, className: "misc_Hound", name: "Pipe", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645469, className: "misc_arburn_pokubu_blue2", name: "Pokubon Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 47, sellPrice: 9, minLevel: 1 }, -{ itemId: 645471, className: "misc_arburn_pokubu_blue3", name: "Pokubon Backbone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 97, sellPrice: 19, minLevel: 1 }, -{ itemId: 645473, className: "misc_GoblinWarrior_blue", name: "Blue Vubbe Fighter Token", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 176, sellPrice: 35, minLevel: 1 }, -{ itemId: 645475, className: "misc_raffly-b", name: "Flibo Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 60, sellPrice: 12, minLevel: 1 }, -{ itemId: 645476, className: "misc_Pino", name: "Pino Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 45, sellPrice: 9, minLevel: 1 }, -{ itemId: 645477, className: "misc_Haming2", name: "Hamming Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 75, sellPrice: 15, minLevel: 1 }, -{ itemId: 645478, className: "misc_Bume_Goblin_Archer2", name: "High Vubbe Cross Stick", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 29, sellPrice: 5, minLevel: 1 }, -{ itemId: 645479, className: "misc_Bume_Goblin", name: "High Vubbe Token", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 32, sellPrice: 6, minLevel: 1 }, -{ itemId: 645481, className: "misc_Hallowventor", name: "Hallowventer Hand Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 126, sellPrice: 25, minLevel: 1 }, -{ itemId: 645482, className: "misc_warleader_hogma", name: "Hogma Battle Boss Fang", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 188, sellPrice: 37, minLevel: 1 }, -{ itemId: 645483, className: "misc_Jukopus_gray", name: "Gray Yukopus Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645484, className: "misc_flenrem", name: "Fallenlem Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 56, sellPrice: 11, minLevel: 1 }, -{ itemId: 645485, className: "misc_silverbar", name: "Silver Bar", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 30000, sellPrice: 30000, minLevel: 1 }, -{ itemId: 645494, className: "misc_blackMarket", name: "Black Market Seal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645495, className: "rsc_2_1", name: "White Mucus", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645496, className: "rsc_2_2", name: "Florr", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645497, className: "rsc_2_3", name: "Rough Bones Powder", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645498, className: "rsc_2_4", name: "Tendon", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645499, className: "rsc_3_1", name: "Hardener", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645500, className: "rsc_3_2", name: "Tough Tendon", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645501, className: "rsc_4_1", name: "Resinate", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645502, className: "hrsc_2_1", name: "Spell Reservoir", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, +{ itemId: 645350, className: "misc_shtayim3", name: "Red Eye of Shtayim", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645351, className: "misc_Echad3", name: "Blue Eye of Echad", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645352, className: "misc_Grummer", name: "Grummer Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 21, sellPrice: 4, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645353, className: "Briquetting_01", name: "Sticky Liquid", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645354, className: "Briquetting_02", name: "Latex", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645355, className: "Briquetting_03", name: "Fat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645356, className: "misc_arburn_pokubu", name: "Pokubon Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 98, sellPrice: 19, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645357, className: "misc_Rudas_loxodon", name: "Loxodon Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645358, className: "Tincturing_01", name: "Ansur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645359, className: "Tincturing_02", name: "Veonol", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645360, className: "Tincturing_03", name: "Daer", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645361, className: "Tincturing_04", name: "Penol", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645362, className: "Tincturing_05", name: "Arah", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645363, className: "misc_Bushspider_purple", name: "Bushspider Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 27, sellPrice: 5, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645364, className: "misc_hogma_warrior2", name: "Gigantic Shinbone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 737, sellPrice: 147, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645365, className: "misc_New_desmodus_black2", name: "Black Desmodus Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 45, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645366, className: "misc_mushroom_ent_black", name: "Big Black Griba Bamboo Hat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 14, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645367, className: "misc_egg", name: "Egg", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 67, sellPrice: 13, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645368, className: "misc_kodomor", name: "Oxygen Pocket", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645369, className: "misc_groll2", name: "Groll Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 75, sellPrice: 15, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645370, className: "misc_Mushroom_boy", name: "Griba Bamboo Hat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 57, sellPrice: 11, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645372, className: "misc_Lantern_mushroom", name: "Gribaru Bamboo Hat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645373, className: "misc_kowak", name: "Wooden Pile", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 40, sellPrice: 8, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645374, className: "misc_bubbe_fighter", name: "Rusted Scrap Metal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645376, className: "misc_slime_dark", name: "Dark Slime Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645377, className: "misc_duckey", name: "Ducky Beak", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645378, className: "misc_New_desmodus", name: "Desmodus Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645379, className: "misc_Denden", name: "Denden Petal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645380, className: "misc_Doyor2", name: "Doyor Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645381, className: "misc_Fire_Dragon2", name: "Drake Film", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 297, sellPrice: 59, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645383, className: "misc_Drape", name: "Drape Poisoned Needle", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645384, className: "misc_Lapasape", name: "Lafsave Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645385, className: "misc_rafflesia_purple", name: "Rafflesia Poison Extract", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 84, sellPrice: 16, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645386, className: "misc_Rambear", name: "Rambear Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645387, className: "misc_RavineLerva", name: "Ravinelarvae Acid Sap", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645388, className: "misc_rublem", name: "Rubblem Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 53, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645389, className: "misc_rublem2", name: "Rubblem Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 132, sellPrice: 26, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645390, className: "misc_Lemur", name: "Lemur Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645391, className: "misc_Lemuria", name: "Lemuria Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645392, className: "misc_Repusbunny", name: "Lepusbunny Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645393, className: "misc_Rudas_loxodon3", name: "Loxodon Ivory", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 192, sellPrice: 38, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645394, className: "misc_Rudas_loxodon2", name: "Loxodon Backbones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 96, sellPrice: 19, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645395, className: "misc_Rubabos", name: "Rubabos Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645396, className: "misc_Lizardman2", name: "Lizardman Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 165, sellPrice: 33, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645397, className: "misc_Lizardman", name: "Lizardman Fang", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 62, sellPrice: 12, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645398, className: "misc_Leafnut", name: "Leafnut Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645400, className: "misc_banshee_purple", name: "Specter Hood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645401, className: "misc_schlesien_darkmage3", name: "Medakia Metal Decoration", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 171, sellPrice: 34, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645402, className: "misc_schlesien_darkmage", name: "Medakia Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 60, sellPrice: 12, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645403, className: "misc_Mentiwood", name: "Mantiwood Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645404, className: "misc_Meleech", name: "Meleech Foreleg", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645405, className: "misc_Moglan", name: "Moglan Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 64, sellPrice: 12, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645406, className: "misc_Moyabu", name: "Moyabu Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645407, className: "misc_minivern", name: "Minivern Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 73, sellPrice: 14, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645409, className: "misc_Bavon", name: "Bavon Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645410, className: "misc_varv2", name: "Varv Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 160, sellPrice: 32, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645411, className: "misc_schlesien_guard", name: "Wheel", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 102, sellPrice: 20, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645412, className: "misc_banshee3", name: "Banshee Hood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 480, sellPrice: 96, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645413, className: "misc_Velwriggler", name: "Velwriggler Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 50, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645414, className: "misc_raffly", name: "Violet Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 36, sellPrice: 7, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645415, className: "misc_Goblin_Spear_red", name: "Red Vubbe Token", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645417, className: "misc_Beeteros", name: "Beeteros Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645418, className: "misc_mushroom_ent", name: "Big Griba Bamboo Hat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645419, className: "misc_Big_Cockatries2", name: "Cockat Beak", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 3780, sellPrice: 756, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645420, className: "misc_chupacabra_desert2", name: "Desert Chupacabra Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 85, sellPrice: 17, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645421, className: "misc_Sauga_s3", name: "Sauga Motor Drive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 900, sellPrice: 180, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645422, className: "misc_Cire", name: "Cire Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645423, className: "misc_Sakmoli", name: "Sakmoli Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 47, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645426, className: "misc_Shardstatue", name: "Shardstatue Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645427, className: "misc_resin", name: "Resin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 130, sellPrice: 26, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645428, className: "misc_shtayim", name: "Shtayim Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 47, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645429, className: "misc_Stoulet", name: "Stoulet Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645430, className: "misc_Spector_Gh", name: "Corpse Hand", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645431, className: "misc_Armory", name: "Armori Plate", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 54, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645432, className: "misc_Ammon", name: "Ammon Backbone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 21, sellPrice: 4, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645433, className: "misc_jellyfish", name: "Glow Spore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 56, sellPrice: 11, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645435, className: "misc_Ultanun", name: "Ultanun Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 520, sellPrice: 104, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645436, className: "misc_ellogua", name: "Ellogua Petal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645437, className: "misc_ellomago", name: "Ellomago Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 38, sellPrice: 7, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645438, className: "misc_ellom", name: "Ellom Bell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645439, className: "misc_ellom2", name: "Ellom Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 75, sellPrice: 15, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645442, className: "misc_Infroholder", name: "Infro Holder Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645443, className: "misc_TerraNymph", name: "Terra Imp Decoration", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 89, sellPrice: 17, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645445, className: "misc_Geppetto2", name: "Geppetto Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 96, sellPrice: 19, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645446, className: "misc_Dumaro", name: "Shackle", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 38, sellPrice: 7, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645447, className: "misc_tower_of_firepuppet2", name: "Shaman Doll Cotton", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 68, sellPrice: 13, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645448, className: "misc_ellom_green", name: "Green Ellom Bell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 56, sellPrice: 11, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645449, className: "misc_chupaluka", name: "Chupaluka Meat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645450, className: "misc_Karas", name: "Karas Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 84, sellPrice: 16, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645451, className: "misc_Caro", name: "Caro Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 12, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645452, className: "misc_raider", name: "Kepa Raider Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645453, className: "misc_Corylus", name: "Corylus Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 32, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645454, className: "misc_Cockatries2", name: "Cockatrice Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 255, sellPrice: 51, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645455, className: "misc_Cockatries", name: "Cockatrice Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 102, sellPrice: 20, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645457, className: "misc_colimen", name: "Colimen Flower", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645458, className: "misc_colitile", name: "Colitile Feeler", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645459, className: "misc_Cronewt", name: "Cronewt Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645460, className: "misc_chromadog", name: "Chromadog Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 57, sellPrice: 11, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645461, className: "misc_Tanu", name: "Tanu Flower", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 864, sellPrice: 172, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645462, className: "misc_Tama", name: "Tama Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 93, sellPrice: 18, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645463, className: "misc_Tontulia", name: "Tontulia Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 56, sellPrice: 11, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645464, className: "misc_Tucen", name: "Tucen Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 38, sellPrice: 7, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645465, className: "misc_Ticen", name: "Ticen Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 47, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645468, className: "misc_Hound", name: "Pipe", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645469, className: "misc_arburn_pokubu_blue2", name: "Pokubon Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 47, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645471, className: "misc_arburn_pokubu_blue3", name: "Pokubon Backbone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 97, sellPrice: 19, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645473, className: "misc_GoblinWarrior_blue", name: "Blue Vubbe Fighter Token", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 176, sellPrice: 35, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645475, className: "misc_raffly-b", name: "Flibo Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 60, sellPrice: 12, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645476, className: "misc_Pino", name: "Pino Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 45, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645477, className: "misc_Haming2", name: "Hamming Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 75, sellPrice: 15, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645478, className: "misc_Bume_Goblin_Archer2", name: "High Vubbe Cross Stick", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 29, sellPrice: 5, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645479, className: "misc_Bume_Goblin", name: "High Vubbe Token", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 32, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645481, className: "misc_Hallowventor", name: "Hallowventer Hand Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 126, sellPrice: 25, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645482, className: "misc_warleader_hogma", name: "Hogma Battle Boss Fang", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 188, sellPrice: 37, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645483, className: "misc_Jukopus_gray", name: "Gray Yukopus Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645484, className: "misc_flenrem", name: "Fallenlem Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 56, sellPrice: 11, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645485, className: "misc_silverbar", name: "Silver Bar", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 30000, sellPrice: 30000, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645494, className: "misc_blackMarket", name: "Black Market Seal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645495, className: "rsc_2_1", name: "White Mucus", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645496, className: "rsc_2_2", name: "Florr", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645497, className: "rsc_2_3", name: "Rough Bones Powder", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645498, className: "rsc_2_4", name: "Tendon", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645499, className: "rsc_3_1", name: "Hardener", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645500, className: "rsc_3_2", name: "Tough Tendon", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645501, className: "rsc_4_1", name: "Resinate", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645502, className: "hrsc_2_1", name: "Spell Reservoir", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645503, className: "arrow_stone", name: "Stone Bullet", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 12, sellPrice: 2, minLevel: 1 }, -{ itemId: 645504, className: "misc_boss_Chafer", name: "Chafer Material", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645505, className: "misc_expensiveGem", name: "Lush Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 500, sellPrice: 100, minLevel: 1 }, -{ itemId: 645506, className: "misc_magicEngine", name: "Spell Engineering Engine", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 2000, sellPrice: 400, minLevel: 1 }, -{ itemId: 645507, className: "misc_boss_Deathweaver", name: "Tormented Soul", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 3000, sellPrice: 600, minLevel: 1 }, -{ itemId: 645508, className: "misc_boss_BiteRegina", name: "Biteregina's Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645509, className: "misc_boss_Kerberos", name: "Cerberus' Canine", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645510, className: "misc_boss_Chapparition", name: "Chapparition's Soul Matter", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645511, className: "misc_mission_gele", name: "Siela", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 20, sellPrice: 4, minLevel: 1 }, +{ itemId: 645504, className: "misc_boss_Chafer", name: "Chafer Material", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645505, className: "misc_expensiveGem", name: "Lush Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 500, sellPrice: 100, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645506, className: "misc_magicEngine", name: "Spell Engineering Engine", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 2000, sellPrice: 400, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645507, className: "misc_boss_Deathweaver", name: "Tormented Soul", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 3000, sellPrice: 600, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645508, className: "misc_boss_BiteRegina", name: "Biteregina's Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645509, className: "misc_boss_Kerberos", name: "Cerberus' Canine", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645510, className: "misc_boss_Chapparition", name: "Chapparition's Soul Matter", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645511, className: "misc_mission_gele", name: "Siela", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 20, sellPrice: 4, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645512, className: "misc_FOOT02_119_1", name: "Veyo Boots Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, { itemId: 645513, className: "misc_FOOT02_119_2", name: "Veyo Boots Laces", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, { itemId: 645514, className: "misc_NECK03_104_1", name: "Saphie Chain", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, @@ -12731,7 +12731,7 @@ { itemId: 645517, className: "misc_yonazolem_Q1", name: "Yonazolem Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, { itemId: 645518, className: "misc_Denoptic", name: "Denoptic Eye", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, { itemId: 645519, className: "misc_Confinedion", name: "Scorpio Hook", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645520, className: "misc_gemExpStone01", name: "Gem Abrasive: 3,000", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, +{ itemId: 645520, className: "misc_gemExpStone01", name: "Gem Abrasive: 3,000", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExpStone01" }, { itemId: 645521, className: "misc_BRC03_105_1", name: "Tomb Lord Chain", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, { itemId: 645522, className: "misc_BRC03_105_2", name: "Bearkaras Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, { itemId: 645523, className: "misc_BRC03_105_3", name: "Rexipher's Innocent Evil", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, @@ -12746,84 +12746,84 @@ { itemId: 645532, className: "misc_flask", name: "Flask", type: "Etc", group: "Material", weight: 3, maxStack: 32767, price: 120, sellPrice: 24, minLevel: 1 }, { itemId: 645533, className: "misc_catalyst_1", name: "Calcite", type: "Etc", group: "Material", weight: 4, maxStack: 32767, price: 3000, sellPrice: 600, minLevel: 1 }, { itemId: 645534, className: "misc_repairkit_1", name: "Repair Kit", type: "Etc", group: "Material", weight: 3, maxStack: 999999, price: 80, sellPrice: 16, minLevel: 1 }, -{ itemId: 645539, className: "misc_0127", name: "Old Kepa Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645540, className: "misc_0128", name: "Ridimed Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645541, className: "misc_0129", name: "Meduja Tentacle", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645542, className: "misc_0130", name: "Bite Stinger", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645543, className: "misc_0131", name: "Griba Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645544, className: "misc_0132", name: "Meleech Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645545, className: "misc_0133", name: "Slick Sap", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645546, className: "misc_0134", name: "Treegool Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645547, className: "misc_0135", name: "Cronewt Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645548, className: "misc_0136", name: "Hoglan Beak", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645549, className: "misc_0137", name: "Ducky Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645550, className: "misc_0138", name: "Kepa Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645551, className: "misc_0139", name: "Kepo Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645552, className: "misc_0140", name: "Kepo Fluff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645553, className: "misc_0141", name: "Rondo Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645555, className: "misc_0143", name: "Kodomor Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645556, className: "misc_0144", name: "Lomor Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645557, className: "misc_0145", name: "Red Plate", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645558, className: "misc_0146", name: "Wooden Pile", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645559, className: "misc_0147", name: "Moya Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645560, className: "misc_0148", name: "Colifly Stamen", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645561, className: "misc_0149", name: "Loftlem Debris", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645562, className: "misc_0150", name: "Stoulet Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645563, className: "misc_0151", name: "Hoglan Beak", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645564, className: "misc_0152", name: "Infro Blood Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645565, className: "misc_0153", name: "Chupaluka Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, +{ itemId: 645539, className: "misc_0127", name: "Old Kepa Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645540, className: "misc_0128", name: "Ridimed Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645541, className: "misc_0129", name: "Meduja Tentacle", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645542, className: "misc_0130", name: "Bite Stinger", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645543, className: "misc_0131", name: "Griba Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645544, className: "misc_0132", name: "Meleech Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645545, className: "misc_0133", name: "Slick Sap", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645546, className: "misc_0134", name: "Treegool Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645547, className: "misc_0135", name: "Cronewt Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645548, className: "misc_0136", name: "Hoglan Beak", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645549, className: "misc_0137", name: "Ducky Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645550, className: "misc_0138", name: "Kepa Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645551, className: "misc_0139", name: "Kepo Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645552, className: "misc_0140", name: "Kepo Fluff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645553, className: "misc_0141", name: "Rondo Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645555, className: "misc_0143", name: "Kodomor Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645556, className: "misc_0144", name: "Lomor Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645557, className: "misc_0145", name: "Red Plate", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645558, className: "misc_0146", name: "Wooden Pile", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645559, className: "misc_0147", name: "Moya Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645560, className: "misc_0148", name: "Colifly Stamen", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645561, className: "misc_0149", name: "Loftlem Debris", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645562, className: "misc_0150", name: "Stoulet Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645563, className: "misc_0151", name: "Hoglan Beak", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645564, className: "misc_0152", name: "Infro Blood Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645565, className: "misc_0153", name: "Chupaluka Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645566, className: "crystal_piece", name: "Crystal Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 220, sellPrice: 0, minLevel: 1 }, { itemId: 645567, className: "arrow_05", name: "Divine Machine Arrow", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 1, sellPrice: 1, minLevel: 1 }, { itemId: 645568, className: "arrow_06", name: "Magic Arrow", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 1, sellPrice: 1, minLevel: 1 }, { itemId: 645570, className: "misc_campkit", name: "Camping Tools", type: "Etc", group: "Material", weight: 6, maxStack: 32767, price: 1250, sellPrice: 250, minLevel: 1 }, { itemId: 645571, className: "misc_gunpowder", name: "Gunpowder", type: "Etc", group: "Material", weight: 6, maxStack: 32767, price: 550, sellPrice: 110, minLevel: 1 }, -{ itemId: 645572, className: "misc_0154", name: "Kepo Fluff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645573, className: "misc_0155", name: "Ashrong Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645574, className: "misc_0156", name: "Yellow Yognome Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645575, className: "misc_0157", name: "Yellow Egnome Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645576, className: "misc_0158", name: "Yellow Gorgon Golem Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645577, className: "misc_0159", name: "Moyabu Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645578, className: "misc_0160", name: "Lemuria Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645579, className: "misc_0161", name: "Harugal Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645580, className: "misc_0162", name: "Socket Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645581, className: "misc_0163", name: "Elma Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645582, className: "misc_0164", name: "Hohen Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645583, className: "misc_0165", name: "Lizardman Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645584, className: "misc_0166", name: "Tama Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645585, className: "misc_0167", name: "Short Timber", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645586, className: "misc_0168", name: "Cyst Needle", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645587, className: "misc_0169", name: "Mole Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645588, className: "misc_0170", name: "Melatinun Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645589, className: "misc_0171", name: "Gribaru Drop", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645590, className: "misc_0172", name: "Siaulamb Fur Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645591, className: "misc_0173", name: "Pendinmire Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645592, className: "misc_0174", name: "Rabbee Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645593, className: "misc_0175", name: "Honeybean Stinger", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645594, className: "misc_0176", name: "Fan Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645595, className: "misc_0177", name: "Honeymeli Stinger", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645596, className: "misc_0178", name: "Siaulamb Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645597, className: "misc_0179", name: "Big Siaulamb Sinew", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645598, className: "misc_0180", name: "Siaulamb Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645599, className: "misc_0181", name: "Blood Eyeball", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645600, className: "misc_0182", name: "Moyabu Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645601, className: "misc_0183", name: "Harugal Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645602, className: "misc_0184", name: "Tripede Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645603, className: "trg_crystal", name: "Resonance Crystal", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 645572, className: "misc_0154", name: "Kepo Fluff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645573, className: "misc_0155", name: "Ashrong Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645574, className: "misc_0156", name: "Yellow Yognome Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645575, className: "misc_0157", name: "Yellow Egnome Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645576, className: "misc_0158", name: "Yellow Gorgon Golem Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645577, className: "misc_0159", name: "Moyabu Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645578, className: "misc_0160", name: "Lemuria Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645579, className: "misc_0161", name: "Harugal Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645580, className: "misc_0162", name: "Socket Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645581, className: "misc_0163", name: "Elma Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645582, className: "misc_0164", name: "Hohen Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645583, className: "misc_0165", name: "Lizardman Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645584, className: "misc_0166", name: "Tama Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645585, className: "misc_0167", name: "Short Timber", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645586, className: "misc_0168", name: "Cyst Needle", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645587, className: "misc_0169", name: "Mole Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645588, className: "misc_0170", name: "Melatinun Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645589, className: "misc_0171", name: "Gribaru Drop", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645590, className: "misc_0172", name: "Siaulamb Fur Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645591, className: "misc_0173", name: "Pendinmire Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645592, className: "misc_0174", name: "Rabbee Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645593, className: "misc_0175", name: "Honeybean Stinger", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645594, className: "misc_0176", name: "Fan Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645595, className: "misc_0177", name: "Honeymeli Stinger", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645596, className: "misc_0178", name: "Siaulamb Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645597, className: "misc_0179", name: "Big Siaulamb Sinew", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645598, className: "misc_0180", name: "Siaulamb Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645599, className: "misc_0181", name: "Blood Eyeball", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645600, className: "misc_0182", name: "Moyabu Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645601, className: "misc_0183", name: "Harugal Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645602, className: "misc_0184", name: "Tripede Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645603, className: "trg_crystal", name: "Resonance Crystal", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645604, className: "misc_claymore", name: "Claymore", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 300, sellPrice: 60, minLevel: 1 }, { itemId: 645605, className: "misc_wire", name: "Wire", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 320, sellPrice: 64, minLevel: 1 }, { itemId: 645606, className: "misc_spacepiece", name: "Time Crystal", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 2000, sellPrice: 400, minLevel: 1 }, { itemId: 645607, className: "wood_05", name: "Oak", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 20, sellPrice: 4, minLevel: 1 }, -{ itemId: 645608, className: "misc_gemExpStone02", name: "Gem Abrasive: 15,500", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 645609, className: "misc_Marionette", name: "Complex Gear", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10000, sellPrice: 2000, minLevel: 1 }, -{ itemId: 645610, className: "misc_durahan", name: "Dullahan Armor Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10000, sellPrice: 2000, minLevel: 1 }, -{ itemId: 645611, className: "misc_anchor", name: "Anchor", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645612, className: "misc_velffigy", name: "Velfiggy Bead", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645613, className: "misc_glyquare", name: "Glyquare Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 60, sellPrice: 12, minLevel: 1 }, -{ itemId: 645614, className: "misc_Minos1", name: "Minos Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 96, sellPrice: 19, minLevel: 1 }, +{ itemId: 645608, className: "misc_gemExpStone02", name: "Gem Abrasive: 15,500", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExpStone02" }, +{ itemId: 645609, className: "misc_Marionette", name: "Complex Gear", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10000, sellPrice: 2000, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645610, className: "misc_durahan", name: "Dullahan Armor Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10000, sellPrice: 2000, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645611, className: "misc_anchor", name: "Anchor", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645612, className: "misc_velffigy", name: "Velfiggy Bead", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645613, className: "misc_glyquare", name: "Glyquare Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 60, sellPrice: 12, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645614, className: "misc_Minos1", name: "Minos Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 96, sellPrice: 19, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645615, className: "misc_Stoulet1", name: "Thick Chain", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 24, minLevel: 1 }, -{ itemId: 645616, className: "misc_goblin", name: "Goblin Talisman", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 22, sellPrice: 4, minLevel: 1 }, -{ itemId: 645617, className: "tree_root_mole1", name: "Mole Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1 }, -{ itemId: 645618, className: "misc_pawn1", name: "Small Demon Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1 }, +{ itemId: 645616, className: "misc_goblin", name: "Goblin Talisman", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 22, sellPrice: 4, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645617, className: "tree_root_mole1", name: "Mole Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645618, className: "misc_pawn1", name: "Small Demon Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645619, className: "misc_marblepiece", name: "Marble Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 645620, className: "misc_stone", name: "Stone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 645621, className: "misc_soil", name: "Dried Earth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, @@ -12836,120 +12836,120 @@ { itemId: 645628, className: "misc_moss", name: "Moss", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 645629, className: "misc_pebble", name: "Pebble", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 645630, className: "PILGRIM51_ITEM_09", name: "Purifier", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 10000, sellPrice: 1, minLevel: 1 }, -{ itemId: 645631, className: "card_Xpupkit01", name: "Enhancement Card Lv1", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 2000, minLevel: 1 }, -{ itemId: 645634, className: "misc_gemExpStone03", name: "Gem Abrasive: 31,000", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 645635, className: "misc_gemExpStone04", name: "Gem Abrasive: 62,000", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 645636, className: "misc_gemExpStone05", name: "Gem Abrasive: 124,000", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 645637, className: "misc_gemExpStone_randomQuest1", name: "2-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 645638, className: "misc_gemExpStone_randomQuest2", name: "3-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 645639, className: "misc_gemExpStone_randomQuest3", name: "4-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 645640, className: "misc_gemExpStone_randomQuest4", name: "5-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 645641, className: "misc_Chafperor", name: "Chafperor Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645642, className: "misc_Socket", name: "Socket Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1 }, +{ itemId: 645631, className: "card_Xpupkit01", name: "Enhancement Card Lv1", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 2000, minLevel: 1, equipExpGroup: "Card_dummy01" }, +{ itemId: 645634, className: "misc_gemExpStone03", name: "Gem Abrasive: 31,000", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExpStone03" }, +{ itemId: 645635, className: "misc_gemExpStone04", name: "Gem Abrasive: 62,000", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExpStone04" }, +{ itemId: 645636, className: "misc_gemExpStone05", name: "Gem Abrasive: 124,000", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExpStone05" }, +{ itemId: 645637, className: "misc_gemExpStone_randomQuest1", name: "2-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_randomQuest1" }, +{ itemId: 645638, className: "misc_gemExpStone_randomQuest2", name: "3-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_randomQuest2" }, +{ itemId: 645639, className: "misc_gemExpStone_randomQuest3", name: "4-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_randomQuest3" }, +{ itemId: 645640, className: "misc_gemExpStone_randomQuest4", name: "5-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_randomQuest4" }, +{ itemId: 645641, className: "misc_Chafperor", name: "Chafperor Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645642, className: "misc_Socket", name: "Socket Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 34, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645643, className: "misc_ticen_mage", name: "Magic Moss", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 5, sellPrice: 1, minLevel: 1 }, -{ itemId: 645644, className: "misc_dandel_white", name: "White Dandel Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645645, className: "misc_Rambear_brown", name: "Brown Rambear Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645646, className: "misc_Deadbornscab", name: "Deadborn Scap Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645647, className: "misc_Kepari", name: "Kepari Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645648, className: "misc_Templeslave", name: "Straw Mat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, +{ itemId: 645644, className: "misc_dandel_white", name: "White Dandel Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645645, className: "misc_Rambear_brown", name: "Brown Rambear Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645646, className: "misc_Deadbornscab", name: "Deadborn Scap Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645647, className: "misc_Kepari", name: "Kepari Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645648, className: "misc_Templeslave", name: "Straw Mat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645649, className: "misc_saltisdaughter", name: "White Chain", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 24, minLevel: 1 }, -{ itemId: 645650, className: "misc_Siaulav_blue", name: "Blue Siaulav Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645651, className: "misc_0185", name: "Green Eldigo Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645652, className: "misc_0186", name: "Red Truffle Mushroom", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645653, className: "misc_0187", name: "Pungent Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645654, className: "misc_0188", name: "Blue Spion Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645655, className: "misc_0189", name: "Gray Stoulet Tendon", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645656, className: "misc_0190", name: "Orange Siaulav Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645657, className: "misc_0191", name: "Green Hohen Mane", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645658, className: "misc_0192", name: "Green Hohen Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645659, className: "misc_0193", name: "Broken Hohen Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645660, className: "misc_0194", name: "Hohen Flag Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645661, className: "misc_0195", name: "Green Hohen Orben Crystal Sphere", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645662, className: "misc_0196", name: "Blue Wendigo Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645663, className: "misc_0197", name: "Orange Minos Hoof", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645664, className: "misc_0198", name: "Yellow Colifly Stamen", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645665, className: "misc_0199", name: "Black Colifly Stamen", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645666, className: "misc_0200", name: "Green Minos Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645667, className: "misc_0201", name: "Brown Colimen Flower", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645668, className: "misc_0202", name: "Spike", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645669, className: "misc_0203", name: "Red Infra Holder Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645670, className: "misc_0204", name: "Blue Lapasape Fangs", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645671, className: "misc_0205", name: "Blue Colimen Flower", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645672, className: "misc_0206", name: "Red Lepusbunny Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645673, className: "misc_0207", name: "Blue Cronewt Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645674, className: "misc_0208", name: "Blue Cronewt Stinger", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645675, className: "misc_0209", name: "Blue Hohen Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645676, className: "misc_0210", name: "Blue Tini Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645677, className: "misc_0211", name: "White Spion Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645678, className: "misc_0212", name: "Brown Lapasape Leaves", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645679, className: "misc_0213", name: "Red Hohen Orben Crystal Sphere", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645680, className: "misc_0214", name: "White Wendigo Bow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645681, className: "misc_0215", name: "Blue Hohen Gulak Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645682, className: "misc_0216", name: "Black Kepari Leaves", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645683, className: "misc_0217", name: "Brown Tini Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645684, className: "misc_0218", name: "Brown Tini Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645685, className: "misc_0219", name: "Blue Harugal Mane", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645686, className: "misc_0220", name: "Blue Harugal Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645687, className: "misc_0221", name: "Green Socket Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645688, className: "misc_0222", name: "Brown Stoulet Helmet Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645689, className: "misc_0223", name: "Blue Ridimed Stems", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645690, className: "misc_0224", name: "Red Straw Sheaves", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645691, className: "misc_0225", name: "Black Old Kepa Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645692, className: "misc_0226", name: "Yellow Griba Stems", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645693, className: "misc_0227", name: "Green Meduja Tentacles", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645694, className: "misc_0228", name: "Terranium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645695, className: "misc_0229", name: "Dawn Crystal Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645696, className: "misc_0230", name: "Blue Elet Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645697, className: "misc_0231", name: "Blue Nuo Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645698, className: "misc_0232", name: "Blue Nuo Sword Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645699, className: "misc_0233", name: "Blue Guardian Spider Leg", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645700, className: "misc_0234", name: "Red Socket Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645701, className: "misc_0235", name: "Red Socket Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645702, className: "misc_0236", name: "Darkness Crystal Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645703, className: "misc_0237", name: "Blue Nuka Armor Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645704, className: "misc_0238", name: "Blue Temple Slave Hood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645705, className: "misc_0239", name: "Green Tini Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645706, className: "misc_0240", name: "Red Spion Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645707, className: "misc_0241", name: "Green Tini Magician Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645708, className: "misc_0242", name: "Blue Dumaro Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645709, className: "misc_0243", name: "Blue Lepusbunny Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645710, className: "misc_0244", name: "Blue Beard", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645711, className: "misc_0245", name: "Red Elma Broken Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645712, className: "misc_0246", name: "Red Ticen Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645713, className: "misc_0247", name: "Red Nuo Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645714, className: "misc_0248", name: "Red Cockat Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645715, className: "misc_0249", name: "Red Cockat Crest", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645716, className: "misc_0250", name: "Big Red Griba Bamboo Hat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645717, className: "misc_0251", name: "Gray Winged Frog Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645718, className: "misc_0252", name: "Red Guardian Spider Eyes", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645719, className: "misc_0253", name: "Green Rafflesia Stamen", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645720, className: "misc_0254", name: "Green Rafflesia Branch", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645721, className: "misc_0255", name: "Jukotail Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645722, className: "misc_0256", name: "Jukotail Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645723, className: "misc_0257", name: "Blue Hohen Mane", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645724, className: "misc_0258", name: "Green Minos Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645725, className: "misc_0259", name: "Green Minos Jaw Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645726, className: "misc_0260", name: "Brown Nuka Armor Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645727, className: "misc_0261", name: "Corrupt Brown Lapasape Mushroom", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645728, className: "misc_0262", name: "Red Ticen Spearhead", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645729, className: "misc_0263", name: "Tough Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645730, className: "misc_0264", name: "Pincers", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645731, className: "misc_0265", name: "Yellow Dumaro Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645732, className: "misc_awakeningStone1", name: "Awakening Stone: 14 Days", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 33, sellPrice: 6, minLevel: 1 }, -{ itemId: 645733, className: "misc_0266", name: "Beeteroxia Leaves", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645734, className: "misc_0267", name: "Ferret Marauder Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645735, className: "misc_0268", name: "Ferret Marauder Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645736, className: "misc_0269", name: "Parrot Stems", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645737, className: "misc_0270", name: "Polibu Leaves", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645738, className: "misc_0271", name: "Leafnut Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645739, className: "misc_0272", name: "Loktanun Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645740, className: "misc_0273", name: "Ponpon Branch", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645741, className: "misc_0274", name: "Gosaru Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645742, className: "misc_0275", name: "Raffly Stems", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645743, className: "misc_0276", name: "Kenol Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645744, className: "misc_0277", name: "Pag Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645745, className: "misc_0278", name: "Glyphring Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645746, className: "misc_0279", name: "Ferret Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, +{ itemId: 645650, className: "misc_Siaulav_blue", name: "Blue Siaulav Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645651, className: "misc_0185", name: "Green Eldigo Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645652, className: "misc_0186", name: "Red Truffle Mushroom", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645653, className: "misc_0187", name: "Pungent Stem", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645654, className: "misc_0188", name: "Blue Spion Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645655, className: "misc_0189", name: "Gray Stoulet Tendon", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645656, className: "misc_0190", name: "Orange Siaulav Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645657, className: "misc_0191", name: "Green Hohen Mane", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645658, className: "misc_0192", name: "Green Hohen Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645659, className: "misc_0193", name: "Broken Hohen Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645660, className: "misc_0194", name: "Hohen Flag Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645661, className: "misc_0195", name: "Green Hohen Orben Crystal Sphere", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645662, className: "misc_0196", name: "Blue Wendigo Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645663, className: "misc_0197", name: "Orange Minos Hoof", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645664, className: "misc_0198", name: "Yellow Colifly Stamen", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645665, className: "misc_0199", name: "Black Colifly Stamen", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645666, className: "misc_0200", name: "Green Minos Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645667, className: "misc_0201", name: "Brown Colimen Flower", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645668, className: "misc_0202", name: "Spike", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645669, className: "misc_0203", name: "Red Infra Holder Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645670, className: "misc_0204", name: "Blue Lapasape Fangs", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645671, className: "misc_0205", name: "Blue Colimen Flower", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645672, className: "misc_0206", name: "Red Lepusbunny Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645673, className: "misc_0207", name: "Blue Cronewt Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645674, className: "misc_0208", name: "Blue Cronewt Stinger", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645675, className: "misc_0209", name: "Blue Hohen Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645676, className: "misc_0210", name: "Blue Tini Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645677, className: "misc_0211", name: "White Spion Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645678, className: "misc_0212", name: "Brown Lapasape Leaves", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645679, className: "misc_0213", name: "Red Hohen Orben Crystal Sphere", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645680, className: "misc_0214", name: "White Wendigo Bow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645681, className: "misc_0215", name: "Blue Hohen Gulak Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645682, className: "misc_0216", name: "Black Kepari Leaves", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645683, className: "misc_0217", name: "Brown Tini Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645684, className: "misc_0218", name: "Brown Tini Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645685, className: "misc_0219", name: "Blue Harugal Mane", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645686, className: "misc_0220", name: "Blue Harugal Heart", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645687, className: "misc_0221", name: "Green Socket Wing", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645688, className: "misc_0222", name: "Brown Stoulet Helmet Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645689, className: "misc_0223", name: "Blue Ridimed Stems", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645690, className: "misc_0224", name: "Red Straw Sheaves", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645691, className: "misc_0225", name: "Black Old Kepa Skin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645692, className: "misc_0226", name: "Yellow Griba Stems", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645693, className: "misc_0227", name: "Green Meduja Tentacles", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645694, className: "misc_0228", name: "Terranium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645695, className: "misc_0229", name: "Dawn Crystal Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645696, className: "misc_0230", name: "Blue Elet Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645697, className: "misc_0231", name: "Blue Nuo Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645698, className: "misc_0232", name: "Blue Nuo Sword Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645699, className: "misc_0233", name: "Blue Guardian Spider Leg", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645700, className: "misc_0234", name: "Red Socket Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645701, className: "misc_0235", name: "Red Socket Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645702, className: "misc_0236", name: "Darkness Crystal Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645703, className: "misc_0237", name: "Blue Nuka Armor Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645704, className: "misc_0238", name: "Blue Temple Slave Hood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645705, className: "misc_0239", name: "Green Tini Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645706, className: "misc_0240", name: "Red Spion Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645707, className: "misc_0241", name: "Green Tini Magician Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645708, className: "misc_0242", name: "Blue Dumaro Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645709, className: "misc_0243", name: "Blue Lepusbunny Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645710, className: "misc_0244", name: "Blue Beard", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645711, className: "misc_0245", name: "Red Elma Broken Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645712, className: "misc_0246", name: "Red Ticen Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645713, className: "misc_0247", name: "Red Nuo Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645714, className: "misc_0248", name: "Red Cockat Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645715, className: "misc_0249", name: "Red Cockat Crest", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645716, className: "misc_0250", name: "Big Red Griba Bamboo Hat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645717, className: "misc_0251", name: "Gray Winged Frog Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645718, className: "misc_0252", name: "Red Guardian Spider Eyes", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645719, className: "misc_0253", name: "Green Rafflesia Stamen", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645720, className: "misc_0254", name: "Green Rafflesia Branch", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645721, className: "misc_0255", name: "Jukotail Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645722, className: "misc_0256", name: "Jukotail Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645723, className: "misc_0257", name: "Blue Hohen Mane", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645724, className: "misc_0258", name: "Green Minos Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645725, className: "misc_0259", name: "Green Minos Jaw Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645726, className: "misc_0260", name: "Brown Nuka Armor Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645727, className: "misc_0261", name: "Corrupt Brown Lapasape Mushroom", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645728, className: "misc_0262", name: "Red Ticen Spearhead", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645729, className: "misc_0263", name: "Tough Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645730, className: "misc_0264", name: "Pincers", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645731, className: "misc_0265", name: "Yellow Dumaro Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645732, className: "misc_awakeningStone1", name: "Awakening Stone: 14 Days", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 33, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645733, className: "misc_0266", name: "Beeteroxia Leaves", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645734, className: "misc_0267", name: "Ferret Marauder Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645735, className: "misc_0268", name: "Ferret Marauder Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645736, className: "misc_0269", name: "Parrot Stems", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645737, className: "misc_0270", name: "Polibu Leaves", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645738, className: "misc_0271", name: "Leafnut Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645739, className: "misc_0272", name: "Loktanun Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645740, className: "misc_0273", name: "Ponpon Branch", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645741, className: "misc_0274", name: "Gosaru Bones", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645742, className: "misc_0275", name: "Raffly Stems", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645743, className: "misc_0276", name: "Kenol Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645744, className: "misc_0277", name: "Pag Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645745, className: "misc_0278", name: "Glyphring Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645746, className: "misc_0279", name: "Ferret Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645747, className: "misc_bombShinobi", name: "Ninjutsu Bomb", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 100, sellPrice: 60, minLevel: 1 }, { itemId: 645748, className: "misc_cape", name: "Cape", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 200, sellPrice: 200, minLevel: 1 }, { itemId: 645749, className: "misc_oldIron", name: "Scrap Iron", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, @@ -12963,281 +12963,281 @@ { itemId: 645757, className: "event_alphabet_A", name: "Alphabet A", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 645758, className: "event_alphabet_V", name: "Alphabet V", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 645759, className: "event_alphabet_I", name: "Alphabet I", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645760, className: "misc_earthTower", name: "Lv1 Earth Fragment", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645761, className: "misc_earthTower5_boss", name: "Pyroego Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645762, className: "misc_earthTower10_boss", name: "Gosarius Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645763, className: "misc_earthTower15_boss", name: "Turtai Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645764, className: "misc_earthTower20_boss", name: "G'bb Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645765, className: "misc_gemExpStone09", name: "7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645766, className: "misc_gemExpStone10", name: "8-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645768, className: "misc_awakeningStone1_test", name: "Awakening Stone: 1 Minute", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 33, sellPrice: 6, minLevel: 1 }, -{ itemId: 645769, className: "misc_earthTower_2", name: "Lv2 Earth Fragment", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645770, className: "misc_earthTower25_boss", name: "Neop Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645771, className: "misc_earthTower30_boss", name: "Organ Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645772, className: "misc_earthTower35_boss", name: "Plokste Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645773, className: "misc_earthTower40_boss", name: "Grim Reaper Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645774, className: "misc_earthTower5_toll", name: "Symbol of Pyroego", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645775, className: "misc_earthTower10_toll", name: "Symbol of Gosarius", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645776, className: "misc_earthTower15_toll", name: "Symbol of Turtai", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645777, className: "misc_earthTower20_toll", name: "Symbol of G'bb", type: "Etc", group: "Material", weight: 0, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645778, className: "Premium_itemUpgradeStone_Weapon", name: "Goddesses' Blessed Gem: Weapon", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645779, className: "Premium_itemUpgradeStone_Armor", name: "Goddesses' Blessed Gem: Armor", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645780, className: "Premium_itemUpgradeStone_Acc", name: "Goddesses' Blessed Gem: Accessory", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645781, className: "Premium_itemDissassembleStone", name: "Hammer of Dismantlement", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645782, className: "Premium_deleteTranscendStone", name: "Spell Rod", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645783, className: "misc_BlessedStone", name: "Blessed Shard", type: "Etc", group: "Material", weight: 0, maxStack: 9999999, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 645801, className: "misc_0280", name: "Black Ingot", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645802, className: "misc_0281", name: "Golden Ingot", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645803, className: "misc_0282", name: "Unknown Hide", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645804, className: "misc_0283", name: "Brown Glue", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645805, className: "misc_0284", name: "Broken Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645806, className: "misc_0285", name: "Red Strand", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645807, className: "misc_0286", name: "Red Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645808, className: "misc_0287", name: "Yellow Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645809, className: "misc_0288", name: "Purple Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, +{ itemId: 645760, className: "misc_earthTower", name: "Lv1 Earth Fragment", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645761, className: "misc_earthTower5_boss", name: "Pyroego Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645762, className: "misc_earthTower10_boss", name: "Gosarius Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645763, className: "misc_earthTower15_boss", name: "Turtai Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645764, className: "misc_earthTower20_boss", name: "G'bb Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645765, className: "misc_gemExpStone09", name: "7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "GemExpStone09" }, +{ itemId: 645766, className: "misc_gemExpStone10", name: "8-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "GemExpStone10" }, +{ itemId: 645768, className: "misc_awakeningStone1_test", name: "Awakening Stone: 1 Minute", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 33, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645769, className: "misc_earthTower_2", name: "Lv2 Earth Fragment", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645770, className: "misc_earthTower25_boss", name: "Neop Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645771, className: "misc_earthTower30_boss", name: "Organ Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645772, className: "misc_earthTower35_boss", name: "Plokste Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645773, className: "misc_earthTower40_boss", name: "Grim Reaper Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645774, className: "misc_earthTower5_toll", name: "Symbol of Pyroego", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645775, className: "misc_earthTower10_toll", name: "Symbol of Gosarius", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645776, className: "misc_earthTower15_toll", name: "Symbol of Turtai", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645777, className: "misc_earthTower20_toll", name: "Symbol of G'bb", type: "Etc", group: "Material", weight: 0, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645778, className: "Premium_itemUpgradeStone_Weapon", name: "Goddesses' Blessed Gem: Weapon", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Blessed" }, +{ itemId: 645779, className: "Premium_itemUpgradeStone_Armor", name: "Goddesses' Blessed Gem: Armor", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Blessed" }, +{ itemId: 645780, className: "Premium_itemUpgradeStone_Acc", name: "Goddesses' Blessed Gem: Accessory", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Blessed" }, +{ itemId: 645781, className: "Premium_itemDissassembleStone", name: "Hammer of Dismantlement", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Blessed" }, +{ itemId: 645782, className: "Premium_deleteTranscendStone", name: "Spell Rod", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Blessed" }, +{ itemId: 645783, className: "misc_BlessedStone", name: "Blessed Shard", type: "Etc", group: "Material", weight: 0, maxStack: 9999999, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Blessed" }, +{ itemId: 645801, className: "misc_0280", name: "Black Ingot", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645802, className: "misc_0281", name: "Golden Ingot", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645803, className: "misc_0282", name: "Unknown Hide", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645804, className: "misc_0283", name: "Brown Glue", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645805, className: "misc_0284", name: "Broken Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645806, className: "misc_0285", name: "Red Strand", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645807, className: "misc_0286", name: "Red Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645808, className: "misc_0287", name: "Yellow Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645809, className: "misc_0288", name: "Purple Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645810, className: "misc_EnchantedPowder", name: "Magic Powder", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 100, sellPrice: 0, minLevel: 1 }, { itemId: 645811, className: "misc_impurities", name: "Alchemy Residue", type: "Etc", group: "Material", weight: 10, maxStack: 32767, price: 100, sellPrice: 0, minLevel: 1 }, { itemId: 645812, className: "misc_Magicscroll", name: "Magic Scroll", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 2000, sellPrice: 0, minLevel: 1 }, -{ itemId: 645813, className: "misc_0289", name: "Red Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645814, className: "misc_0290", name: "Glossy Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645815, className: "misc_0291", name: "Plant Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645816, className: "misc_0292", name: "Peculiar Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645817, className: "misc_0293", name: "Golden Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645818, className: "misc_0294", name: "Refined Ingot", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645819, className: "misc_TruthMirror", name: "Mirror of Truth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 645820, className: "misc_BlokenMirror", name: "Crystal Fragment of Change", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, +{ itemId: 645813, className: "misc_0289", name: "Red Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645814, className: "misc_0290", name: "Glossy Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645815, className: "misc_0291", name: "Plant Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645816, className: "misc_0292", name: "Peculiar Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645817, className: "misc_0293", name: "Golden Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645818, className: "misc_0294", name: "Refined Ingot", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645819, className: "misc_TruthMirror", name: "Mirror of Truth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645820, className: "misc_BlokenMirror", name: "Crystal Fragment of Change", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 645821, className: "misc_guehangji", name: "Strange Yellow Paper", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 50, sellPrice: 2, minLevel: 1 }, -{ itemId: 645822, className: "misc_0295", name: "Akhlass's Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645823, className: "misc_0296", name: "Akhlass's Armor Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645824, className: "misc_0297", name: "Prison Fighter's Armor Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645825, className: "misc_0298", name: "Flak's Armor Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645826, className: "misc_0299", name: "Moglan Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645827, className: "misc_0300", name: "Sturdy Rondo Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645828, className: "misc_0301", name: "Ragged Butcher's Axe Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645829, className: "misc_0302", name: "Akhlass Bishop's Cloak Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645830, className: "misc_0303", name: "Akhlass Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645831, className: "misc_0304", name: "Black Shardstatue Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645832, className: "misc_0305", name: "Ragbird Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645833, className: "misc_0306", name: "Yellow Leafnut Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645834, className: "misc_0307", name: "Orange Grummer Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645835, className: "misc_0308", name: "Yellow Pyran Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645836, className: "misc_0309", name: "Blue Beetow Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645837, className: "misc_0310", name: "Green Bavon Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645838, className: "misc_0311", name: "Red Maize Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645839, className: "misc_0312", name: "Lyecorn Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645840, className: "misc_0313", name: "Tuthrycon Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645841, className: "misc_0314", name: "Mouringaka Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645842, className: "misc_0315", name: "Mourningbird Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645843, className: "misc_0316", name: "Red Slime Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645844, className: "misc_0317", name: "Red Wizard Shaman Doll Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645845, className: "misc_0318", name: "Lakhorn Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645846, className: "misc_0319", name: "Lakhof Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645847, className: "misc_0320", name: "Lakhtanon Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645848, className: "misc_0321", name: "Green Rubblem Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645849, className: "misc_0322", name: "Green Blindlem Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645850, className: "misc_0323", name: "Yellow Arma Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645851, className: "misc_0324", name: "Bunkeyto's Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645852, className: "misc_0325", name: "Nabu's Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645853, className: "misc_0326", name: "Blue Gosaru Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645854, className: "misc_0327", name: "Green Flamag Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645855, className: "misc_0328", name: "Green Wood Goblin Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645856, className: "misc_0329", name: "Horned Golem Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645857, className: "misc_0330", name: "Rhodenabean Down", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645858, className: "misc_0331", name: "Kugheri Down", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645859, className: "misc_0332", name: "Flowlevi Down", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645860, className: "misc_0333", name: "Bunkeybo Down", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645861, className: "misc_0334", name: "Nukhalong Down", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645862, className: "misc_0335", name: "Green Goblin Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645863, className: "misc_0336", name: "Blue Pag Doper Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645864, className: "misc_0337", name: "Yellow Pag Clamper Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645865, className: "misc_0338", name: "Green Pag Nurse Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645866, className: "misc_0339", name: "Yellow Pag Shearer Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645867, className: "misc_0340", name: "Kugheri Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645868, className: "misc_0341", name: "Tala Mage Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645869, className: "misc_0342", name: "Green Flamme's Broken Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645870, className: "misc_0343", name: "Green Flamme Mage's Broken Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645871, className: "misc_0344", name: "Green Flamme Archer's Broken Arrow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645872, className: "misc_0345", name: "Tala Archer's Broken Arrow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645873, className: "misc_0346", name: "Vilkas Archer's Broken Arrow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645874, className: "misc_0347", name: "Blue Pag Doper's Weapon Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645875, className: "misc_0348", name: "Yellow Pag Clamper's Weapon Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645876, className: "misc_0349", name: "Green Pag Nurse's Weapon Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645877, className: "misc_0350", name: "Yellow Pag Shearer's Weapon Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645878, className: "misc_0351", name: "Green Flak's Weapon Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645879, className: "misc_0352", name: "Green Flamil's Weapon Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645880, className: "misc_0353", name: "Akhlass's Ripped Cloth Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645881, className: "misc_0354", name: "Akhlacia Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645882, className: "misc_0355", name: "Kugheri Numani Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645883, className: "misc_0356", name: "Kugheri Balzer Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645884, className: "misc_0357", name: "Amber", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645885, className: "misc_0358", name: "Straw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645886, className: "misc_0359", name: "Green Ellomago Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645887, className: "misc_0360", name: "Bloom Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645888, className: "misc_0361", name: "Virdney Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645889, className: "misc_0362", name: "Flowlon Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645890, className: "misc_0363", name: "Blue Tanu Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645891, className: "misc_0364", name: "Flowlon Seeds", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645892, className: "misc_0365", name: "Blue Woodluwa Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645893, className: "misc_0366", name: "Rhodenabean Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645894, className: "misc_0367", name: "Rhodenag Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645895, className: "misc_0368", name: "Rhodetad Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645896, className: "misc_0369", name: "Elder Rhode Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645897, className: "misc_0370", name: "Rhodedoe Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645898, className: "misc_0371", name: "Rhodeliot Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645899, className: "misc_0372", name: "Nuttafly Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645900, className: "misc_0373", name: "Nuttabug Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645901, className: "misc_0374", name: "Rhodeyokel Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645902, className: "misc_0375", name: "Yellow Caro Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645903, className: "misc_0376", name: "Yellow Polibu Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645904, className: "misc_0377", name: "Nukhalong Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645905, className: "misc_0378", name: "Romplenuka Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645906, className: "misc_0379", name: "Vilkas Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645907, className: "misc_0380", name: "Vilkas Archer Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645908, className: "misc_0381", name: "Vilkas Assassin Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645909, className: "misc_0382", name: "Vilkas Spearman Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645910, className: "misc_0383", name: "Vilkas Fighter Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645911, className: "misc_0384", name: "Vilkas Mage Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645912, className: "misc_0385", name: "Blue Dojoru Spores", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645913, className: "misc_0386", name: "Red Glyquare Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645914, className: "misc_0387", name: "Red Anchor Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645915, className: "misc_0388", name: "Green Zolem Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645916, className: "misc_0389", name: "Green Charcoal Walker Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645917, className: "misc_0390", name: "Green Charog Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645918, className: "misc_0391", name: "Green Goblin Token", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645919, className: "misc_0392", name: "Vilkas Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645920, className: "misc_0393", name: "Red Ducky Thorns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645921, className: "misc_0394", name: "Mouringaka Spores", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645922, className: "misc_talt_event", name: "Talt [Event]", type: "Etc", group: "Material", weight: 10, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, script: { strArg: "Guild_EXP", numArg1: 20 } }, +{ itemId: 645822, className: "misc_0295", name: "Akhlass's Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645823, className: "misc_0296", name: "Akhlass's Armor Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645824, className: "misc_0297", name: "Prison Fighter's Armor Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645825, className: "misc_0298", name: "Flak's Armor Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645826, className: "misc_0299", name: "Moglan Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645827, className: "misc_0300", name: "Sturdy Rondo Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645828, className: "misc_0301", name: "Ragged Butcher's Axe Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645829, className: "misc_0302", name: "Akhlass Bishop's Cloak Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645830, className: "misc_0303", name: "Akhlass Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645831, className: "misc_0304", name: "Black Shardstatue Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645832, className: "misc_0305", name: "Ragbird Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645833, className: "misc_0306", name: "Yellow Leafnut Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645834, className: "misc_0307", name: "Orange Grummer Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645835, className: "misc_0308", name: "Yellow Pyran Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645836, className: "misc_0309", name: "Blue Beetow Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645837, className: "misc_0310", name: "Green Bavon Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645838, className: "misc_0311", name: "Red Maize Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645839, className: "misc_0312", name: "Lyecorn Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645840, className: "misc_0313", name: "Tuthrycon Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645841, className: "misc_0314", name: "Mouringaka Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645842, className: "misc_0315", name: "Mourningbird Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645843, className: "misc_0316", name: "Red Slime Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645844, className: "misc_0317", name: "Red Wizard Shaman Doll Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645845, className: "misc_0318", name: "Lakhorn Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645846, className: "misc_0319", name: "Lakhof Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645847, className: "misc_0320", name: "Lakhtanon Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645848, className: "misc_0321", name: "Green Rubblem Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645849, className: "misc_0322", name: "Green Blindlem Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645850, className: "misc_0323", name: "Yellow Arma Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645851, className: "misc_0324", name: "Bunkeyto's Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645852, className: "misc_0325", name: "Nabu's Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645853, className: "misc_0326", name: "Blue Gosaru Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645854, className: "misc_0327", name: "Green Flamag Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645855, className: "misc_0328", name: "Green Wood Goblin Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645856, className: "misc_0329", name: "Horned Golem Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645857, className: "misc_0330", name: "Rhodenabean Down", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645858, className: "misc_0331", name: "Kugheri Down", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645859, className: "misc_0332", name: "Flowlevi Down", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645860, className: "misc_0333", name: "Bunkeybo Down", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645861, className: "misc_0334", name: "Nukhalong Down", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645862, className: "misc_0335", name: "Green Goblin Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645863, className: "misc_0336", name: "Blue Pag Doper Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645864, className: "misc_0337", name: "Yellow Pag Clamper Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645865, className: "misc_0338", name: "Green Pag Nurse Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645866, className: "misc_0339", name: "Yellow Pag Shearer Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645867, className: "misc_0340", name: "Kugheri Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645868, className: "misc_0341", name: "Tala Mage Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645869, className: "misc_0342", name: "Green Flamme's Broken Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645870, className: "misc_0343", name: "Green Flamme Mage's Broken Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645871, className: "misc_0344", name: "Green Flamme Archer's Broken Arrow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645872, className: "misc_0345", name: "Tala Archer's Broken Arrow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645873, className: "misc_0346", name: "Vilkas Archer's Broken Arrow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645874, className: "misc_0347", name: "Blue Pag Doper's Weapon Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645875, className: "misc_0348", name: "Yellow Pag Clamper's Weapon Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645876, className: "misc_0349", name: "Green Pag Nurse's Weapon Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645877, className: "misc_0350", name: "Yellow Pag Shearer's Weapon Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645878, className: "misc_0351", name: "Green Flak's Weapon Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645879, className: "misc_0352", name: "Green Flamil's Weapon Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645880, className: "misc_0353", name: "Akhlass's Ripped Cloth Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645881, className: "misc_0354", name: "Akhlacia Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645882, className: "misc_0355", name: "Kugheri Numani Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645883, className: "misc_0356", name: "Kugheri Balzer Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645884, className: "misc_0357", name: "Amber", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645885, className: "misc_0358", name: "Straw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645886, className: "misc_0359", name: "Green Ellomago Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645887, className: "misc_0360", name: "Bloom Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645888, className: "misc_0361", name: "Virdney Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645889, className: "misc_0362", name: "Flowlon Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645890, className: "misc_0363", name: "Blue Tanu Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645891, className: "misc_0364", name: "Flowlon Seeds", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645892, className: "misc_0365", name: "Blue Woodluwa Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645893, className: "misc_0366", name: "Rhodenabean Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645894, className: "misc_0367", name: "Rhodenag Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645895, className: "misc_0368", name: "Rhodetad Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645896, className: "misc_0369", name: "Elder Rhode Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645897, className: "misc_0370", name: "Rhodedoe Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645898, className: "misc_0371", name: "Rhodeliot Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645899, className: "misc_0372", name: "Nuttafly Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645900, className: "misc_0373", name: "Nuttabug Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645901, className: "misc_0374", name: "Rhodeyokel Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645902, className: "misc_0375", name: "Yellow Caro Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645903, className: "misc_0376", name: "Yellow Polibu Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645904, className: "misc_0377", name: "Nukhalong Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645905, className: "misc_0378", name: "Romplenuka Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645906, className: "misc_0379", name: "Vilkas Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645907, className: "misc_0380", name: "Vilkas Archer Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645908, className: "misc_0381", name: "Vilkas Assassin Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645909, className: "misc_0382", name: "Vilkas Spearman Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645910, className: "misc_0383", name: "Vilkas Fighter Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645911, className: "misc_0384", name: "Vilkas Mage Leather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645912, className: "misc_0385", name: "Blue Dojoru Spores", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645913, className: "misc_0386", name: "Red Glyquare Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645914, className: "misc_0387", name: "Red Anchor Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645915, className: "misc_0388", name: "Green Zolem Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645916, className: "misc_0389", name: "Green Charcoal Walker Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645917, className: "misc_0390", name: "Green Charog Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645918, className: "misc_0391", name: "Green Goblin Token", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645919, className: "misc_0392", name: "Vilkas Fur", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645920, className: "misc_0393", name: "Red Ducky Thorns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645921, className: "misc_0394", name: "Mouringaka Spores", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645922, className: "misc_talt_event", name: "Talt [Event]", type: "Etc", group: "Material", weight: 10, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "GemExp_Talt01", script: { strArg: "Guild_EXP", numArg1: 20 } }, { itemId: 645923, className: "misc_emptySpellBook", name: "Empty Spellbook", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 2000, sellPrice: 2000, minLevel: 1 }, { itemId: 645924, className: "misc_brokenwheel", name: "Wheel of Judgement", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 1000, sellPrice: 40, minLevel: 1 }, -{ itemId: 645925, className: "misc_gemExpStone_randomQuest3_14d", name: "4-Star Gem Abrasive: 14 Days", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 645926, className: "misc_gemExpStone_randomQuest4_14d", name: "5-Star Gem Abrasive: 14 Days", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 645927, className: "misc_gemExpStone_randomQuest5", name: "6-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, -{ itemId: 645928, className: "misc_0395", name: "Rhodenabean Fruit", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645929, className: "misc_0396", name: "Rhodenag Thorn Vine", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645930, className: "misc_0397", name: "Rhodetad Fruit", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645931, className: "misc_0398", name: "Rhodetad Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645932, className: "misc_0399", name: "Rhodedoe Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645933, className: "misc_0400", name: "Rhodedoe Fruit", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645934, className: "misc_0401", name: "Rhodeliot's Hammer", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645935, className: "misc_0402", name: "Rhodeliot Wooden Horse", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645936, className: "misc_0403", name: "Elder Rhode Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645937, className: "misc_0404", name: "Nuttabug's Fruit", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645938, className: "misc_0405", name: "Nuttafly's Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645939, className: "misc_0406", name: "Rodejokel's Wooden Spear", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645940, className: "misc_0407", name: "Blue Pag Doper's Medicine Bottle", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645941, className: "misc_0408", name: "Yellow Pag Shearer's Weapon", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645942, className: "misc_0409", name: "Yellow Pag Clamper's Tweezer", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645943, className: "misc_0410", name: "Green Pag Nurse's Pikestaff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645944, className: "misc_0411", name: "Green Flak's Axe", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645945, className: "misc_0412", name: "Tala Mage Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645946, className: "misc_0413", name: "Green Flamme Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645947, className: "misc_0414", name: "Tala Archer's Head Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645948, className: "misc_0415", name: "Tala Battle Boss' Hammer", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645949, className: "misc_0416", name: "Green Flamme's Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645950, className: "misc_0417", name: "Green Rubblem Stone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645951, className: "misc_0418", name: "Green Bavon Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645952, className: "misc_0419", name: "Green Bavon Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645953, className: "misc_0420", name: "Green Zolem Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645954, className: "misc_0421", name: "Green Zolem Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645955, className: "misc_0422", name: "Green Flamag's Axe", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645956, className: "misc_0423", name: "Green Flamag Undamaged Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645957, className: "misc_0424", name: "Green Flamme Archer's Broken Bow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645958, className: "misc_0425", name: "Green Wood Goblin Undamaged Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645959, className: "misc_0426", name: "Orange Lakhof Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645960, className: "misc_0427", name: "Green Flamil's Weapon Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645961, className: "misc_0428", name: "Thick Rondo Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645962, className: "misc_0429", name: "Rondo Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645963, className: "misc_0430", name: "Black Shardstatue Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645964, className: "misc_0431", name: "Black Shardstatue Rope", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645965, className: "misc_0432", name: "Black Temple Slave Assassin's Dagger", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645966, className: "misc_0433", name: "Black Temple Slave's Cape", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645967, className: "misc_0434", name: "Amberdog's Cone Hat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645968, className: "misc_0435", name: "Scarecrow Scyth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645969, className: "misc_0436", name: "Straw Walker Scyth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645970, className: "misc_0437", name: "Ragbird Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645971, className: "misc_0438", name: "Ragbird Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645972, className: "misc_0439", name: "Ragged Butcher's Ring", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645973, className: "misc_0440", name: "Green Ellomago Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645974, className: "misc_0441", name: "Blue Woodluwa Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645975, className: "misc_0442", name: "Green Goblin Wizard Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645976, className: "misc_0443", name: "Green Goblin Warrior Shoulder Ornament", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645977, className: "misc_0444", name: "Green Goblin Shaman Molar", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645978, className: "misc_0445", name: "Green Goblin Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645979, className: "misc_0446", name: "Red Maize Spore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645980, className: "misc_0447", name: "Red Siaulav Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645981, className: "misc_0448", name: "Black Temple Slave's Crossbow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645982, className: "misc_0449", name: "Black Temple Slave's Glove", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645983, className: "misc_0450", name: "Lyecorn Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645984, className: "misc_0451", name: "Tuthrycon Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645985, className: "misc_0452", name: "Tuthrycon Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645986, className: "misc_0453", name: "Horned Golem Undamage Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645987, className: "misc_0454", name: "Bunkeybo Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645988, className: "misc_0455", name: "Nukhalong Antenna", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645989, className: "misc_0456", name: "Nukhalong Wrist Ornament", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645990, className: "misc_0457", name: "Black Siaulav Archer Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645991, className: "misc_0458", name: "Black Siaulav Mage Broken Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645992, className: "misc_0459", name: "Vilkas Wooden Club", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645993, className: "misc_0460", name: "Vilkas Archer's Bow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645994, className: "misc_0461", name: "Vilkas Archer's Hood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645995, className: "misc_0462", name: "Romplenuka Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645996, className: "misc_0463", name: "Romplenuka's Wrist Ornament", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645997, className: "misc_0464", name: "Vilkas Assassin's Dagger", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645998, className: "misc_0465", name: "Vilkas Assassin's Belt", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 645999, className: "misc_0466", name: "Vilkas Spearman's Weapon", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646000, className: "misc_0467", name: "Vilkas Mage Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646001, className: "misc_0468", name: "Vilkas Mage's Hood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646002, className: "misc_0469", name: "Red Slime's Chain", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646003, className: "misc_0470", name: "Red Slime's Slime", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646004, className: "misc_0471", name: "Yellow Arma Undamaged Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646005, className: "misc_0472", name: "Yellow Arma Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646006, className: "misc_0473", name: "Yellow Pyran Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646007, className: "misc_0474", name: "Dirty Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646008, className: "misc_0475", name: "Kugheri Lyoni Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646009, className: "misc_0476", name: "Kugheri Sommi Ribbon", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646010, className: "misc_0477", name: "Kugheri Sommi Tambourine", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646011, className: "misc_0478", name: "Kugheri Tot's Necklace", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646012, className: "misc_0479", name: "Kugheri Tot Fruit", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646013, className: "misc_0480", name: "Yellow Leafnut Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646014, className: "misc_0481", name: "Yellow Leafnut Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646015, className: "misc_0482", name: "Orange Grummer Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646016, className: "misc_0483", name: "Orange Grummer Antenna", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646017, className: "misc_0484", name: "Red Colimen Flower Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646018, className: "misc_0485", name: "Yellow Caro Antenna", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646019, className: "misc_0486", name: "Kugheri Numani's Hat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646020, className: "misc_0487", name: "Kugheri Numani's Bell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646021, className: "misc_0488", name: "Kugheri Zabbi's Cymbals", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646022, className: "misc_0489", name: "Kugheri Zabbi's Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646023, className: "misc_0490", name: "Kugheri Zeuni's Cloth Piece", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646024, className: "misc_0491", name: "Green Charog Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646025, className: "misc_0492", name: "Green Charog Nail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646026, className: "misc_0493", name: "Green Charcoal Walker Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646027, className: "misc_0494", name: "Green Blindlem's Moss-covered Stone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646028, className: "misc_0495", name: "Green Blindlem Teeth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646029, className: "misc_0496", name: "Cave Ravinelarva Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646030, className: "misc_0497", name: "Kugheri Balzer's Flower Basket", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646031, className: "misc_0498", name: "Kugheri Balzer's Braid", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646032, className: "misc_0499", name: "Kugheri Symbani's Sword", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646033, className: "misc_0500", name: "Kugheri Symbani's Hat Ornament", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646034, className: "misc_0501", name: "Kugheri Zeffi's Ornament", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646035, className: "misc_0502", name: "Mouringaka Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646036, className: "misc_0503", name: "Mouringaka Antenna", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646037, className: "misc_0504", name: "Nabu's Undamaged Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646038, className: "misc_0505", name: "Mourningbird Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646039, className: "misc_0506", name: "Mourningbird Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646040, className: "misc_scrollskulp", name: "Ripped Piece of Paper", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1 }, -{ itemId: 646041, className: "misc_gemExpStone09_TA", name: "Shining 7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 646042, className: "misc_gemExpStone10_TA", name: "Shining 8-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 646043, className: "card_Xpupkit01_500", name: "Enhancement Card:500", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 2000, minLevel: 1 }, +{ itemId: 645925, className: "misc_gemExpStone_randomQuest3_14d", name: "4-Star Gem Abrasive: 14 Days", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_randomQuest3" }, +{ itemId: 645926, className: "misc_gemExpStone_randomQuest4_14d", name: "5-Star Gem Abrasive: 14 Days", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_randomQuest4" }, +{ itemId: 645927, className: "misc_gemExpStone_randomQuest5", name: "6-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_randomQuest5" }, +{ itemId: 645928, className: "misc_0395", name: "Rhodenabean Fruit", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645929, className: "misc_0396", name: "Rhodenag Thorn Vine", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645930, className: "misc_0397", name: "Rhodetad Fruit", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645931, className: "misc_0398", name: "Rhodetad Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645932, className: "misc_0399", name: "Rhodedoe Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645933, className: "misc_0400", name: "Rhodedoe Fruit", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645934, className: "misc_0401", name: "Rhodeliot's Hammer", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645935, className: "misc_0402", name: "Rhodeliot Wooden Horse", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645936, className: "misc_0403", name: "Elder Rhode Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645937, className: "misc_0404", name: "Nuttabug's Fruit", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645938, className: "misc_0405", name: "Nuttafly's Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645939, className: "misc_0406", name: "Rodejokel's Wooden Spear", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645940, className: "misc_0407", name: "Blue Pag Doper's Medicine Bottle", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645941, className: "misc_0408", name: "Yellow Pag Shearer's Weapon", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645942, className: "misc_0409", name: "Yellow Pag Clamper's Tweezer", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645943, className: "misc_0410", name: "Green Pag Nurse's Pikestaff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645944, className: "misc_0411", name: "Green Flak's Axe", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645945, className: "misc_0412", name: "Tala Mage Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645946, className: "misc_0413", name: "Green Flamme Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645947, className: "misc_0414", name: "Tala Archer's Head Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645948, className: "misc_0415", name: "Tala Battle Boss' Hammer", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645949, className: "misc_0416", name: "Green Flamme's Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645950, className: "misc_0417", name: "Green Rubblem Stone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645951, className: "misc_0418", name: "Green Bavon Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645952, className: "misc_0419", name: "Green Bavon Horns", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645953, className: "misc_0420", name: "Green Zolem Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645954, className: "misc_0421", name: "Green Zolem Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645955, className: "misc_0422", name: "Green Flamag's Axe", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645956, className: "misc_0423", name: "Green Flamag Undamaged Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645957, className: "misc_0424", name: "Green Flamme Archer's Broken Bow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645958, className: "misc_0425", name: "Green Wood Goblin Undamaged Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645959, className: "misc_0426", name: "Orange Lakhof Core", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645960, className: "misc_0427", name: "Green Flamil's Weapon Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645961, className: "misc_0428", name: "Thick Rondo Shell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645962, className: "misc_0429", name: "Rondo Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645963, className: "misc_0430", name: "Black Shardstatue Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645964, className: "misc_0431", name: "Black Shardstatue Rope", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645965, className: "misc_0432", name: "Black Temple Slave Assassin's Dagger", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645966, className: "misc_0433", name: "Black Temple Slave's Cape", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645967, className: "misc_0434", name: "Amberdog's Cone Hat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645968, className: "misc_0435", name: "Scarecrow Scyth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645969, className: "misc_0436", name: "Straw Walker Scyth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645970, className: "misc_0437", name: "Ragbird Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645971, className: "misc_0438", name: "Ragbird Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645972, className: "misc_0439", name: "Ragged Butcher's Ring", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645973, className: "misc_0440", name: "Green Ellomago Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645974, className: "misc_0441", name: "Blue Woodluwa Claw", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645975, className: "misc_0442", name: "Green Goblin Wizard Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645976, className: "misc_0443", name: "Green Goblin Warrior Shoulder Ornament", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645977, className: "misc_0444", name: "Green Goblin Shaman Molar", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645978, className: "misc_0445", name: "Green Goblin Tooth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645979, className: "misc_0446", name: "Red Maize Spore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645980, className: "misc_0447", name: "Red Siaulav Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645981, className: "misc_0448", name: "Black Temple Slave's Crossbow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645982, className: "misc_0449", name: "Black Temple Slave's Glove", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645983, className: "misc_0450", name: "Lyecorn Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645984, className: "misc_0451", name: "Tuthrycon Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645985, className: "misc_0452", name: "Tuthrycon Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645986, className: "misc_0453", name: "Horned Golem Undamage Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645987, className: "misc_0454", name: "Bunkeybo Hair", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645988, className: "misc_0455", name: "Nukhalong Antenna", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645989, className: "misc_0456", name: "Nukhalong Wrist Ornament", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645990, className: "misc_0457", name: "Black Siaulav Archer Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645991, className: "misc_0458", name: "Black Siaulav Mage Broken Staff", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645992, className: "misc_0459", name: "Vilkas Wooden Club", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645993, className: "misc_0460", name: "Vilkas Archer's Bow", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645994, className: "misc_0461", name: "Vilkas Archer's Hood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645995, className: "misc_0462", name: "Romplenuka Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645996, className: "misc_0463", name: "Romplenuka's Wrist Ornament", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645997, className: "misc_0464", name: "Vilkas Assassin's Dagger", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645998, className: "misc_0465", name: "Vilkas Assassin's Belt", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 645999, className: "misc_0466", name: "Vilkas Spearman's Weapon", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646000, className: "misc_0467", name: "Vilkas Mage Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646001, className: "misc_0468", name: "Vilkas Mage's Hood", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646002, className: "misc_0469", name: "Red Slime's Chain", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646003, className: "misc_0470", name: "Red Slime's Slime", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646004, className: "misc_0471", name: "Yellow Arma Undamaged Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646005, className: "misc_0472", name: "Yellow Arma Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646006, className: "misc_0473", name: "Yellow Pyran Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646007, className: "misc_0474", name: "Dirty Cloth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646008, className: "misc_0475", name: "Kugheri Lyoni Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646009, className: "misc_0476", name: "Kugheri Sommi Ribbon", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646010, className: "misc_0477", name: "Kugheri Sommi Tambourine", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646011, className: "misc_0478", name: "Kugheri Tot's Necklace", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646012, className: "misc_0479", name: "Kugheri Tot Fruit", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646013, className: "misc_0480", name: "Yellow Leafnut Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646014, className: "misc_0481", name: "Yellow Leafnut Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646015, className: "misc_0482", name: "Orange Grummer Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646016, className: "misc_0483", name: "Orange Grummer Antenna", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646017, className: "misc_0484", name: "Red Colimen Flower Leaf", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646018, className: "misc_0485", name: "Yellow Caro Antenna", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646019, className: "misc_0486", name: "Kugheri Numani's Hat", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646020, className: "misc_0487", name: "Kugheri Numani's Bell", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646021, className: "misc_0488", name: "Kugheri Zabbi's Cymbals", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646022, className: "misc_0489", name: "Kugheri Zabbi's Mask", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646023, className: "misc_0490", name: "Kugheri Zeuni's Cloth Piece", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646024, className: "misc_0491", name: "Green Charog Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646025, className: "misc_0492", name: "Green Charog Nail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646026, className: "misc_0493", name: "Green Charcoal Walker Horn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646027, className: "misc_0494", name: "Green Blindlem's Moss-covered Stone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646028, className: "misc_0495", name: "Green Blindlem Teeth", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646029, className: "misc_0496", name: "Cave Ravinelarva Thorn", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646030, className: "misc_0497", name: "Kugheri Balzer's Flower Basket", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646031, className: "misc_0498", name: "Kugheri Balzer's Braid", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646032, className: "misc_0499", name: "Kugheri Symbani's Sword", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646033, className: "misc_0500", name: "Kugheri Symbani's Hat Ornament", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646034, className: "misc_0501", name: "Kugheri Zeffi's Ornament", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646035, className: "misc_0502", name: "Mouringaka Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646036, className: "misc_0503", name: "Mouringaka Antenna", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646037, className: "misc_0504", name: "Nabu's Undamaged Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646038, className: "misc_0505", name: "Mourningbird Tail", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646039, className: "misc_0506", name: "Mourningbird Undamaged Wings", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646040, className: "misc_scrollskulp", name: "Ripped Piece of Paper", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 48, sellPrice: 9, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646041, className: "misc_gemExpStone09_TA", name: "Shining 7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "GemExpStone09" }, +{ itemId: 646042, className: "misc_gemExpStone10_TA", name: "Shining 8-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "GemExpStone10" }, +{ itemId: 646043, className: "card_Xpupkit01_500", name: "Enhancement Card:500", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 2000, minLevel: 1, equipExpGroup: "Card_Gacha_dummy01" }, { itemId: 646044, className: "misc_0507", name: "Magnifying Glass", type: "Etc", group: "Material", weight: 1, maxStack: 999999, price: 100, sellPrice: 25, minLevel: 1 }, -{ itemId: 646045, className: "Premium_item_transcendence_Stone", name: "Goddesses' Blessed Gem", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 646046, className: "misc_gemExpStone07_TA", name: "Shining Gem Abrasive: 145,340", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 646047, className: "Team_Bat_Card_01", name: "Enhancement Card: 300 (TBL Reward)", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 646048, className: "Exp_Card_300", name: "Enhancement Card: 300", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 646045, className: "Premium_item_transcendence_Stone", name: "Goddesses' Blessed Gem", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Blessed" }, +{ itemId: 646046, className: "misc_gemExpStone07_TA", name: "Shining Gem Abrasive: 145,340", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "GemExpStone07" }, +{ itemId: 646047, className: "Team_Bat_Card_01", name: "Enhancement Card: 300 (TBL Reward)", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Card_Fish_300" }, +{ itemId: 646048, className: "Exp_Card_300", name: "Enhancement Card: 300", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Card_Fish_300" }, { itemId: 646049, className: "PVP_Misc_1", name: "GTW Battle Coin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 100000, minLevel: 1 }, -{ itemId: 646050, className: "misc_id_330_gimmick_01", name: "Red Valerijonas", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 0, minLevel: 1 }, -{ itemId: 646051, className: "misc_id_330_gimmick_02", name: "Blue Aurorapas", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 0, minLevel: 1 }, -{ itemId: 646052, className: "misc_id_330_gimmick_03", name: "Yellow Vjolulidas", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 0, minLevel: 1 }, +{ itemId: 646050, className: "misc_id_330_gimmick_01", name: "Red Valerijonas", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646051, className: "misc_id_330_gimmick_02", name: "Blue Aurorapas", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 646052, className: "misc_id_330_gimmick_03", name: "Yellow Vjolulidas", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 646053, className: "misc_0508", name: "Broken Nimrah Damsel Orb", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 25, minLevel: 1 }, { itemId: 646054, className: "misc_0509", name: "Nimrah Lancer's Spear", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 25, minLevel: 1 }, { itemId: 646055, className: "misc_0510", name: "Nimrah Soldier's Broken Rapier", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 25, minLevel: 1 }, @@ -13256,7 +13256,7 @@ { itemId: 646068, className: "guild_exp_up_lv3", name: "Guild Quest Reward Coin: Gold", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, script: { strArg: "Guild_EXP", numArg1: 400 } }, { itemId: 646069, className: "legend_card_reinforce_misc", name: "Belorb", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 1000000, sellPrice: 0, minLevel: 1 }, { itemId: 646070, className: "misc_timepiece", name: "Time Crystal Fragment", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 100, sellPrice: 0, minLevel: 1 }, -{ itemId: 646071, className: "card_Xpupkit01_100", name: "Enhancement Card: 100", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 646071, className: "card_Xpupkit01_100", name: "Enhancement Card: 100", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Card_xp_100" }, { itemId: 646072, className: "Retiarii_Net", name: "Rete", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 200, sellPrice: 0, minLevel: 1 }, { itemId: 646073, className: "Onmyoji_paper", name: "Onmyoji Paper Doll", type: "Etc", group: "Material", weight: 10, maxStack: 32767, price: 100, sellPrice: 0, minLevel: 1 }, { itemId: 646074, className: "misc_paperdoll", name: "Paper Doll", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 50, sellPrice: 0, minLevel: 1 }, @@ -13280,12 +13280,12 @@ { itemId: 647009, className: "misc_0528", name: "Royal Blade Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 25, minLevel: 1 }, { itemId: 647010, className: "misc_0529", name: "Hasisas Potion", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 25, minLevel: 1 }, { itemId: 647011, className: "misc_0530", name: "Magic Stone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 25, minLevel: 1 }, -{ itemId: 647012, className: "misc_gemExpStone_randomQuest4_14d_Team", name: "5-Star Gem Abrasive: 14 Days", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 100, sellPrice: 20, minLevel: 1 }, +{ itemId: 647012, className: "misc_gemExpStone_randomQuest4_14d_Team", name: "5-Star Gem Abrasive: 14 Days", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_randomQuest4" }, { itemId: 647013, className: "PVP_Misc_1_KOR_Reward", name: "GTW Coin [Reward]", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 100000, minLevel: 1 }, { itemId: 647014, className: "misc_0531", name: "Irredian Brooch", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 0, minLevel: 1 }, { itemId: 647015, className: "misc_0532", name: "Irredian Crystal Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 0, minLevel: 1 }, { itemId: 647016, className: "misc_0533", name: "Wings of Vaivora Coin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 0, minLevel: 1 }, -{ itemId: 647017, className: "misc_gemExpStone10_Premium", name: "Shining 8-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 647017, className: "misc_gemExpStone10_Premium", name: "Shining 8-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "GemExpStone10" }, { itemId: 647018, className: "widnium_piece_Premium", name: "Widnium Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 647019, className: "misc_bernice_coin", name: "Remnants of Bernice Coin", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 1, sellPrice: 1, minLevel: 1 }, { itemId: 647020, className: "misc_0534", name: "Med Kit", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 300, sellPrice: 5, minLevel: 1 }, @@ -13302,59 +13302,59 @@ { itemId: 647035, className: "misc_0543", name: "[Episode 11] Adventure Sprout", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 300, sellPrice: 5, minLevel: 1 }, { itemId: 647036, className: "misc_0544", name: "[Event] Popolion Badge", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 300, sellPrice: 5, minLevel: 1 }, { itemId: 647037, className: "EQUIP_RENTAL_POINT", name: "Battle Point Coin", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 647039, className: "card_Xpupkit01_500_Notrade", name: "Enhancement Card:500", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 2000, minLevel: 1 }, -{ itemId: 647042, className: "misc_gemExpStone09_Team", name: "7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 647039, className: "card_Xpupkit01_500_Notrade", name: "Enhancement Card:500", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 2000, minLevel: 1, equipExpGroup: "Card_Gacha_dummy01" }, +{ itemId: 647042, className: "misc_gemExpStone09_Team", name: "7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "GemExpStone09" }, { itemId: 647044, className: "misc_silver_gacha_mileage", name: "Demon God's Temptation Point", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 1, sellPrice: 1, minLevel: 1 }, { itemId: 647045, className: "TOSHERO_TRADE_POINT", name: "[Heroic Tale] Equipment Summon Voucher", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 647050, className: "misc_0530_1", name: "Advanced Magic Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 100, sellPrice: 25, minLevel: 1 }, -{ itemId: 647051, className: "misc_BlessedStone_1", name: "Advanced Blessed Shard", type: "Etc", group: "Material", weight: 0, maxStack: 9999999, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 649000, className: "misc_ore01", name: "Copper Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1 }, -{ itemId: 649001, className: "misc_ore02", name: "Iron Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1 }, -{ itemId: 649002, className: "misc_ore03", name: "Steel Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1 }, -{ itemId: 649003, className: "misc_ore04", name: "Titanium Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1 }, -{ itemId: 649004, className: "misc_ore05", name: "Mithril Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1 }, -{ itemId: 649005, className: "misc_ore06", name: "Orichalcum Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1 }, -{ itemId: 649006, className: "misc_ore07", name: "Ithildin Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10000, sellPrice: 2000, minLevel: 1 }, -{ itemId: 649007, className: "misc_ore08", name: "Annotation", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 775, sellPrice: 155, minLevel: 1 }, -{ itemId: 649008, className: "misc_ore09", name: "Chromite", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1 }, -{ itemId: 649009, className: "misc_ore10", name: "Phydecium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649010, className: "misc_ore11", name: "Ferinium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649011, className: "misc_ore12", name: "Portium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649012, className: "misc_ore13", name: "Andesium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649013, className: "misc_ore14", name: "Ionium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649014, className: "misc_ore15", name: "Practonium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649015, className: "misc_ore16", name: "Artilonium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649016, className: "misc_ore17", name: "Absidium Ore", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649017, className: "misc_ore18", name: "Ominous Spirit Fragment", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649018, className: "misc_ore19", name: "Ominous Spirit Piece", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649019, className: "misc_ore20", name: "Ominous Spirit Mineral", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649020, className: "misc_ore21", name: "Ominous Spirit Crystal", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649025, className: "misc_ore22", name: "Nucle Powder", type: "Etc", group: "Material", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 649026, className: "misc_ore23", name: "Sierra Powder", type: "Etc", group: "Material", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 649027, className: "misc_ore24", name: "Pheltremin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 649028, className: "misc_ore25", name: "Ulstermite", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 649029, className: "misc_ore26", name: "Velcoffer Spirit Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 649030, className: "misc_ore27", name: "Skiaclipse Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, script: { strArg: "legend_skiaclips_piece" } }, -{ itemId: 649031, className: "misc_ore23_stone", name: "Sierra Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 649037, className: "misc_ore28", name: "Litis Powder", type: "Etc", group: "Material", weight: 0, maxStack: 9999999, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 649200, className: "misc_jore01", name: "Amber", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 33, sellPrice: 6, minLevel: 1 }, -{ itemId: 649201, className: "misc_jore02", name: "Fossilized Lizard Amber", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 5000, sellPrice: 1000, minLevel: 1 }, -{ itemId: 649202, className: "misc_jore03", name: "Topaz", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 9570, sellPrice: 1914, minLevel: 1 }, -{ itemId: 649203, className: "misc_jore04", name: "Opal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 12600, sellPrice: 2520, minLevel: 1 }, -{ itemId: 649204, className: "misc_jore05", name: "Garnet", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 2375, sellPrice: 475, minLevel: 1 }, -{ itemId: 649205, className: "misc_jore06", name: "Obsidian", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10600, sellPrice: 2120, minLevel: 1 }, -{ itemId: 649206, className: "misc_jore07", name: "Peridot", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10600, sellPrice: 2120, minLevel: 1 }, -{ itemId: 649207, className: "misc_jore08", name: "Zircon", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 4500, sellPrice: 900, minLevel: 1 }, +{ itemId: 647051, className: "misc_BlessedStone_1", name: "Advanced Blessed Shard", type: "Etc", group: "Material", weight: 0, maxStack: 9999999, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Blessed" }, +{ itemId: 649000, className: "misc_ore01", name: "Copper Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649001, className: "misc_ore02", name: "Iron Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649002, className: "misc_ore03", name: "Steel Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649003, className: "misc_ore04", name: "Titanium Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649004, className: "misc_ore05", name: "Mithril Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649005, className: "misc_ore06", name: "Orichalcum Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649006, className: "misc_ore07", name: "Ithildin Ore", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10000, sellPrice: 2000, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649007, className: "misc_ore08", name: "Annotation", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 775, sellPrice: 155, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649008, className: "misc_ore09", name: "Chromite", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649009, className: "misc_ore10", name: "Phydecium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649010, className: "misc_ore11", name: "Ferinium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649011, className: "misc_ore12", name: "Portium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649012, className: "misc_ore13", name: "Andesium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649013, className: "misc_ore14", name: "Ionium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649014, className: "misc_ore15", name: "Practonium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649015, className: "misc_ore16", name: "Artilonium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649016, className: "misc_ore17", name: "Absidium Ore", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649017, className: "misc_ore18", name: "Ominous Spirit Fragment", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649018, className: "misc_ore19", name: "Ominous Spirit Piece", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649019, className: "misc_ore20", name: "Ominous Spirit Mineral", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649020, className: "misc_ore21", name: "Ominous Spirit Crystal", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649025, className: "misc_ore22", name: "Nucle Powder", type: "Etc", group: "Material", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649026, className: "misc_ore23", name: "Sierra Powder", type: "Etc", group: "Material", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649027, className: "misc_ore24", name: "Pheltremin", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649028, className: "misc_ore25", name: "Ulstermite", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649029, className: "misc_ore26", name: "Velcoffer Spirit Fragment", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649030, className: "misc_ore27", name: "Skiaclipse Feather", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc", script: { strArg: "legend_skiaclips_piece" } }, +{ itemId: 649031, className: "misc_ore23_stone", name: "Sierra Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649037, className: "misc_ore28", name: "Litis Powder", type: "Etc", group: "Material", weight: 0, maxStack: 9999999, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649200, className: "misc_jore01", name: "Amber", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 33, sellPrice: 6, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649201, className: "misc_jore02", name: "Fossilized Lizard Amber", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 5000, sellPrice: 1000, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649202, className: "misc_jore03", name: "Topaz", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 9570, sellPrice: 1914, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649203, className: "misc_jore04", name: "Opal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 12600, sellPrice: 2520, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649204, className: "misc_jore05", name: "Garnet", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 2375, sellPrice: 475, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649205, className: "misc_jore06", name: "Obsidian", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10600, sellPrice: 2120, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649206, className: "misc_jore07", name: "Peridot", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10600, sellPrice: 2120, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649207, className: "misc_jore08", name: "Zircon", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 4500, sellPrice: 900, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 649208, className: "misc_jore09", name: "Pyrite", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 80, sellPrice: 16, minLevel: 1 }, -{ itemId: 649209, className: "misc_jore10", name: "Bloodstone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 41230, sellPrice: 8246, minLevel: 1 }, +{ itemId: 649209, className: "misc_jore10", name: "Bloodstone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 41230, sellPrice: 8246, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 649210, className: "misc_jore11", name: "Cryorite", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 80, sellPrice: 0, minLevel: 1 }, { itemId: 649211, className: "misc_jore12", name: "Pyrostone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, { itemId: 649212, className: "misc_jore13", name: "Cryostone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649213, className: "misc_jore14", name: "Pyranium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649214, className: "misc_jore15", name: "Cryonium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1 }, -{ itemId: 649215, className: "misc_jore16", name: "Diamond", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 95200, sellPrice: 19040, minLevel: 1 }, -{ itemId: 649216, className: "misc_jore17", name: "Sapphire", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 39840, sellPrice: 7968, minLevel: 1 }, -{ itemId: 649217, className: "misc_jore18", name: "Ruby", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 2375, sellPrice: 475, minLevel: 1 }, +{ itemId: 649213, className: "misc_jore14", name: "Pyranium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649214, className: "misc_jore15", name: "Cryonium", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 2, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649215, className: "misc_jore16", name: "Diamond", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 95200, sellPrice: 19040, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649216, className: "misc_jore17", name: "Sapphire", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 39840, sellPrice: 7968, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649217, className: "misc_jore18", name: "Ruby", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 2375, sellPrice: 475, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 661014, className: "STARTOWER_60_1_CANDLE", name: "Faded Starlight Crystal", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 661015, className: "STARTOWER_60_1_STARSTORN_PIECE_ITEM", name: "Star Stone Crystal", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 661200, className: "WTREES_21_1_SQ_6_ITEM_C", name: "Token of the Demon Treaty", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, @@ -13374,15 +13374,15 @@ { itemId: 667191, className: "FD_STARTOWER762_STARSOUL", name: "Starlight Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, { itemId: 668137, className: "CATACOMB_80_CRYSTAL", name: "Magic Stone Fragment", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 10, sellPrice: 10, equipType1: "None", equipType2: "None", minLevel: 1 }, { itemId: 668141, className: "CORAL_44_3_SQ_80_ITEM", name: "Demon Device Fragment", type: "Quest", group: "Material", weight: 0, maxStack: 32767, price: 10, sellPrice: 10, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 680000, className: "Dungeon_Key01", name: "Raid Portal Stone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1 }, -{ itemId: 689001, className: "Dungeon_Key02", name: "Legend Raid Portal Stone", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1, script: { strArg: "SCR_Get_Legend_Raid_Key02_Arg" } }, -{ itemId: 689003, className: "Dungeon_Key04", name: "Res Sacrae Raid: Challenge One Entry Voucher", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1 }, -{ itemId: 689004, className: "Dungeon_Key01_NoTrade", name: "Raid Portal Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1 }, -{ itemId: 689005, className: "Dungeon_Key02_NoTrade", name: "Legend Raid Portal Stone (Untradable)", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1, script: { strArg: "Dungeon_Key01_NoTrade/10;GabijaCertificateCoin_215p/1;" } }, -{ itemId: 689006, className: "Dungeon_Key01_1", name: "[Lada] Raid Portal Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 10, sellPrice: 10, minLevel: 1 }, -{ itemId: 689007, className: "Dungeon_Key01_1_NoTrade", name: "[Lada] Raid Portal Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 10, sellPrice: 10, minLevel: 1 }, -{ itemId: 689008, className: "Dungeon_Key01_2", name: "[Jurate] Raid Portal Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 10, sellPrice: 10, minLevel: 1 }, -{ itemId: 689009, className: "Dungeon_Key01_2_NoTrade", name: "[Jurate] Raid Portal Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 10, sellPrice: 10, minLevel: 1 }, +{ itemId: 680000, className: "Dungeon_Key01", name: "Raid Portal Stone", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 689001, className: "Dungeon_Key02", name: "Legend Raid Portal Stone", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc", script: { strArg: "SCR_Get_Legend_Raid_Key02_Arg" } }, +{ itemId: 689003, className: "Dungeon_Key04", name: "Res Sacrae Raid: Challenge One Entry Voucher", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 689004, className: "Dungeon_Key01_NoTrade", name: "Raid Portal Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 689005, className: "Dungeon_Key02_NoTrade", name: "Legend Raid Portal Stone (Untradable)", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Dungeon_Key01_NoTrade/10;GabijaCertificateCoin_215p/1;" } }, +{ itemId: 689006, className: "Dungeon_Key01_1", name: "[Lada] Raid Portal Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 689007, className: "Dungeon_Key01_1_NoTrade", name: "[Lada] Raid Portal Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 689008, className: "Dungeon_Key01_2", name: "[Jurate] Raid Portal Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 689009, className: "Dungeon_Key01_2_NoTrade", name: "[Jurate] Raid Portal Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 10, sellPrice: 10, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 700000, className: "KQ_token_hethran_1", name: "Hethran Badge Lv1", type: "Consume", group: "Material", weight: 1, maxStack: 1, price: 100, sellPrice: 2000, minLevel: 1, script: { function: "SCR_USE_KQ_SELECT_LV_1" } }, { itemId: 700001, className: "KQ_token_hethran_2", name: "Hethran Badge Lv2", type: "Consume", group: "Material", weight: 1, maxStack: 1, price: 100, sellPrice: 2000, minLevel: 1, script: { function: "SCR_USE_KQ_SELECT_LV_2" } }, { itemId: 700002, className: "KQ_token_hethran_3", name: "Hethran Badge Lv3", type: "Consume", group: "Material", weight: 1, maxStack: 1, price: 100, sellPrice: 2000, minLevel: 9999 }, @@ -13402,9 +13402,9 @@ { itemId: 700514, className: "KQ_recipe_hethran_material_3_3", name: "Pharlam Fragment Lv3", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 2000, minLevel: 1, script: { function: "SCR_USE_KQ_SELECT_100" } }, { itemId: 700515, className: "KQ_recipe_hethran_material_2_5", name: "Plafeanpoe Lv1", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 2000, minLevel: 1, script: { function: "SCR_USE_KQ_SELECT_100" } }, { itemId: 700516, className: "KQ_recipe_hethran_material_3_5", name: "Plafeanpoe Lv2", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 2000, minLevel: 1, script: { function: "SCR_USE_KQ_SELECT_100" } }, -{ itemId: 730900, className: "Fish_Card", name: "Soaked Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 730900, className: "Fish_Card", name: "Soaked Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Card_Fish_300" }, { itemId: 810000, className: "Companion_Exchange_Ticket", name: "Baby Pig Companion Voucher", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 810003, className: "misc_gemExpStone_randomQuest4_Adv", name: "5-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, +{ itemId: 810003, className: "misc_gemExpStone_randomQuest4_Adv", name: "5-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_randomQuest4" }, { itemId: 810006, className: "Companion_Exchange_Ticket2", name: "Armadillo Companion Voucher", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 810007, className: "Companion_Exchange_Ticket3", name: "Dodo Bird Companion Voucher", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 810008, className: "Companion_Exchange_Ticket4", name: "Spotted Baby Pig Companion Voucher", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, @@ -13425,14 +13425,14 @@ { itemId: 900118, className: "Event_160818_6", name: "A", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 900119, className: "Event_160818_7", name: "VI", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 900120, className: "Event_160818_8", name: "OR", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 900126, className: "Event_160908_1", name: "Sesame", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 900127, className: "Event_160908_2", name: "Sugar", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 900128, className: "Event_160908_3", name: "Flour", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 900129, className: "Event_160908_4", name: "Chestnut", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 900144, className: "card_Xpupkit01_event", name: "Old Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 1000, minLevel: 1 }, -{ itemId: 900159, className: "Exp_Card_300_14d", name: "Enhancement Card: 300 (14 Days)", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 900160, className: "card_Xpupkit01_500_14d", name: "Enhancement Card: 500 (14 Days)", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 100, sellPrice: 2000, minLevel: 1 }, -{ itemId: 900161, className: "card_Xpupkit01_500_14d_Team", name: "Enhancement Card: 500 (14 Days)", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 100, sellPrice: 2000, minLevel: 1 }, +{ itemId: 900126, className: "Event_160908_1", name: "Sesame", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 900127, className: "Event_160908_2", name: "Sugar", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 900128, className: "Event_160908_3", name: "Flour", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 900129, className: "Event_160908_4", name: "Chestnut", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 900144, className: "card_Xpupkit01_event", name: "Old Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 1000, minLevel: 1, equipExpGroup: "Card_dummy01_Event" }, +{ itemId: 900159, className: "Exp_Card_300_14d", name: "Enhancement Card: 300 (14 Days)", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Card_Fish_300" }, +{ itemId: 900160, className: "card_Xpupkit01_500_14d", name: "Enhancement Card: 500 (14 Days)", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 100, sellPrice: 2000, minLevel: 1, equipExpGroup: "Card_Gacha_dummy01" }, +{ itemId: 900161, className: "card_Xpupkit01_500_14d_Team", name: "Enhancement Card: 500 (14 Days)", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 100, sellPrice: 2000, minLevel: 1, equipExpGroup: "Card_Gacha_dummy01" }, { itemId: 900200, className: "Event_160913_1", name: "Root Essence", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 1, minLevel: 1 }, { itemId: 900214, className: "Event_Valen_Choco_1", name: "Valentine Chocolates", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 900215, className: "Event_Valen_Choco_m_1", name: "Cocoa Powder", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, @@ -13440,7 +13440,7 @@ { itemId: 900217, className: "Event_Valen_Choco_m_3", name: "Refined Sugar", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 900218, className: "Event_Valen_Choco_m_4", name: "Chocolate Mold", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 900231, className: "Event_WhiteDay_Candy_Set", name: "Candy Basket", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, cooldownGroup: "OnionPiece_Red", cooldown: 5000, script: { function: "SCR_USE_ITEM_RANDOMNUMBER" } }, -{ itemId: 900301, className: "Event_1704_misc_gemExpStone_randomQuest4", name: "[Re:Build] 5-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1 }, +{ itemId: 900301, className: "Event_1704_misc_gemExpStone_randomQuest4", name: "[Re:Build] 5-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 20, minLevel: 1, equipExpGroup: "GemExp_randomQuest4" }, { itemId: 900302, className: "Moru_Silver_Event_1704", name: "[Level Up Event] Silver Anvil", type: "Consume", group: "Material", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, script: { strArg: "SILVER", numArg1: 3, numArg2: 3 } }, { itemId: 900340, className: "Event_Steam_Wedding_Card", name: "Invitation", type: "Etc", group: "Material", weight: 0, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 900379, className: "Event_Reinforce_100000coupon", name: "Enhancement Coupon: 100,000 Silver", type: "Etc", group: "Material", weight: 0, maxStack: 999999, price: 0, sellPrice: 1, minLevel: 1, script: { strArg: "Reinforce_100000coupon", numArg1: 100000 } }, @@ -13459,7 +13459,7 @@ { itemId: 904012, className: "EVENT_1804_ARBOR_GROW_CRYSTAL_3_4", name: "Tree Growth Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 904013, className: "EVENT_1804_ARBOR_GROW_CRYSTAL_5_6", name: "Leafy Tree Growth Crystal", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 904021, className: "Moru_Silver_Team_Trade", name: "Silver Anvil", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, script: { strArg: "SILVER", numArg1: 3, numArg2: 3 } }, -{ itemId: 904026, className: "misc_gemExpStone09_14d", name: "7 Star Gem Abrasive (14 Days)", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 904026, className: "misc_gemExpStone09_14d", name: "7 Star Gem Abrasive (14 Days)", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "GemExpStone09" }, { itemId: 904029, className: "EVENT_1805_WEDDING1_PIECE", name: "Lost Invitation Fragment", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 904044, className: "EVENT_1806_NUMBER_GAMES_HINT", name: "Hat Trick Clue", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 904051, className: "EVENT_1807_POOL_ICE", name: "[Summer Festa] Magic Ice Cube", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, @@ -13479,8 +13479,8 @@ { itemId: 904166, className: "EVENT_1906_SUMMER_FESTA_COIN", name: "[Event] Vasalos Coin", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 904178, className: "EVENT_190919_ANCIENT_COIN", name: "[Event] Ancient Coin", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 904191, className: "event1909_fullmoon_coin", name: "[Event] Full Moon Fragment", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 904220, className: "Event_card_Xpupkit10_Team_14d", name: "Lv. 10 Enhancement Card (14 Days)", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 904221, className: "Event_gemExpStone09_Team_14d", name: "7 Star Gem Abrasive (14 Days)", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 904220, className: "Event_card_Xpupkit10_Team_14d", name: "Lv. 10 Enhancement Card (14 Days)", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, +{ itemId: 904221, className: "Event_gemExpStone09_Team_14d", name: "7 Star Gem Abrasive (14 Days)", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "GemExpStone09" }, { itemId: 904226, className: "EVENT_HALLOWEENCANDY_1", name: "Sweet Treat", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1, script: { strArg: "EVENT_1910_HALLOWEEN" } }, { itemId: 904239, className: "event1912_4thAnniversary_Coin", name: "[Event] New Year Coin", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 904240, className: "event1912_TP_feather", name: "NA", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1 }, @@ -13497,8 +13497,8 @@ { itemId: 904357, className: "EVENT_2401_Newyear_Coin", name: "[2024] New Year's Token", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 904358, className: "EVENT_2404_Old_Newyear_Coin", name: "[Event] Blue Dragon Coin", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1 }, { itemId: 904361, className: "EVENT_2404_W1th_Coin", name: "W Coin", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 910002, className: "Default_Sprout", name: "Sprout", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 5, sellPrice: 1, minLevel: 1 }, -{ itemId: 910003, className: "Default_Deadplants", name: "Withered Plant", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 5, sellPrice: 1, minLevel: 1 }, +{ itemId: 910002, className: "Default_Sprout", name: "Sprout", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 5, sellPrice: 1, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 910003, className: "Default_Deadplants", name: "Withered Plant", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 5, sellPrice: 1, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 910004, className: "Zombie_Capsule", name: "Zombie Capsule", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 300, sellPrice: 5, minLevel: 1 }, { itemId: 1420041, className: "Ancient_CardBook_Choice", name: "Assister Card Album : Select", type: "Consume", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1, script: { function: "SCR_USE_ANCIENT_CARDBOOK", strArg: "reward_ancient/reward_type1", numArg1: 1 } }, { itemId: 1420042, className: "Ancient_CardBook_ALL", name: "Assister Card Album", type: "Consume", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1, script: { function: "SCR_USE_ANCIENT_CARDBOOK", strArg: "reward_ancient/reward_type1", numArg1: 5 } }, @@ -13523,9 +13523,9 @@ { itemId: 10000023, className: "EVENT_2006_ticket", name: "[SummerFesta] Food Voucher", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, { itemId: 10000024, className: "EVENT_2006_Fish", name: "[Event] Watermelon Fish", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, { itemId: 10000028, className: "EVENT_Flex_Gold_Moneybag", name: "[Event] FLEX Pouch", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, -{ itemId: 10000052, className: "Event_gemExpStone09_1", name: "[FLEX BOX] 7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10000053, className: "Event_gemExpStone09_2", name: "[Goddess' Roulette] 7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10000054, className: "Event_gemExpStone09_3", name: "[Event] 7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10000052, className: "Event_gemExpStone09_1", name: "[FLEX BOX] 7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone09" }, +{ itemId: 10000053, className: "Event_gemExpStone09_2", name: "[Goddess' Roulette] 7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone09" }, +{ itemId: 10000054, className: "Event_gemExpStone09_3", name: "[Event] 7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone09" }, { itemId: 10000074, className: "Event_2007_Lucky_ticket", name: "[Event] Lucky Ticket", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, { itemId: 10000075, className: "EVENT_2006_Fish_Yellow", name: "[Event] Yellow Watermelon Fish", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, { itemId: 10000076, className: "EVENT_2007_MATSURI_TICKET", name: "[Event] Matsuri Ticket", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, @@ -13537,21 +13537,21 @@ { itemId: 10000135, className: "EVENT_2010_Halloween_Costume_Ticket", name: "Permanent Costume Exchange Voucher", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, { itemId: 10000137, className: "Event_LevelUP_Jewel", name: "[Event] Growth Gem", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, { itemId: 10000152, className: "EVENT_2010_Yuja_Fish", name: "[Event] Citron Fish", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, -{ itemId: 10000201, className: "misc_gemExpStone10_Ev_200", name: "[1st Anniversary] 8-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10000215, className: "misc_gemExpStone10_Ev2", name: "[Yak Mambo] 8-Star Gem Abrasive ", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10000217, className: "misc_gemExpStone12_Ev1", name: "[Yak Mambo] Lv.10 Gem Abrasive ", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10000389, className: "Event_gemExpStone09_13", name: "[FLEX BOX] 7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10000398, className: "Event_gemExpStone09_205", name: "[Attendance] 7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10000201, className: "misc_gemExpStone10_Ev_200", name: "[1st Anniversary] 8-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone10" }, +{ itemId: 10000215, className: "misc_gemExpStone10_Ev2", name: "[Yak Mambo] 8-Star Gem Abrasive ", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone10" }, +{ itemId: 10000217, className: "misc_gemExpStone12_Ev1", name: "[Yak Mambo] Lv.10 Gem Abrasive ", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone12" }, +{ itemId: 10000389, className: "Event_gemExpStone09_13", name: "[FLEX BOX] 7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone09" }, +{ itemId: 10000398, className: "Event_gemExpStone09_205", name: "[Attendance] 7-Star Gem Abrasive", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "GemExpStone09" }, { itemId: 10000613, className: "Event_2207_Unity", name: "[Harmony] Harmony Coin", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, { itemId: 10000623, className: "Event_2212_Snow_Key", name: "[Event] Snowflake Key", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, { itemId: 10000627, className: "Tos_Event_Coin", name: "TOS Coin", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 1, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "EVENT_TOS_WHOLE_TOTAL_COIN", numArg1: 1 } }, { itemId: 10000636, className: "EVENT_W_MOON_COIN", name: "[Event] Full Moon Coin", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 300, sellPrice: 5, equipType1: "None", minLevel: 1 }, { itemId: 10003005, className: "Event_2003_WhiteDay_Candy_Set", name: "Kedora Candy Set", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, { itemId: 10003044, className: "Moru_Evnet_Bamboo_Leaf", name: "[Event] Bamboo Leaves Anvil", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { numArg1: 3, numArg2: 3 } }, -{ itemId: 10003174, className: "card_Xpupkit10_Event_1", name: "[Attendance] Lv.10 Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10003229, className: "card_Xpupkit10_Event_3", name: "[Fishing] Lv 10 Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10003432, className: "card_Xpupkit10_Event_205", name: "[Attendance] Lv.10 Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, -{ itemId: 10003547, className: "card_Xpupkit10_Achieve_1", name: "[Event] Lv 10 Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, +{ itemId: 10003174, className: "card_Xpupkit10_Event_1", name: "[Attendance] Lv.10 Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, +{ itemId: 10003229, className: "card_Xpupkit10_Event_3", name: "[Fishing] Lv 10 Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, +{ itemId: 10003432, className: "card_Xpupkit10_Event_205", name: "[Attendance] Lv.10 Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, +{ itemId: 10003547, className: "card_Xpupkit10_Achieve_1", name: "[Event] Lv 10 Enhancement Card", type: "Etc", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Lv10_Card_TP" }, { itemId: 10003571, className: "Event_Roulette_Coin_3", name: "[Event] Goddess’ Roulette Coin", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, { itemId: 10003581, className: "Event_Roulette_Coin_4", name: "[Event] Goddess’ Costume Roulette Ticket", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, { itemId: 10003647, className: "Event_Roulette_Coin_5", name: "[Event] Goddess’ Roulette Coin", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1 }, @@ -13626,27 +13626,27 @@ { itemId: 10010109, className: "Moru_Event_Gold_206", name: "[Watermelon Fishing] Golden Anvil", type: "Consume", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "gold_Moru", numArg1: 3, numArg2: 3 } }, { itemId: 10010110, className: "Moru_Ruby_event_206", name: "[Watermelon Fishing] Ruby Anvil", type: "Consume", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "unique_gold_Moru", numArg1: 3, numArg2: 3 } }, { itemId: 10010111, className: "Extract_kit_Gold_Team_206", name: "[Watermelon Fishing] Golden Ichor Extraction Kit", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Extract_kit_Gold" } }, -{ itemId: 10010114, className: "misc_reinforce_percentUp_460_Event_32", name: "[Relic] [Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 460 } }, -{ itemId: 10010115, className: "misc_Enchant_460_Event_32", name: "[Relic] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Enchant", numArg1: 460 } }, -{ itemId: 10010116, className: "misc_Engrave_460_NoTrade_Event_32", name: "[Relic] [Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, -{ itemId: 10010123, className: "misc_reinforce_percentUp_460_Event_33", name: "[Rabbit] [Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 460 } }, -{ itemId: 10010124, className: "misc_Enchant_460_Event_33", name: "[Rabbit] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Enchant", numArg1: 460 } }, -{ itemId: 10010125, className: "misc_Engrave_460_NoTrade_Event_33", name: "[Rabbit] [Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, -{ itemId: 10010129, className: "misc_reinforce_percentUp_460_Event_34", name: "[Halloween] [Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 460 } }, -{ itemId: 10010130, className: "misc_Enchant_460_Event_34", name: "[Halloween] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Enchant", numArg1: 460 } }, -{ itemId: 10010131, className: "misc_Engrave_460_NoTrade_Event_34", name: "[Halloween] [Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, -{ itemId: 10010136, className: "misc_reinforce_percentUp_460_Event_37", name: "[Toasty] [Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 460 } }, -{ itemId: 10010137, className: "misc_Enchant_460_Event_37", name: "[Toasty] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Enchant", numArg1: 460 } }, -{ itemId: 10010138, className: "misc_Engrave_460_NoTrade_Event_37", name: "[Toasty] [Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, -{ itemId: 10010141, className: "misc_reinforce_percentUp_460_Event_38", name: "[Stamp] [Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 460 } }, -{ itemId: 10010142, className: "misc_Enchant_460_Event_38", name: "[Stamp] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Enchant", numArg1: 460 } }, -{ itemId: 10010143, className: "misc_Engrave_460_NoTrade_Event_38", name: "[Stamp] [Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, -{ itemId: 10010146, className: "misc_reinforce_percentUp_460_Event_39", name: "[6th] [Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 460 } }, -{ itemId: 10010147, className: "misc_Enchant_460_Event_39", name: "[6th] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Enchant", numArg1: 460 } }, -{ itemId: 10010148, className: "misc_Engrave_460_NoTrade_Event_39", name: "[6th] [Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, -{ itemId: 10010151, className: "misc_reinforce_percentUp_460_Event_41", name: "[Berk's Visit] [Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 460 } }, -{ itemId: 10010152, className: "misc_Enchant_460_Event_41", name: "[Berk's Visit] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Enchant", numArg1: 460 } }, -{ itemId: 10010153, className: "misc_Engrave_460_NoTrade_Event_41", name: "[Berk's Visit] [Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, +{ itemId: 10010114, className: "misc_reinforce_percentUp_460_Event_32", name: "[Relic] [Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 460 } }, +{ itemId: 10010115, className: "misc_Enchant_460_Event_32", name: "[Relic] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Enchant", numArg1: 460 } }, +{ itemId: 10010116, className: "misc_Engrave_460_NoTrade_Event_32", name: "[Relic] [Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, +{ itemId: 10010123, className: "misc_reinforce_percentUp_460_Event_33", name: "[Rabbit] [Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 460 } }, +{ itemId: 10010124, className: "misc_Enchant_460_Event_33", name: "[Rabbit] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Enchant", numArg1: 460 } }, +{ itemId: 10010125, className: "misc_Engrave_460_NoTrade_Event_33", name: "[Rabbit] [Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, +{ itemId: 10010129, className: "misc_reinforce_percentUp_460_Event_34", name: "[Halloween] [Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 460 } }, +{ itemId: 10010130, className: "misc_Enchant_460_Event_34", name: "[Halloween] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Enchant", numArg1: 460 } }, +{ itemId: 10010131, className: "misc_Engrave_460_NoTrade_Event_34", name: "[Halloween] [Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, +{ itemId: 10010136, className: "misc_reinforce_percentUp_460_Event_37", name: "[Toasty] [Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 460 } }, +{ itemId: 10010137, className: "misc_Enchant_460_Event_37", name: "[Toasty] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Enchant", numArg1: 460 } }, +{ itemId: 10010138, className: "misc_Engrave_460_NoTrade_Event_37", name: "[Toasty] [Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, +{ itemId: 10010141, className: "misc_reinforce_percentUp_460_Event_38", name: "[Stamp] [Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 460 } }, +{ itemId: 10010142, className: "misc_Enchant_460_Event_38", name: "[Stamp] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Enchant", numArg1: 460 } }, +{ itemId: 10010143, className: "misc_Engrave_460_NoTrade_Event_38", name: "[Stamp] [Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, +{ itemId: 10010146, className: "misc_reinforce_percentUp_460_Event_39", name: "[6th] [Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 460 } }, +{ itemId: 10010147, className: "misc_Enchant_460_Event_39", name: "[6th] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Enchant", numArg1: 460 } }, +{ itemId: 10010148, className: "misc_Engrave_460_NoTrade_Event_39", name: "[6th] [Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, +{ itemId: 10010151, className: "misc_reinforce_percentUp_460_Event_41", name: "[Berk's Visit] [Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 460 } }, +{ itemId: 10010152, className: "misc_Enchant_460_Event_41", name: "[Berk's Visit] [Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Enchant", numArg1: 460 } }, +{ itemId: 10010153, className: "misc_Engrave_460_NoTrade_Event_41", name: "[Berk's Visit] [Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, { itemId: 10021005, className: "Tuto_Extract_kit_silver_Team", name: "[Tutorial] Silver Ichor Extraction Kit", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Tuto_Extract_kit_silver_Team" } }, { itemId: 10021006, className: "Tuto_Extract_kit_Gold_Team", name: "[Tutorial] Golden Ichor Free Extraction Kit", type: "Etc", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Tuto_Extract_kit_Gold_Team" } }, { itemId: 10600012, className: "Event_Sandra_Glass_3", name: "[Goddess' Roulette] Sandra's Magnifier", type: "Consume", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Sandra_Glass" } }, @@ -13742,21 +13742,21 @@ { itemId: 10600212, className: "Premium_Sandra_Glass_1line_41", name: "[Berk's Visit] [Lv.460] Sandra's Detailed Magnifier", type: "Consume", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Sandra_Glass_1line", numArg1: 460 } }, { itemId: 10600213, className: "Premium_Master_Glass_41", name: "[Berk's Visit] [Lv.460] Artisan Magnifier", type: "Consume", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Master_Glass", numArg1: 460 } }, { itemId: 10600214, className: "Premium_Mystic_Glass_41", name: "[Berk's Visit] [Lv.460] Mysterious Magnifier", type: "Consume", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { strArg: "Mystic_Glass", numArg1: 460 } }, -{ itemId: 11030031, className: "misc_darkiron", name: "Dark Steel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 1000000, sellPrice: 100000, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11030031, className: "misc_darkiron", name: "Dark Steel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 1000000, sellPrice: 100000, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11030032, className: "what_1", name: "What's This 1", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Legenda" } }, { itemId: 11030034, className: "what_2", name: "What's This 2", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Luciferi" } }, -{ itemId: 11030137, className: "misc_Enchant_460", name: "[Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030138, className: "misc_Premium_reinforce_percentUp_460", name: "Premium Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "reinforce_premium_percentUp", numArg1: 460 } }, -{ itemId: 11030139, className: "misc_reinforce_percentUp_460", name: "[Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030140, className: "misc_Ether_Gem_Socket_460", name: "[Lv.460] Aether Gem Socket Key", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030141, className: "misc_Ether_Gem_Socket_460_NoTrade", name: "[Lv.460] Aether Gem Socket Key (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Ether_Gem_Socket", numArg1: 460 } }, +{ itemId: 11030137, className: "misc_Enchant_460", name: "[Lv.460] Goddess Enchant Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030138, className: "misc_Premium_reinforce_percentUp_460", name: "Premium Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_premium_percentUp", numArg1: 460 } }, +{ itemId: 11030139, className: "misc_reinforce_percentUp_460", name: "[Lv.460] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030140, className: "misc_Ether_Gem_Socket_460", name: "[Lv.460] Aether Gem Socket Key", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030141, className: "misc_Ether_Gem_Socket_460_NoTrade", name: "[Lv.460] Aether Gem Socket Key (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Ether_Gem_Socket", numArg1: 460 } }, { itemId: 11030142, className: "misc_Ether_Gem_Socket_460_NoTrade_recipe", name: "[Lv.460] Aether Gem Socket Key (Untradable) Recipe", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_ETHER_GEM_SOCKET_OPEN_MISC", strArg: "misc_vasilisa_NoTrade/misc_Ether_Gem_Socket_460_NoTrade/1", numArg1: 3 } }, -{ itemId: 11030172, className: "misc_Engrave_460", name: "[Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030173, className: "misc_Engrave_460_NoTrade", name: "[Lv.460] Engrave Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, -{ itemId: 11030175, className: "misc_Enchant_460_NoTrade", name: "[Lv.460] Goddess Enchant Jewel (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Enchant", numArg1: 460 } }, -{ itemId: 11030177, className: "misc_reinforce_percentUp_460_NoTrade", name: "[Lv.460] Enhance Aid (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 460 } }, -{ itemId: 11030184, className: "misc_Evolve_misc_460", name: "[Lv.460] Evolution Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Evolve" } }, -{ itemId: 11030185, className: "misc_Evolve_misc_460_NoTrade", name: "[Lv.460] Evolution Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Evolve", numArg1: 460, numArg2: 5 } }, +{ itemId: 11030172, className: "misc_Engrave_460", name: "[Lv.460] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030173, className: "misc_Engrave_460_NoTrade", name: "[Lv.460] Engrave Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Engrave", numArg1: 460, numArg2: 5 } }, +{ itemId: 11030175, className: "misc_Enchant_460_NoTrade", name: "[Lv.460] Goddess Enchant Jewel (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Enchant", numArg1: 460 } }, +{ itemId: 11030177, className: "misc_reinforce_percentUp_460_NoTrade", name: "[Lv.460] Enhance Aid (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 460 } }, +{ itemId: 11030184, className: "misc_Evolve_misc_460", name: "[Lv.460] Evolution Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Evolve" } }, +{ itemId: 11030185, className: "misc_Evolve_misc_460_NoTrade", name: "[Lv.460] Evolution Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Evolve", numArg1: 460, numArg2: 5 } }, { itemId: 11030189, className: "Premium_Mystic_Glass_460", name: "[Lv.460] Mysterious Magnifier", type: "Consume", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Mystic_Glass", numArg1: 460 } }, { itemId: 11030190, className: "Premium_Master_Glass_460", name: "[Lv.460] Artisan Magnifier", type: "Consume", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Master_Glass", numArg1: 460 } }, { itemId: 11030191, className: "Premium_Sandra_Glass_460", name: "[Lv.460] Sandra's Magnifier", type: "Consume", group: "Material", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Sandra_Glass", numArg1: 460 } }, @@ -13802,8 +13802,8 @@ { itemId: 11035670, className: "SEASONLETICIA_GabijaCertificateCoin_10000p", name: "Goddess Token (Gabija): 10,000", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 10000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "GabijaCertificate", numArg1: 10000 } }, { itemId: 11035672, className: "SEASONLETICIA_misc_pvp_mine2_NotLimit_1000", name: "Mercenary Badge : 1000", type: "Consume", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "misc_pvp_mine2_NotLimit_USE", numArg1: 1000 } }, { itemId: 11035673, className: "SEASONLETICIA_GabijaCertificateCoin_1000p", name: "Goddess Token (Gabija): 1,000", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 1000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "GabijaCertificate", numArg1: 1000 } }, -{ itemId: 11035676, className: "misc_reinforce_percentUp_480", name: "[Lv.480] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11035677, className: "misc_reinforce_percentUp_480_NoTrade", name: "[Lv.480] Enhance Aid (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 480 } }, +{ itemId: 11035676, className: "misc_reinforce_percentUp_480", name: "[Lv.480] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11035677, className: "misc_reinforce_percentUp_480_NoTrade", name: "[Lv.480] Enhance Aid (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 480 } }, { itemId: 11200006, className: "pharmacy_recipe_470", name: "[Lv.470] Faint Arcanum Formula", type: "Consume", group: "Material", weight: 1, maxStack: 1, price: 0, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ACTIVATED_PHARMACY_RECIPE", strArg: "pharmacy_recipe", numArg1: 470 } }, { itemId: 11200007, className: "pharmacy_material_A1_470", name: "[Lv.470] Crimson Bloodstone - D4W1", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "pharmacy_material", numArg1: 470 } }, { itemId: 11200008, className: "pharmacy_material_A2_470", name: "[Lv.470] Amber Bloodstone - D4S1", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "pharmacy_material", numArg1: 470 } }, @@ -13833,8 +13833,8 @@ { itemId: 11200032, className: "pharmacy_material_D2_470", name: "[Lv.470] Mana Crystal Powder - D1", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "pharmacy_material", numArg1: 470 } }, { itemId: 11200033, className: "pharmacy_material_D3_470", name: "[Lv.470] Demonic Golden Shard - S1", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "pharmacy_material", numArg1: 470 } }, { itemId: 11200034, className: "pharmacy_material_D4_470", name: "[Lv.470] Deadly Poisonous Claw Mushroom - W1", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "pharmacy_material", numArg1: 470 } }, -{ itemId: 11200047, className: "misc_reinforce_percentUp_470", name: "[Lv.470] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200048, className: "misc_reinforce_percentUp_470_NoTrade", name: "[Lv.470] Enhance Aid (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 470 } }, +{ itemId: 11200047, className: "misc_reinforce_percentUp_470", name: "[Lv.470] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200048, className: "misc_reinforce_percentUp_470_NoTrade", name: "[Lv.470] Enhance Aid (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 470 } }, { itemId: 11200049, className: "Pharmacy_470_Counteractive_1", name: "[Lv.470] LR Toxic Neutralizer", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "pharmacy_counteractive", numArg1: 470 } }, { itemId: 11200050, className: "Pharmacy_470_Counteractive_2", name: "[Lv.470] NR Toxic Neutralizer", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "pharmacy_counteractive", numArg1: 470 } }, { itemId: 11200051, className: "Pharmacy_470_Counteractive_3", name: "[Lv.470] HR Toxic Neutralizer", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "pharmacy_counteractive", numArg1: 470 } }, @@ -13844,11 +13844,11 @@ { itemId: 11200065, className: "Pharmacy_470_Counteractive_1_tutorial", name: "[Tutorial] LR Toxic Neutralizer", type: "Etc", group: "Material", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "pharmacy_counteractive_tutorial", numArg1: 470 } }, { itemId: 11200066, className: "Pharmacy_470_Counteractive_3_NoTrade", name: "[Lv.470] HR Toxic Neutralizer (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "pharmacy_counteractive", numArg1: 470 } }, { itemId: 11200068, className: "pharmacy_recipe_470_NoTrade", name: "[Lv.470] Faint Arcanum Formula (TradeX)", type: "Consume", group: "Material", weight: 1, maxStack: 1, price: 0, sellPrice: 100, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ACTIVATED_PHARMACY_RECIPE", strArg: "pharmacy_recipe", numArg1: 470 } }, -{ itemId: 11200071, className: "misc_Engrave_470", name: "[Lv.470] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200072, className: "misc_Engrave_470_NoTrade", name: "[Lv.470] Engrave Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Engrave", numArg1: 470, numArg2: 5 } }, +{ itemId: 11200071, className: "misc_Engrave_470", name: "[Lv.470] Engrave Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200072, className: "misc_Engrave_470_NoTrade", name: "[Lv.470] Engrave Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Engrave", numArg1: 470, numArg2: 5 } }, { itemId: 11200096, className: "pilgrim_TrialsStone", name: "[Lv.470] Stone of Trial", type: "Consume", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 470 } }, -{ itemId: 11200153, className: "misc_Evolve_misc_480", name: "[Lv.480] Evolution Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Evolve", numArg1: 480 } }, -{ itemId: 11200154, className: "misc_Evolve_misc_480_NoTrade", name: "[Lv.480] Evolution Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Evolve", numArg1: 480, numArg2: 5 } }, +{ itemId: 11200153, className: "misc_Evolve_misc_480", name: "[Lv.480] Evolution Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Evolve", numArg1: 480 } }, +{ itemId: 11200154, className: "misc_Evolve_misc_480_NoTrade", name: "[Lv.480] Evolution Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Evolve", numArg1: 480, numArg2: 5 } }, { itemId: 11200155, className: "VakarineCertificateCoin_1p", name: "Goddess Token (Vakarine) : 1", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 1000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "VakarineCertificate", numArg1: 1 } }, { itemId: 11200156, className: "VakarineCertificateCoin_100p", name: "Goddess Token (Vakarine) : 100", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 100000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "VakarineCertificate", numArg1: 100 } }, { itemId: 11200157, className: "VakarineCertificateCoin_1000p", name: "Goddess Token (Vakarine) : 1,000", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 1000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "VakarineCertificate", numArg1: 1000 } }, @@ -13856,8 +13856,8 @@ { itemId: 11200159, className: "VakarineCertificateCoin_10000p", name: "Goddess Token (Vakarine) : 10,000", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 10000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "VakarineCertificate", numArg1: 10000 } }, { itemId: 11200160, className: "VakarineCertificateCoin_50000p", name: "Goddess Token (Vakarine) : 50,000", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 50000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "VakarineCertificate", numArg1: 50000 } }, { itemId: 11200161, className: "dummy_VakarineCertificate", name: "Goddess Token (Vakarine)", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 1, sellPrice: 1, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200163, className: "misc_Ether_Gem_Socket_480", name: "[Lv.480] Aether Gem Socket Key", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200164, className: "misc_Ether_Gem_Socket_480_NoTrade", name: "[Lv.480] Aether Gem Socket Key (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Ether_Gem_Socket", numArg1: 480 } }, +{ itemId: 11200163, className: "misc_Ether_Gem_Socket_480", name: "[Lv.480] Aether Gem Socket Key", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200164, className: "misc_Ether_Gem_Socket_480_NoTrade", name: "[Lv.480] Aether Gem Socket Key (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Ether_Gem_Socket", numArg1: 480 } }, { itemId: 11200165, className: "misc_Ether_Gem_Socket_480_NoTrade_recipe", name: "[Lv.480] Aether Gem Socket Key (Untradable) Recipe", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_ETHER_GEM_SOCKET_OPEN_MISC2", strArg: "misc_transmutationSpreader_NoTrade/50;misc_BlessedStone/200" } }, { itemId: 11200170, className: "Goddess_fragments_vakarineA", name: "Vakarine's First Authority", type: "Consume", group: "Material", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_COLLECTION_GET_NO_CONSUME_ITEM", strArg: "COLLECT_318" } }, { itemId: 11200171, className: "Goddess_fragments_vakarineB", name: "Vakarine's Second Authority", type: "Consume", group: "Material", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_COLLECTION_GET_NO_CONSUME_ITEM", strArg: "COLLECT_318" } }, @@ -13871,8 +13871,8 @@ { itemId: 11200301, className: "RadaCertificateCoin_10000p", name: "Goddess Token (Lada): 10,000", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 10000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "RadaCertificate", numArg1: 10000 } }, { itemId: 11200302, className: "RadaCertificateCoin_50000p", name: "Goddess Token (Lada): 50,000", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 50000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "RadaCertificate", numArg1: 50000 } }, { itemId: 11200303, className: "dummy_RadaCertificate", name: "Goddess Token (Lada)", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 1, sellPrice: 1, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200304, className: "misc_Evolve_misc_500", name: "[Lv.500] Evolution Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Evolve", numArg1: 500 } }, -{ itemId: 11200305, className: "misc_Evolve_misc_500_NoTrade", name: "[Lv.500] Evolution Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Evolve", numArg1: 500, numArg2: 5 } }, +{ itemId: 11200304, className: "misc_Evolve_misc_500", name: "[Lv.500] Evolution Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Evolve", numArg1: 500 } }, +{ itemId: 11200305, className: "misc_Evolve_misc_500_NoTrade", name: "[Lv.500] Evolution Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Evolve", numArg1: 500, numArg2: 5 } }, { itemId: 11200314, className: "misc_Ether_Gem_Socket_500_NoTrade_recipe", name: "[Lv.500] Aether Gem Socket Key (Untradable) Recipe", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 100, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_ETHER_GEM_SOCKET_OPEN_MISC2", strArg: "misc_upinis_wing_NoTrade/50;misc_BlessedStone_1/200" } }, { itemId: 11200331, className: "misc_collect_ep15_2_1", name: "Stranger's Cakram", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 1, sellPrice: 25, equipType1: "None", equipType2: "None", minLevel: 1 }, { itemId: 11200332, className: "misc_collect_ep15_2_2", name: "Stranger's One-handed Spear", type: "Etc", group: "Material", weight: 1, maxStack: 1, price: 1, sellPrice: 25, equipType1: "None", equipType2: "None", minLevel: 1 }, @@ -13880,23 +13880,23 @@ { itemId: 11200334, className: "rada_armor_crystal_500", name: "[Lv.500] Lada's Magic Crystal", type: "Consume", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_consume_rada_armor_crystal", strArg: "rada_option_armor_box_500/1", numArg1: 10 } }, { itemId: 11200335, className: "rada_icor_crystal_500", name: "[Lv.500] Mystic Ichor Crystal", type: "Consume", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_consume_rada_icor_crystal_500", strArg: "rada_bless_icor_weapon_box3/1", numArg1: 10 } }, { itemId: 11200350, className: "RadaCertificateCoin_1000000p", name: "Goddess Token (Lada): 1,000,000", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 10000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "RadaCertificate", numArg1: 1000000 } }, -{ itemId: 11201030, className: "misc_reinforce_percentUp_490", name: "[Lv.490] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11201031, className: "misc_reinforce_percentUp_490_NoTrade", name: "[Lv.490] Enhance Aid (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 490 } }, -{ itemId: 11201039, className: "common_skill_enchant_jewal_480", name: "[Lv.480] Skill Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "common_skill_enchant_jewal", numArg1: 480 } }, -{ itemId: 11201055, className: "misc_Ether_Gem_Socket_500_NoTrade", name: "[Lv.500] Aether Gem Socket Key (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Ether_Gem_Socket", numArg1: 500 } }, +{ itemId: 11201030, className: "misc_reinforce_percentUp_490", name: "[Lv.490] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11201031, className: "misc_reinforce_percentUp_490_NoTrade", name: "[Lv.490] Enhance Aid (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 490 } }, +{ itemId: 11201039, className: "common_skill_enchant_jewal_480", name: "[Lv.480] Skill Jewel", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "common_skill_enchant_jewal", numArg1: 480 } }, +{ itemId: 11201055, className: "misc_Ether_Gem_Socket_500_NoTrade", name: "[Lv.500] Aether Gem Socket Key (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Ether_Gem_Socket", numArg1: 500 } }, { itemId: 11201056, className: "Goddess_fragments_radaA", name: "Lada's First Authority", type: "Consume", group: "Material", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_COLLECTION_GET_NO_CONSUME_ITEM", strArg: "COLLECT_324" } }, { itemId: 11201057, className: "Goddess_fragments_radaB", name: "Lada's Second Authority", type: "Consume", group: "Material", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_COLLECTION_GET_NO_CONSUME_ITEM", strArg: "COLLECT_324" } }, { itemId: 11201058, className: "Goddess_fragments_radaC", name: "Lada's Third Authority", type: "Consume", group: "Material", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_COLLECTION_GET_NO_CONSUME_ITEM", strArg: "COLLECT_324" } }, -{ itemId: 11201068, className: "misc_reinforce_percentUp_500", name: "[Lv.500] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11201069, className: "misc_reinforce_percentUp_500_NoTrade", name: "[Lv.500] Enhance Aid (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 500 } }, +{ itemId: 11201068, className: "misc_reinforce_percentUp_500", name: "[Lv.500] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11201069, className: "misc_reinforce_percentUp_500_NoTrade", name: "[Lv.500] Enhance Aid (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 500 } }, { itemId: 11201078, className: "Piece_Gem_High_500", name: "[Lv.500] Aether Gem Fragment", type: "Consume", group: "Material", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 10 } }, -{ itemId: 11201119, className: "misc_reinforce_percentUp_510", name: "[Lv.510] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11201120, className: "misc_reinforce_percentUp_510_NoTrade", name: "[Lv.510] Enhance Aid (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 510 } }, +{ itemId: 11201119, className: "misc_reinforce_percentUp_510", name: "[Lv.510] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11201120, className: "misc_reinforce_percentUp_510_NoTrade", name: "[Lv.510] Enhance Aid (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 510 } }, { itemId: 11201196, className: "Goddess_fragments_jurateA", name: "Jurate's First Authority", type: "Consume", group: "Material", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_COLLECTION_GET_NO_CONSUME_ITEM", strArg: "COLLECT_402" } }, { itemId: 11201197, className: "Goddess_fragments_jurateB", name: "Jurate's Second Authority", type: "Consume", group: "Material", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_COLLECTION_GET_NO_CONSUME_ITEM", strArg: "COLLECT_402" } }, { itemId: 11201198, className: "Goddess_fragments_jurateC", name: "Jurate's Third Authority", type: "Consume", group: "Material", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_COLLECTION_GET_NO_CONSUME_ITEM", strArg: "COLLECT_402" } }, -{ itemId: 11201201, className: "misc_reinforce_percentUp_520", name: "[Lv.520] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11201202, className: "misc_reinforce_percentUp_520_NoTrade", name: "[Lv.520] Enhance Aid (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "reinforce_percentUp", numArg1: 520 } }, +{ itemId: 11201201, className: "misc_reinforce_percentUp_520", name: "[Lv.520] Enhance Aid", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11201202, className: "misc_reinforce_percentUp_520_NoTrade", name: "[Lv.520] Enhance Aid (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "reinforce_percentUp", numArg1: 520 } }, { itemId: 11201232, className: "JurateCertificateCoin_1p", name: "Goddess Token (Jurate): 1", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 1000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "JurateCertificate", numArg1: 1 } }, { itemId: 11201233, className: "JurateCertificateCoin_100p", name: "Goddess Token (Jurate): 100", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 100000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "JurateCertificate", numArg1: 100 } }, { itemId: 11201234, className: "JurateCertificateCoin_1000p", name: "Goddess Token (Jurate): 1,000", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 1000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "JurateCertificate", numArg1: 1000 } }, @@ -13905,8 +13905,8 @@ { itemId: 11201237, className: "JurateCertificateCoin_50000p", name: "Goddess Token (Jurate): 50,000", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 50000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "JurateCertificate", numArg1: 50000 } }, { itemId: 11201238, className: "JurateCertificateCoin_1000000p", name: "Goddess Token (Jurate): 1,000,000", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 10000000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_ITEM_CERTIFICATE_COIN", strArg: "JurateCertificate", numArg1: 1000000 } }, { itemId: 11201239, className: "dummy_JurateCertificate", name: "Goddess Token (Jurate)", type: "Consume", group: "Material", weight: 0, maxStack: 999999, price: 1, sellPrice: 1, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11201242, className: "misc_Evolve_misc_520", name: "[Lv.520] Evolution Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Evolve", numArg1: 520 } }, -{ itemId: 11201243, className: "misc_Evolve_misc_520_NoTrade", name: "[Lv.520] Evolution Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Evolve", numArg1: 520, numArg2: 5 } }, +{ itemId: 11201242, className: "misc_Evolve_misc_520", name: "[Lv.520] Evolution Stone", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Evolve", numArg1: 520 } }, +{ itemId: 11201243, className: "misc_Evolve_misc_520_NoTrade", name: "[Lv.520] Evolution Stone (Untradable)", type: "Etc", group: "Material", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Evolve", numArg1: 520, numArg2: 5 } }, // Misc //--------------------------------------------------------------------------- @@ -13937,14 +13937,14 @@ { itemId: 11030006, className: "piece_goddess_misc04", name: "Stone Debris of Divine Power(Lada)", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_GODDESS_MISC", strArg: "goddess_misc/1", numArg1: 1 } }, { itemId: 11030007, className: "piece_goddess_misc05", name: "Stone Debris of Divine Power(Gabija)", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_GODDESS_MISC", strArg: "goddess_misc/1", numArg1: 1 } }, { itemId: 11030008, className: "piece_goddess_misc06", name: "Stone Debris of Divine Power(Zemyna)", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_GODDESS_MISC", strArg: "goddess_misc/1", numArg1: 1 } }, -{ itemId: 11030013, className: "misc_glacier", name: "Heart of Glacia", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11030013, className: "misc_glacier", name: "Heart of Glacia", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11030020, className: "EP12_EXPERT_MODE_MULTIPLE_RECIPE", name: "Division Singularity Add. Reward Voucher Recipe", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 1000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_EXPERT_MODE_MULTIPLE", strArg: "EP12_EXPERT_MODE_MULTIPLE_NoTrade/1", numArg1: 3 } }, { itemId: 11030024, className: "ChallengeExpertModeCountUp_Recipe", name: "Division Singularity One Entry Voucher Recipe", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 1000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_EXPERT_MODE_TICKET", strArg: "ChallengeExpertModeCountUp_NoTrade/1", numArg1: 3 } }, { itemId: 11030028, className: "misc_Telharsha_neck", name: "Scorched Valuable of Tel Harsha", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Iredian_lv440" } }, { itemId: 11030038, className: "EP12_enrich_Vibora_misc_recipe", name: "Condensed Vaivora Transmutor Recipe", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 1000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_EP12_ENRICH_VIBORA_MISC", strArg: "EP12_enrich_Vibora_misc/1", numArg1: 3 } }, -{ itemId: 11030039, className: "EP12_enrich_Vibora_misc", name: "Condensed Vaivora Transmutor", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11030039, className: "EP12_enrich_Vibora_misc", name: "Condensed Vaivora Transmutor", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11030040, className: "EP12_enrich_Goddess_misc_recipe", name: "Blessed Transmutor Recipe", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 1000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_EP12_ENRICH_GODDESS_MISC", strArg: "EP12_enrich_Goddess_misc/1", numArg1: 3 } }, -{ itemId: 11030041, className: "EP12_enrich_Goddess_misc", name: "Blessed Transmutor", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11030041, className: "EP12_enrich_Goddess_misc", name: "Blessed Transmutor", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11030047, className: "vakarine_card_reinforce_misc_1", name: "Mold of Reverence - Vakarine", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_GODDESS_CARD_REINFORCE_MISC", strArg: "vakarine_card_reinforce/1", numArg1: 1 } }, { itemId: 11030048, className: "vakarine_card_reinforce_misc_2", name: "Trust - Vakarine", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 1 } }, { itemId: 11030049, className: "vakarine_card_reinforce_misc_3", name: "Will - Vakarine", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 1 } }, @@ -13965,13 +13965,13 @@ { itemId: 11030064, className: "dalia_card_reinforce_misc_2", name: "Trust - Dahlia", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 1 } }, { itemId: 11030065, className: "dalia_card_reinforce_misc_3", name: "Will - Dahlia", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 1 } }, { itemId: 11030066, className: "dalia_card_reinforce_misc_4", name: "Commitment - Dahlia", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 1 } }, -{ itemId: 11030068, className: "misc_glacier_NoTrade", name: "Refined Heart of Glacia", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11030068, className: "misc_glacier_NoTrade", name: "Refined Heart of Glacia", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11030069, className: "Legend_Misc_Mothacc_hard_NoTrade", name: "Refined Moth Talc Powder", type: "Etc", group: "Misc", weight: 10, maxStack: 32767, price: 1000000, sellPrice: 10, equipType1: "None", equipType2: "None", minLevel: 1 }, { itemId: 11030086, className: "misc_hp_herbs", name: "Red Herb", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 5000, sellPrice: 50, equipType1: "None", equipType2: "None", minLevel: 1 }, { itemId: 11030087, className: "misc_sp_herbs", name: "Blue Herb", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 5000, sellPrice: 50, equipType1: "None", equipType2: "None", minLevel: 1 }, { itemId: 11030089, className: "misc_Guilty_LegCard", name: "Glimpse of Chaos", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 1000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 3 } }, -{ itemId: 11030135, className: "misc_vasilisa", name: "Vasilisa Scale", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030136, className: "misc_vasilisa_NoTrade", name: "Refined Vasilisa Scale", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11030135, className: "misc_vasilisa", name: "Vasilisa Scale", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030136, className: "misc_vasilisa_NoTrade", name: "Refined Vasilisa Scale", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11030152, className: "Misc_Vibora_Composition_Reward", name: "Vaivora Origin Stone", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 5 } }, { itemId: 11030153, className: "Piece_Relic_Gem_Goddess_Cyan", name: "Goddess Cyan Gem Fragment", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 5 } }, { itemId: 11030154, className: "Piece_Relic_Gem_Goddess_Magenta", name: "Goddess Magenta Gem Fragment", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 5 } }, @@ -13989,24 +13989,24 @@ { itemId: 11030248, className: "tricket_bountyhunt_pedimian_ep13_hard", name: "[Lv.460] Superior Written Order - Fedimian", type: "Etc", group: "Misc", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "c_fedimian", numArg1: 460, numArg2: 6200 } }, { itemId: 11030249, className: "tricket_bountyhunt_orsha_ep13_hard", name: "[Lv.460] Superior Written Order - Orsha", type: "Etc", group: "Misc", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "c_orsha", numArg1: 460, numArg2: 6200 } }, { itemId: 11030250, className: "HighColorGem_UpgradeToken_460", name: "[Lv.460] Aether Gem Catalyst", type: "Consume", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_AETHER_GEM_UPGRADE_TOKEN", numArg1: 5, numArg2: 460 } }, -{ itemId: 11030252, className: "bountyhunt_boss_misc01", name: "Darus Bantam's Tiny Savings", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030253, className: "bountyhunt_boss_misc02", name: "Popo Hibert Walker Schofieldu IV's Crown", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030254, className: "bountyhunt_boss_misc03", name: "Nightmare Assailant Shoes", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030255, className: "bountyhunt_boss_misc04", name: "Suspicious Kupole's Leg Hair", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11030252, className: "bountyhunt_boss_misc01", name: "Darus Bantam's Tiny Savings", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030253, className: "bountyhunt_boss_misc02", name: "Popo Hibert Walker Schofieldu IV's Crown", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030254, className: "bountyhunt_boss_misc03", name: "Nightmare Assailant Shoes", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030255, className: "bountyhunt_boss_misc04", name: "Suspicious Kupole's Leg Hair", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11030259, className: "piece_sklgem_selectbox", name: "Skill Gem Fragment", type: "Consume", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT_CNTCOST", strArg: "sklgem_selectbox/1;", numArg1: 10 } }, -{ itemId: 11030374, className: "EP12_enrich_Goddess_misc_NoTrade", name: "Refined Blessed Transmutor", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030375, className: "EP12_enrich_Vibora_misc_NoTrade", name: "Refined Condensed Vaivora Transmutor", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11030374, className: "EP12_enrich_Goddess_misc_NoTrade", name: "Refined Blessed Transmutor", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030375, className: "EP12_enrich_Vibora_misc_NoTrade", name: "Refined Condensed Vaivora Transmutor", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11030459, className: "HighColorGem_UpgradeToken_460_NoTrade", name: "[Lv.460] Aether Gem Catalyst (Untradable)", type: "Consume", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_AETHER_GEM_UPGRADE_TOKEN", numArg1: 5, numArg2: 460 } }, { itemId: 11030463, className: "HighColorGem_UpgradeToken_480", name: "[Lv.480] Aether Gem Catalyst", type: "Consume", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_AETHER_GEM_UPGRADE_TOKEN", numArg1: 5, numArg2: 480 } }, { itemId: 11030464, className: "HighColorGem_UpgradeToken_480_NoTrade", name: "[Lv.480] Aether Gem Catalyst (Untradable)", type: "Consume", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_AETHER_GEM_UPGRADE_TOKEN", numArg1: 5, numArg2: 480 } }, -{ itemId: 11030465, className: "bountyhunt_boss_misc01_480", name: "[Lv.480] Darus Bantam's Tiny Savings", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030466, className: "bountyhunt_boss_misc02_480", name: "[Lv.480] Popo Hibert Walker Schofieldu IV's Crown", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030467, className: "bountyhunt_boss_misc03_480", name: "[Lv.480] Nightmare Assailant Shoes", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030468, className: "bountyhunt_boss_misc04_480", name: "[Lv.480] Suspicious Kupole's Leg Hair", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11030465, className: "bountyhunt_boss_misc01_480", name: "[Lv.480] Darus Bantam's Tiny Savings", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030466, className: "bountyhunt_boss_misc02_480", name: "[Lv.480] Popo Hibert Walker Schofieldu IV's Crown", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030467, className: "bountyhunt_boss_misc03_480", name: "[Lv.480] Nightmare Assailant Shoes", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030468, className: "bountyhunt_boss_misc04_480", name: "[Lv.480] Suspicious Kupole's Leg Hair", type: "Etc", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11030471, className: "SEASONLETICIA_HighColorGem_UpgradeToken_460", name: "[Lv.460] Aether Gem Catalyst", type: "Consume", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_AETHER_GEM_UPGRADE_TOKEN", numArg1: 5, numArg2: 460 } }, -{ itemId: 11030472, className: "misc_Growth_Reinforce_Tier1", name: "Guardian's Seal", type: "Etc", group: "Misc", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030476, className: "misc_Growth_Reinforce_Tier2", name: "Elite Guardian Seal", type: "Etc", group: "Misc", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030477, className: "misc_Growth_Reinforce_Tier3", name: "Royal Guardian Seal", type: "Etc", group: "Misc", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11030472, className: "misc_Growth_Reinforce_Tier1", name: "Guardian's Seal", type: "Etc", group: "Misc", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030476, className: "misc_Growth_Reinforce_Tier2", name: "Elite Guardian Seal", type: "Etc", group: "Misc", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030477, className: "misc_Growth_Reinforce_Tier3", name: "Royal Guardian Seal", type: "Etc", group: "Misc", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11035650, className: "ticket_bountyhunt_klapeda_ep14", name: "[Lv.480] Written Order - Klaipeda", type: "Etc", group: "Misc", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "c_Klaipe", numArg1: 480 } }, { itemId: 11035651, className: "ticket_bountyhunt_pedimian_ep14", name: "[Lv.480] Written Order - Fedimian", type: "Etc", group: "Misc", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "c_fedimian", numArg1: 480 } }, { itemId: 11035652, className: "ticket_bountyhunt_orsha_ep14", name: "[Lv.480] Written Order - Orsha", type: "Etc", group: "Misc", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "c_orsha", numArg1: 480 } }, @@ -14018,8 +14018,8 @@ { itemId: 11200043, className: "Archeology_Relic_A_2_Lv470", name: "[Lv.470] Cracked Golden Goddess Statue", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_Archeology_Relic", strArg: "Archeology_Relic_A_4_Lv470", numArg1: 2 } }, { itemId: 11200044, className: "Archeology_Relic_A_3_Lv470", name: "[Lv.470] Broken Gold Goddess Statue", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_Archeology_Relic", strArg: "Archeology_Relic_A_4_Lv470", numArg1: 1 } }, { itemId: 11200045, className: "Archeology_Relic_A_4_Lv470", name: "[Lv.470] Gold Goddess Statue Piece", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200052, className: "misc_RevivalPaulius", name: "Revived Soul Fragment", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200053, className: "misc_RevivalPaulius_NoTrade", name: "Refined Revived Soul Fragment", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11200052, className: "misc_RevivalPaulius", name: "Revived Soul Fragment", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200053, className: "misc_RevivalPaulius_NoTrade", name: "Refined Revived Soul Fragment", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11200097, className: "piece_penetration_belt", name: "Belt of Insight Fragment", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_BELT_MISC", strArg: "piece_belt", numArg1: 20 } }, { itemId: 11200100, className: "piece_penetration_belt_NoTrade", name: "Belt of Insight Fragment (Untradable)", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_BELT_MISC", strArg: "piece_belt", numArg1: 20 } }, { itemId: 11200101, className: "piece_GabijaEarring_NoTrade", name: "Fire Flame Earring Fragment (Untradable)", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_EARRING_MISC", strArg: "piece_earring", numArg1: 6 } }, @@ -14039,24 +14039,24 @@ { itemId: 11200121, className: "ticket_wing_delmore_NoTrade", name: "Token of Trial: Delmore Battlefield - Back Costume Voucher (Untradable)", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_TRADE_TICKET", strArg: "ticket_wing_delmore", numArg1: 40, numArg2: 1 } }, { itemId: 11200124, className: "piece_penetration_belt_high", name: "Advanced Belt of Insight Fragment (Untradable)", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_BELT_MISC", strArg: "piece_belt", numArg1: 1 } }, { itemId: 11200135, className: "season_server_open_all_cabinet", name: "[Season Server] Storage Register Voucher", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_OPEN_ALL_CABINET", strArg: "open_all_cabinet" } }, -{ itemId: 11200166, className: "misc_transmutationSpreader", name: "Corrupt Corpse Doll Thread", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200167, className: "misc_transmutationSpreader_NoTrade", name: "Processed Corrupt Corpse Doll Thread", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200168, className: "misc_high_transmutationSpreader", name: "HR Corrupt Corpse Doll Thread", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200169, className: "misc_high_transmutationSpreader_NoTrade", name: "Processed HR Corrupt Corpse Doll Thread", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11200166, className: "misc_transmutationSpreader", name: "Corrupt Corpse Doll Thread", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200167, className: "misc_transmutationSpreader_NoTrade", name: "Processed Corrupt Corpse Doll Thread", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200168, className: "misc_high_transmutationSpreader", name: "HR Corrupt Corpse Doll Thread", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200169, className: "misc_high_transmutationSpreader_NoTrade", name: "Processed HR Corrupt Corpse Doll Thread", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11200181, className: "piece_random_skill_gem_480", name: "[Lv.480] Sparkling Skill Gem Fragment", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_SKILL_GEM_RANDOM_OPTIN_MISC", strArg: "piece_skill_gem_random_option", numArg1: 7, numArg2: 480 } }, { itemId: 11200182, className: "piece_random_skill_gem_480_NoTrade", name: "[Lv.480] Sparkling Skill Gem Fragment (Untradable)", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_SKILL_GEM_RANDOM_OPTIN_MISC", strArg: "piece_skill_gem_random_option", numArg1: 7, numArg2: 480 } }, { itemId: 11200190, className: "piece_fierce_shoulder", name: "Spaulder of Ferocity Fragment", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_SHOULER_MISC", strArg: "piece_shoulder", numArg1: 20 } }, { itemId: 11200191, className: "piece_fierce_shoulder_NoTrade", name: "Spaulder of Ferocity Fragment (Untradable)", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_SHOULER_MISC", strArg: "piece_shoulder", numArg1: 20 } }, -{ itemId: 11200193, className: "misc_leatherFalouros", name: "Falouros Leather", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200194, className: "misc_leatherFalouros_NoTrade", name: "Processed Falouros Leather", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200195, className: "misc_hornFalouros", name: "Falouros Horn", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200196, className: "misc_hornFalouros_NoTrade", name: "Processed Falouros Horn", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11200193, className: "misc_leatherFalouros", name: "Falouros Leather", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200194, className: "misc_leatherFalouros_NoTrade", name: "Processed Falouros Leather", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200195, className: "misc_hornFalouros", name: "Falouros Horn", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200196, className: "misc_hornFalouros_NoTrade", name: "Processed Falouros Horn", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11200198, className: "piece_fierce_shoulder_high", name: "Advanced Spaulder of Ferocity Fragment", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_SHOULER_MISC", strArg: "piece_shoulder", numArg1: 1 } }, { itemId: 11200216, className: "Multiple_Token_ChallengeMode_Auto_recipe", name: "Recipe - Challenge Mode Add. Reward Voucher (Untradable)", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "Addition_consume_Multiple_Token_ChallengeMode_Auto", strArg: "Multiple_Token_ChallengeMode_Auto_NoTrade/1" } }, -{ itemId: 11200229, className: "misc_ribbonRoze", name: "Rose's Ribbon", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200230, className: "misc_ribbonRoze_NoTrade", name: "Mended Rose's Ribbon", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200231, className: "misc_eyemaskRoze", name: "Rose's Blindfold", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200232, className: "misc_eyemaskRoze_NoTrade", name: "Mended Rose's Blindfold", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11200229, className: "misc_ribbonRoze", name: "Rose's Ribbon", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200230, className: "misc_ribbonRoze_NoTrade", name: "Mended Rose's Ribbon", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200231, className: "misc_eyemaskRoze", name: "Rose's Blindfold", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200232, className: "misc_eyemaskRoze_NoTrade", name: "Mended Rose's Blindfold", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11200244, className: "ticket_hat_jellyzele", name: "Token of Trial: Sinking Seizure - Jellyzele Crown Voucher", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_TRADE_TICKET", strArg: "ticket_hat_jellyzele", numArg1: 40, numArg2: 1 } }, { itemId: 11200245, className: "ticket_hat_jellyzele_NoTrade", name: "Token of Trial: Sinking Seizure - Jellyzele Crown Voucher (Untradable)", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_TRADE_TICKET", strArg: "ticket_hat_jellyzele", numArg1: 40, numArg2: 1 } }, { itemId: 11200246, className: "ticket_doll_jellyzele", name: "Token of Trial: Sinking Seizure - Jellyzele Doll Voucher", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_TRADE_TICKET", strArg: "ticket_doll_jellyzele", numArg1: 40, numArg2: 1 } }, @@ -14070,27 +14070,27 @@ { itemId: 11200254, className: "ticket_achieve_spreader", name: "Token of Trial: Reservoir of Corruption - Title Voucher", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_TRADE_TICKET", strArg: "ticket_achieve_spreader", numArg1: 40, numArg2: 1 } }, { itemId: 11200255, className: "ticket_achieve_spreader_NoTrade", name: "Token of Trial: Reservoir of Corruption - Title Voucher (Untradable)", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GIVE_TRADE_TICKET", strArg: "ticket_achieve_spreader", numArg1: 40, numArg2: 1 } }, { itemId: 11200278, className: "Multiple_Token_ChallengeMode_Auto_recipe2", name: "Recipe - Challenge Mode Add. Reward Voucher (Untradable)", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "Addition_consume_Multiple_Token_ChallengeMode_Auto", strArg: "Multiple_Token_ChallengeMode_Auto_NoTrade/1" } }, -{ itemId: 11200312, className: "misc_upinis_wing", name: "Upinis Wing", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200315, className: "misc_upinis_wing_NoTrade", name: "Refined Upinis Wing", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200316, className: "misc_slogutis_fragments", name: "Fragment of Slogutis ", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200317, className: "misc_slogutis_fragments_NoTrade", name: "Refined Fragment of Slogutis", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11200312, className: "misc_upinis_wing", name: "Upinis Wing", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200315, className: "misc_upinis_wing_NoTrade", name: "Refined Upinis Wing", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200316, className: "misc_slogutis_fragments", name: "Fragment of Slogutis ", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200317, className: "misc_slogutis_fragments_NoTrade", name: "Refined Fragment of Slogutis", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11200318, className: "misc_circle_of_chaos", name: "Ring of Chaos", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 1000, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 3 } }, -{ itemId: 11200326, className: "dragoon_master_ex_coupon", name: "Dragoon Master Summon Voucher", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "dragoon_master_ex" } }, -{ itemId: 11200351, className: "lv1_misc_goddess_noble_1", name: "[Lv.1] Power of Fire", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200352, className: "lv1_misc_goddess_noble_2", name: "[Lv.1] Sign of Fate", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200353, className: "lv1_misc_goddess_noble_3", name: "[Lv.1] Symbol of Fertility", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200366, className: "misc_merregina_blackpearl", name: "Black Pearl of Merregina", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200367, className: "misc_merregina_blackpearl_NoTrade", name: "Refined Black Pearl of Merregina", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200368, className: "lv2_misc_goddess_noble_1", name: "[Lv.2] Power of Fire", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200369, className: "lv2_misc_goddess_noble_2", name: "[Lv.2] Sign of Fate", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200370, className: "lv2_misc_goddess_noble_3", name: "[Lv.2] Symbol of Fertility", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200371, className: "lv3_misc_goddess_noble_1", name: "[Lv.3] Power of Fire", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200372, className: "lv3_misc_goddess_noble_2", name: "[Lv.3] Sign of Fate", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200373, className: "lv3_misc_goddess_noble_3", name: "[Lv.3] Symbol of Fertility", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200389, className: "misc_boss_DarkNeringa", name: "Remnant of Luminous Revelation", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200390, className: "misc_boss_DarkNeringa_NoTrade", name: "Remnant of Dark Revelation", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200391, className: "misc_boss_CrystalGolem", name: "Condensed Luminous Crystal Bead", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11200392, className: "misc_boss_CrystalGolem_NoTrade", name: "Condensed Crystal Bead", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11200326, className: "dragoon_master_ex_coupon", name: "Dragoon Master Summon Voucher", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "dragoon_master_ex" } }, +{ itemId: 11200351, className: "lv1_misc_goddess_noble_1", name: "[Lv.1] Power of Fire", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200352, className: "lv1_misc_goddess_noble_2", name: "[Lv.1] Sign of Fate", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200353, className: "lv1_misc_goddess_noble_3", name: "[Lv.1] Symbol of Fertility", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200366, className: "misc_merregina_blackpearl", name: "Black Pearl of Merregina", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200367, className: "misc_merregina_blackpearl_NoTrade", name: "Refined Black Pearl of Merregina", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200368, className: "lv2_misc_goddess_noble_1", name: "[Lv.2] Power of Fire", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200369, className: "lv2_misc_goddess_noble_2", name: "[Lv.2] Sign of Fate", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200370, className: "lv2_misc_goddess_noble_3", name: "[Lv.2] Symbol of Fertility", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200371, className: "lv3_misc_goddess_noble_1", name: "[Lv.3] Power of Fire", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200372, className: "lv3_misc_goddess_noble_2", name: "[Lv.3] Sign of Fate", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200373, className: "lv3_misc_goddess_noble_3", name: "[Lv.3] Symbol of Fertility", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200389, className: "misc_boss_DarkNeringa", name: "Remnant of Luminous Revelation", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200390, className: "misc_boss_DarkNeringa_NoTrade", name: "Remnant of Dark Revelation", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200391, className: "misc_boss_CrystalGolem", name: "Condensed Luminous Crystal Bead", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11200392, className: "misc_boss_CrystalGolem_NoTrade", name: "Condensed Crystal Bead", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11201000, className: "piece_EP14_GoddessIcor_Armor", name: "[Lv.480] Goddess Ichor (Armor) Fragment", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GODDESS_ICOR_MISC", strArg: "piece_goddess_icor", numArg1: 7 } }, { itemId: 11201001, className: "piece_EP14_GoddessIcor_Armor_NoTrade", name: "[Lv.480] Goddess Ichor (Armor) Fragment (Untradable)", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GODDESS_ICOR_MISC", strArg: "piece_goddess_icor", numArg1: 7 } }, { itemId: 11201005, className: "piece_EP14_GoddessIcor_Weapon", name: "[Lv.480] Goddess Ichor (Weapon) Fragment", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_GODDESS_ICOR_MISC", strArg: "piece_goddess_icor", numArg1: 7 } }, @@ -14219,7 +14219,7 @@ { itemId: 11201228, className: "piece_EP16_fierce_shoulder_4", name: "[Jurate] Advanced Spaulder of Ferocity Fragment - Annihilation", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_SHOULER_MISC_EP16_HIGH", strArg: "EP16_fierce_shoulder_4_high", numArg1: 10 } }, { itemId: 11201229, className: "piece_EP16_fierce_shoulder_5", name: "[Jurate] Advanced Spaulder of Ferocity Fragment - Radiance", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_SHOULER_MISC_EP16_HIGH", strArg: "EP16_fierce_shoulder_5_high", numArg1: 10 } }, { itemId: 11201230, className: "piece_EP16_fierce_shoulder_6", name: "[Jurate] Advanced Spaulder of Ferocity Fragment - Invincible", type: "Consume", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_SHOULER_MISC_EP16_HIGH", strArg: "EP16_fierce_shoulder_6_high", numArg1: 10 } }, -{ itemId: 11201244, className: "misc_Ether_Gem_Socket_520_NoTrade", name: "[Lv.520] Aether Gem Socket Key (Untradable)", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "Ether_Gem_Socket", numArg1: 520 } }, +{ itemId: 11201244, className: "misc_Ether_Gem_Socket_520_NoTrade", name: "[Lv.520] Aether Gem Socket Key (Untradable)", type: "Etc", group: "Misc", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "Ether_Gem_Socket", numArg1: 520 } }, { itemId: 11201245, className: "Piece_Gem_High_520", name: "[Lv.520] Aether Gem Fragment", type: "Consume", group: "Misc", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 10 } }, { itemId: 11201246, className: "HighColorGem_UpgradeToken_520", name: "[Lv.520] Aether Gem Catalyst", type: "Consume", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_AETHER_GEM_UPGRADE_TOKEN", numArg1: 5, numArg2: 520 } }, { itemId: 11201247, className: "HighColorGem_UpgradeToken_520_NoTrade", name: "[Lv.520] Aether Gem Catalyst (Untradable)", type: "Consume", group: "Misc", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { function: "SCR_USE_AETHER_GEM_UPGRADE_TOKEN", numArg1: 5, numArg2: 520 } }, @@ -14257,31 +14257,31 @@ // PetArmor //--------------------------------------------------------------------------- -{ itemId: 291001, className: "PETAR01_101", name: "Companion Coat", type: "PetArmor", group: "PetArmor", weight: 40, maxStack: 1, price: 805, sellPrice: 161, equipType1: "Sword", equipType2: "Sword", minLevel: 1, attackType: "Slash" }, -{ itemId: 291002, className: "PETAR01_102", name: "Companion Quilt Coat", type: "PetArmor", group: "PetArmor", weight: 50, maxStack: 1, price: 2720, sellPrice: 544, equipType1: "Sword", equipType2: "Sword", minLevel: 15, attackType: "Slash" }, -{ itemId: 291003, className: "PETAR01_103", name: "Companion Superior Quilt Coat", type: "PetArmor", group: "PetArmor", weight: 50, maxStack: 1, price: 4860, sellPrice: 972, equipType1: "Sword", equipType2: "Sword", minLevel: 15, attackType: "Slash" }, -{ itemId: 291004, className: "PETAR01_104", name: "Companion Leather Armor", type: "PetArmor", group: "PetArmor", weight: 50, maxStack: 1, price: 9033, sellPrice: 1806, equipType1: "Sword", equipType2: "Sword", minLevel: 40, attackType: "Slash" }, -{ itemId: 291005, className: "PETAR01_105", name: "Companion Superior Leather Armor", type: "PetArmor", group: "PetArmor", weight: 50, maxStack: 1, price: 13406, sellPrice: 2681, equipType1: "Sword", equipType2: "Sword", minLevel: 40, attackType: "Slash" }, -{ itemId: 291006, className: "PETAR01_106", name: "Companion Chain Mail", type: "PetArmor", group: "PetArmor", weight: 60, maxStack: 1, price: 23736, sellPrice: 4747, equipType1: "Sword", equipType2: "Sword", minLevel: 40, attackType: "Slash" }, -{ itemId: 291007, className: "PETAR01_107", name: "Companion Steel Chainmail", type: "PetArmor", group: "PetArmor", weight: 50, maxStack: 1, price: 44034, sellPrice: 8806, equipType1: "Sword", equipType2: "Sword", minLevel: 75, attackType: "Slash" }, -{ itemId: 291008, className: "PETAR01_108", name: "Companion Scale Mail", type: "PetArmor", group: "PetArmor", weight: 80, maxStack: 1, price: 82496, sellPrice: 16499, equipType1: "Sword", equipType2: "Sword", minLevel: 75, attackType: "Slash" }, -{ itemId: 291009, className: "PETAR01_109", name: "Companion Superior Scale Mail", type: "PetArmor", group: "PetArmor", weight: 50, maxStack: 1, price: 92070, sellPrice: 18414, equipType1: "Sword", equipType2: "Sword", minLevel: 75, attackType: "Slash" }, -{ itemId: 291010, className: "PETAR01_110", name: "Companion Plate Armor", type: "PetArmor", group: "PetArmor", weight: 60, maxStack: 1, price: 110205, sellPrice: 22041, equipType1: "Sword", equipType2: "Sword", minLevel: 120, attackType: "Slash" }, -{ itemId: 291011, className: "PETAR01_111", name: "Companion Full Plate Armor", type: "PetArmor", group: "PetArmor", weight: 50, maxStack: 1, price: 6, sellPrice: 1, equipType1: "Sword", equipType2: "Sword", minLevel: 120, attackType: "Slash" }, +{ itemId: 291001, className: "PETAR01_101", name: "Companion Coat", type: "PetArmor", group: "PetArmor", weight: 40, maxStack: 1, price: 805, sellPrice: 161, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", attackType: "Slash" }, +{ itemId: 291002, className: "PETAR01_102", name: "Companion Quilt Coat", type: "PetArmor", group: "PetArmor", weight: 50, maxStack: 1, price: 2720, sellPrice: 544, equipType1: "Sword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", attackType: "Slash" }, +{ itemId: 291003, className: "PETAR01_103", name: "Companion Superior Quilt Coat", type: "PetArmor", group: "PetArmor", weight: 50, maxStack: 1, price: 4860, sellPrice: 972, equipType1: "Sword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", attackType: "Slash" }, +{ itemId: 291004, className: "PETAR01_104", name: "Companion Leather Armor", type: "PetArmor", group: "PetArmor", weight: 50, maxStack: 1, price: 9033, sellPrice: 1806, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", attackType: "Slash" }, +{ itemId: 291005, className: "PETAR01_105", name: "Companion Superior Leather Armor", type: "PetArmor", group: "PetArmor", weight: 50, maxStack: 1, price: 13406, sellPrice: 2681, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", attackType: "Slash" }, +{ itemId: 291006, className: "PETAR01_106", name: "Companion Chain Mail", type: "PetArmor", group: "PetArmor", weight: 60, maxStack: 1, price: 23736, sellPrice: 4747, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", attackType: "Slash" }, +{ itemId: 291007, className: "PETAR01_107", name: "Companion Steel Chainmail", type: "PetArmor", group: "PetArmor", weight: 50, maxStack: 1, price: 44034, sellPrice: 8806, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", attackType: "Slash" }, +{ itemId: 291008, className: "PETAR01_108", name: "Companion Scale Mail", type: "PetArmor", group: "PetArmor", weight: 80, maxStack: 1, price: 82496, sellPrice: 16499, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", attackType: "Slash" }, +{ itemId: 291009, className: "PETAR01_109", name: "Companion Superior Scale Mail", type: "PetArmor", group: "PetArmor", weight: 50, maxStack: 1, price: 92070, sellPrice: 18414, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", attackType: "Slash" }, +{ itemId: 291010, className: "PETAR01_110", name: "Companion Plate Armor", type: "PetArmor", group: "PetArmor", weight: 60, maxStack: 1, price: 110205, sellPrice: 22041, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", attackType: "Slash" }, +{ itemId: 291011, className: "PETAR01_111", name: "Companion Full Plate Armor", type: "PetArmor", group: "PetArmor", weight: 50, maxStack: 1, price: 6, sellPrice: 1, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", attackType: "Slash" }, // PetWeapon //--------------------------------------------------------------------------- -{ itemId: 281001, className: "PETWP01_101", name: "Claw", type: "PetWeapon", group: "PetWeapon", weight: 75, maxStack: 1, price: 805, sellPrice: 161, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 101, maxAtk: 107, attackType: "Slash" }, -{ itemId: 281002, className: "PETWP01_102", name: "Iron Claw", type: "PetWeapon", group: "PetWeapon", weight: 75, maxStack: 1, price: 2720, sellPrice: 544, equipType1: "Sword", equipType2: "Sword", minLevel: 15, minAtk: 209, maxAtk: 222, attackType: "Slash" }, -{ itemId: 281003, className: "PETWP01_103", name: "Steel Claw", type: "PetWeapon", group: "PetWeapon", weight: 90, maxStack: 1, price: 4860, sellPrice: 972, equipType1: "Sword", equipType2: "Sword", minLevel: 15, minAtk: 281, maxAtk: 298, attackType: "Slash" }, -{ itemId: 281004, className: "PETWP01_104", name: "Forest Claw", type: "PetWeapon", group: "PetWeapon", weight: 80, maxStack: 1, price: 9033, sellPrice: 1806, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 353, maxAtk: 375, attackType: "Slash" }, -{ itemId: 281005, className: "PETWP01_105", name: "Rokas Claw", type: "PetWeapon", group: "PetWeapon", weight: 90, maxStack: 1, price: 13406, sellPrice: 2681, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 432, maxAtk: 459, attackType: "Slash" }, -{ itemId: 281006, className: "PETWP01_106", name: "Tooth", type: "PetWeapon", group: "PetWeapon", weight: 90, maxStack: 1, price: 23736, sellPrice: 4747, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 519, maxAtk: 551, attackType: "Slash" }, -{ itemId: 281007, className: "PETWP01_107", name: "Iron Tooth", type: "PetWeapon", group: "PetWeapon", weight: 90, maxStack: 1, price: 44034, sellPrice: 8806, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 605, maxAtk: 642, attackType: "Slash" }, -{ itemId: 281008, className: "PETWP01_108", name: "Steel Tooth", type: "PetWeapon", group: "PetWeapon", weight: 90, maxStack: 1, price: 82496, sellPrice: 16499, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 699, maxAtk: 742, attackType: "Slash" }, -{ itemId: 281009, className: "PETWP01_109", name: "Silver Fang", type: "PetWeapon", group: "PetWeapon", weight: 100, maxStack: 1, price: 92070, sellPrice: 18414, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 792, maxAtk: 841, attackType: "Slash" }, -{ itemId: 281010, className: "PETWP01_110", name: "Titanium Claw", type: "PetWeapon", group: "PetWeapon", weight: 90, maxStack: 1, price: 110205, sellPrice: 22041, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 893, maxAtk: 948, attackType: "Slash" }, -{ itemId: 281011, className: "PETWP01_111", name: "Superior Titanium Claw", type: "PetWeapon", group: "PetWeapon", weight: 90, maxStack: 1, price: 1, sellPrice: 1, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1037, maxAtk: 1101, attackType: "Slash" }, +{ itemId: 281001, className: "PETWP01_101", name: "Claw", type: "PetWeapon", group: "PetWeapon", weight: 75, maxStack: 1, price: 805, sellPrice: 161, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 101, maxAtk: 107, attackType: "Slash" }, +{ itemId: 281002, className: "PETWP01_102", name: "Iron Claw", type: "PetWeapon", group: "PetWeapon", weight: 75, maxStack: 1, price: 2720, sellPrice: 544, equipType1: "Sword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 209, maxAtk: 222, attackType: "Slash" }, +{ itemId: 281003, className: "PETWP01_103", name: "Steel Claw", type: "PetWeapon", group: "PetWeapon", weight: 90, maxStack: 1, price: 4860, sellPrice: 972, equipType1: "Sword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 281, maxAtk: 298, attackType: "Slash" }, +{ itemId: 281004, className: "PETWP01_104", name: "Forest Claw", type: "PetWeapon", group: "PetWeapon", weight: 80, maxStack: 1, price: 9033, sellPrice: 1806, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 353, maxAtk: 375, attackType: "Slash" }, +{ itemId: 281005, className: "PETWP01_105", name: "Rokas Claw", type: "PetWeapon", group: "PetWeapon", weight: 90, maxStack: 1, price: 13406, sellPrice: 2681, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 432, maxAtk: 459, attackType: "Slash" }, +{ itemId: 281006, className: "PETWP01_106", name: "Tooth", type: "PetWeapon", group: "PetWeapon", weight: 90, maxStack: 1, price: 23736, sellPrice: 4747, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 519, maxAtk: 551, attackType: "Slash" }, +{ itemId: 281007, className: "PETWP01_107", name: "Iron Tooth", type: "PetWeapon", group: "PetWeapon", weight: 90, maxStack: 1, price: 44034, sellPrice: 8806, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 605, maxAtk: 642, attackType: "Slash" }, +{ itemId: 281008, className: "PETWP01_108", name: "Steel Tooth", type: "PetWeapon", group: "PetWeapon", weight: 90, maxStack: 1, price: 82496, sellPrice: 16499, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 699, maxAtk: 742, attackType: "Slash" }, +{ itemId: 281009, className: "PETWP01_109", name: "Silver Fang", type: "PetWeapon", group: "PetWeapon", weight: 100, maxStack: 1, price: 92070, sellPrice: 18414, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 792, maxAtk: 841, attackType: "Slash" }, +{ itemId: 281010, className: "PETWP01_110", name: "Titanium Claw", type: "PetWeapon", group: "PetWeapon", weight: 90, maxStack: 1, price: 110205, sellPrice: 22041, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 893, maxAtk: 948, attackType: "Slash" }, +{ itemId: 281011, className: "PETWP01_111", name: "Superior Titanium Claw", type: "PetWeapon", group: "PetWeapon", weight: 90, maxStack: 1, price: 1, sellPrice: 1, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1037, maxAtk: 1101, attackType: "Slash" }, // Premium //--------------------------------------------------------------------------- @@ -16077,12 +16077,12 @@ { itemId: 643066, className: "Transcend_Scroll_10_450", name: "[Lv.450] Stage 10 Transcendence Scroll", type: "Consume", group: "Premium", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, script: { strArg: "transcend_Set_450", numArg1: 10, numArg2: 100 } }, { itemId: 643067, className: "Transcend_Scroll_10_450_Trade", name: "[Lv.450] Stage 10 Transcendence Scroll", type: "Consume", group: "Premium", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, script: { strArg: "transcend_Set_450", numArg1: 10, numArg2: 100 } }, { itemId: 645001, className: "Mic", name: "Megaphone", type: "Consume", group: "Premium", weight: 0, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 646075, className: "misc_gemExpStone11", name: "Shining 9 Star Gem Abrasive", type: "Etc", group: "Premium", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 646075, className: "misc_gemExpStone11", name: "Shining 9 Star Gem Abrasive", type: "Etc", group: "Premium", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "GemExpStone11" }, { itemId: 647023, className: "Abrasive_400", name: "Lv. 400 Awakening Abrasive", type: "Etc", group: "Premium", weight: 1, maxStack: 32767, price: 300, sellPrice: 5, minLevel: 1, script: { strArg: "AbrasiveStone", numArg1: 400 } }, -{ itemId: 647038, className: "misc_gemExpStone12", name: "Shining LV 10 Gem Abrasive", type: "Etc", group: "Premium", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 647038, className: "misc_gemExpStone12", name: "Shining LV 10 Gem Abrasive", type: "Etc", group: "Premium", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "GemExpStone12" }, { itemId: 647040, className: "Abrasive_430", name: "Lv.430 Awakening Abrasive", type: "Etc", group: "Premium", weight: 1, maxStack: 32767, price: 300, sellPrice: 5, minLevel: 1, script: { strArg: "AbrasiveStone", numArg1: 430 } }, -{ itemId: 647041, className: "misc_gemExpStone11_Team", name: "9-Star Gem Abrasive", type: "Etc", group: "Premium", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 647048, className: "misc_gemExpStone12_NoTrade", name: "10-Star Gem Abrasive", type: "Etc", group: "Premium", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 647041, className: "misc_gemExpStone11_Team", name: "9-Star Gem Abrasive", type: "Etc", group: "Premium", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "GemExpStone11" }, +{ itemId: 647048, className: "misc_gemExpStone12_NoTrade", name: "10-Star Gem Abrasive", type: "Etc", group: "Premium", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "GemExpStone12" }, { itemId: 649604, className: "egg_004", name: "Toucan Egg", type: "Consume", group: "Premium", weight: 10, maxStack: 32767, price: 10000, sellPrice: 2000, minLevel: 1, cooldownGroup: "CompanionEgg", cooldown: 30000, script: { function: "SCR_USE_PREMIUM_EGG", strArg: "Toucan", numArg1: 38 } }, { itemId: 649606, className: "egg_006", name: "Penguin Egg", type: "Consume", group: "Premium", weight: 10, maxStack: 32767, price: 10000, sellPrice: 2000, minLevel: 1, cooldownGroup: "CompanionEgg", cooldown: 0, script: { function: "SCR_USE_PREMIUM_EGG", strArg: "penguin", numArg1: 38 } }, { itemId: 649609, className: "egg_009", name: "Battlebird Egg", type: "Consume", group: "Premium", weight: 10, maxStack: 32767, price: 10000, sellPrice: 2000, minLevel: 1, cooldownGroup: "CompanionEgg", cooldown: 0, script: { function: "SCR_USE_PREMIUM_EGG", strArg: "parrotbill", numArg1: 38 } }, @@ -22997,15 +22997,15 @@ // SpecialMaterial //--------------------------------------------------------------------------- -{ itemId: 649032, className: "misc_thierrynium", name: "Thierrynium", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 649033, className: "misc_mothstone", name: "Violetin Crystal", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 649034, className: "misc_low_mothstone", name: "Violetin Crystal Fragment", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 649035, className: "misc_thierrynium_NoTrade", name: "Refined Thierrynium", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1 }, -{ itemId: 649036, className: "misc_mothstone_NoTrade", name: "Refined Violetin Crystal", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1 }, +{ itemId: 649032, className: "misc_thierrynium", name: "Thierrynium", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649033, className: "misc_mothstone", name: "Violetin Crystal", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649034, className: "misc_low_mothstone", name: "Violetin Crystal Fragment", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649035, className: "misc_thierrynium_NoTrade", name: "Refined Thierrynium", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 649036, className: "misc_mothstone_NoTrade", name: "Refined Violetin Crystal", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11030009, className: "goddess_misc", name: "Complete Piece of Divine Power", type: "Consume", group: "SpecialMaterial", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "GODDESS_ARMOR", numArg1: 2 } }, -{ itemId: 11030010, className: "misc_archenium", name: "Arquenium", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030018, className: "Vibora_misc_Lv2", name: "Transmutor", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "UpgadeVibora", numArg1: 2 } }, -{ itemId: 11030030, className: "misc_luferium", name: "Luperium", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11030010, className: "misc_archenium", name: "Arquenium", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030018, className: "Vibora_misc_Lv2", name: "Transmutor", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc", script: { strArg: "UpgadeVibora", numArg1: 2 } }, +{ itemId: 11030030, className: "misc_luferium", name: "Luperium", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11030036, className: "misc_Ectonite", name: "Ectonite", type: "Consume", group: "SpecialMaterial", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 10 } }, { itemId: 11030037, className: "Relic_exp_token", name: "Breath of Power", type: "Consume", group: "SpecialMaterial", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 10 } }, { itemId: 11030042, className: "vakarine_card_reinforce", name: "Token of Faith - Vakarine", type: "Consume", group: "SpecialMaterial", weight: 1, maxStack: 32767, price: 10, sellPrice: 10, equipType1: "None", equipType2: "None", minLevel: 1, script: { strArg: "vakarine_card_reinforce_misc_1/1;vakarine_card_reinforce_misc_2/1;vakarine_card_reinforce_misc_3/1;vakarine_card_reinforce_misc_4/1;" } }, @@ -23021,8 +23021,8 @@ { itemId: 11030120, className: "Relic_exp_token_refine_Trade", name: "Purified Breath of Power", type: "Consume", group: "SpecialMaterial", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 10 } }, { itemId: 11030130, className: "Relic_gem_upgrade_token", name: "Res Sacrae Gem Catalyst", type: "Consume", group: "SpecialMaterial", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 1000000, numArg2: 1 } }, { itemId: 11030131, className: "misc_Giltine_Raid_HARD", name: "Giltine's Feather", type: "Consume", group: "SpecialMaterial", weight: 1, maxStack: 32767, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 2 } }, -{ itemId: 11030238, className: "misc_archenium_NoTrade", name: "Refined Arquenium", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, -{ itemId: 11030239, className: "misc_luferium_NoTrade", name: "Refined Luperium", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1 }, +{ itemId: 11030238, className: "misc_archenium_NoTrade", name: "Refined Arquenium", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, +{ itemId: 11030239, className: "misc_luferium_NoTrade", name: "Refined Luperium", type: "Etc", group: "SpecialMaterial", weight: 1, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, equipExpGroup: "Misc" }, { itemId: 11030451, className: "misc_Ectonite_Care", name: "Ectonite", type: "Consume", group: "SpecialMaterial", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 10 } }, { itemId: 11200327, className: "Relic_exp_token_refine_event", name: "[Event] Purified Breath of Power", type: "Consume", group: "SpecialMaterial", weight: 0, maxStack: 999999, price: 0, sellPrice: 0, equipType1: "None", equipType2: "None", minLevel: 1, script: { numArg1: 10 } }, @@ -23088,152 +23088,152 @@ { itemId: 11151, className: "ABAND01_126_silver", name: "Sprout of the World Armband", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Armband", equipType2: "Armband", minLevel: 1 }, { itemId: 11152, className: "armband_sniego01", name: "Snigo Armband", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Armband", equipType2: "Armband", minLevel: 1 }, { itemId: 11153, className: "armband_sniego02", name: "8th Anniversary Armband", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Armband", equipType2: "Armband", minLevel: 1 }, -{ itemId: 111001, className: "DAG01_101", name: "Knife", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 1862, equipType1: "Dagger", minLevel: 120, minAtk: 847, maxAtk: 994, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 111002, className: "DAG01_102", name: "Superior Knife", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 2582, equipType1: "Dagger", minLevel: 120, minAtk: 847, maxAtk: 994, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 111003, className: "DAG01_103", name: "Dirk Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 15520, sellPrice: 2601, equipType1: "Dagger", minLevel: 120, minAtk: 847, maxAtk: 994, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 111004, className: "DAG01_104", name: "Superior Dirk Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 24252, sellPrice: 2930, equipType1: "Dagger", minLevel: 170, minAtk: 1189, maxAtk: 1395, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 111005, className: "DAG01_105", name: "Main Gauche", type: "Equip", group: "SubWeapon", weight: 80, maxStack: 1, price: 24252, sellPrice: 3900, equipType1: "Dagger", minLevel: 170, minAtk: 1189, maxAtk: 1395, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 111006, className: "DAG01_106", name: "Superior Main Gauche", type: "Equip", group: "SubWeapon", weight: 80, maxStack: 1, price: 24252, sellPrice: 3920, equipType1: "Dagger", minLevel: 170, minAtk: 1189, maxAtk: 1395, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 111001, className: "DAG01_101", name: "Knife", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 1862, equipType1: "Dagger", minLevel: 120, equipExpGroup: "Equip", minAtk: 847, maxAtk: 994, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 111002, className: "DAG01_102", name: "Superior Knife", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 2582, equipType1: "Dagger", minLevel: 120, equipExpGroup: "Equip", minAtk: 847, maxAtk: 994, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 111003, className: "DAG01_103", name: "Dirk Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 15520, sellPrice: 2601, equipType1: "Dagger", minLevel: 120, equipExpGroup: "Equip", minAtk: 847, maxAtk: 994, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 111004, className: "DAG01_104", name: "Superior Dirk Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 24252, sellPrice: 2930, equipType1: "Dagger", minLevel: 170, equipExpGroup: "Equip", minAtk: 1189, maxAtk: 1395, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 111005, className: "DAG01_105", name: "Main Gauche", type: "Equip", group: "SubWeapon", weight: 80, maxStack: 1, price: 24252, sellPrice: 3900, equipType1: "Dagger", minLevel: 170, equipExpGroup: "Equip", minAtk: 1189, maxAtk: 1395, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 111006, className: "DAG01_106", name: "Superior Main Gauche", type: "Equip", group: "SubWeapon", weight: 80, maxStack: 1, price: 24252, sellPrice: 3920, equipType1: "Dagger", minLevel: 170, equipExpGroup: "Equip", minAtk: 1189, maxAtk: 1395, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, { itemId: 111007, className: "DAG01_107", name: "Yorgis Knife", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 1638, equipType1: "Dagger", minLevel: 120, minAtk: 847, maxAtk: 994, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 111008, className: "DAG01_108", name: "Chura", type: "Equip", group: "SubWeapon", weight: 80, maxStack: 1, price: 32673, sellPrice: 3955, equipType1: "Dagger", minLevel: 220, minAtk: 1530, maxAtk: 1796, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 111009, className: "DAG01_109", name: "Superior Chura", type: "Equip", group: "SubWeapon", weight: 80, maxStack: 1, price: 32673, sellPrice: 4780, equipType1: "Dagger", minLevel: 220, minAtk: 1530, maxAtk: 1796, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 111010, className: "DAG01_110", name: "(Faded) Replica Migantis Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Dagger", minLevel: 270, minAtk: 1872, maxAtk: 2197, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 111011, className: "DAG01_111", name: "(Faded) Replica Pevordimas Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "Dagger", minLevel: 315, minAtk: 2179, maxAtk: 2558, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 111012, className: "DAG01_112", name: "Practice Knife", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Dagger", minLevel: 120, minAtk: 847, maxAtk: 994, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 111013, className: "DAG01_113", name: "Training Kris Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 111014, className: "DAG01_114", name: "Stiletto", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 2880, sellPrice: 150, equipType1: "Dagger", minLevel: 15, minAtk: 130, maxAtk: 152, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 111015, className: "DAG01_115", name: "Blue Stiletto", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 3640, sellPrice: 210, equipType1: "Dagger", minLevel: 40, minAtk: 301, maxAtk: 353, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 111999, className: "DAG01_999", name: "Standard Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 4953, equipType1: "Dagger", minLevel: 120, minAtk: 847, maxAtk: 994, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 112001, className: "DAG02_101", name: "Blood Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 32673, sellPrice: 4800, equipType1: "Dagger", minLevel: 220, minAtk: 1700, maxAtk: 1996, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 112002, className: "DAG02_102", name: "(Faded) Migantis Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Dagger", minLevel: 270, minAtk: 2080, maxAtk: 2441, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 112003, className: "DAG02_103", name: "(Faded) Pevordimas Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Dagger", minLevel: 315, minAtk: 2421, maxAtk: 2842, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 112004, className: "DAG02_104", name: "Short Duelist", type: "Equip", group: "SubWeapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Dagger", minLevel: 120, minAtk: 941, maxAtk: 1105, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 112005, className: "DAG02_105", name: "Small Crystaras", type: "Equip", group: "SubWeapon", weight: 94, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Dagger", minLevel: 170, minAtk: 1321, maxAtk: 1550, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 112006, className: "DAG02_106", name: "Sketis Dagger", type: "Equip", group: "SubWeapon", weight: 95, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Dagger", minLevel: 75, minAtk: 600, maxAtk: 704, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 112007, className: "DAG02_107", name: "Pajoritas Dagger", type: "Equip", group: "SubWeapon", weight: 105, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Dagger", minLevel: 220, minAtk: 1700, maxAtk: 1996, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 112008, className: "DAG02_108", name: "Migantis Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Dagger", minLevel: 270, minAtk: 2080, maxAtk: 2441, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 112009, className: "DAG02_109", name: "Pevordimas Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Dagger", minLevel: 315, minAtk: 2421, maxAtk: 2842, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 112010, className: "DAG02_110", name: "Raffye Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 350, minAtk: 2687, maxAtk: 3154, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 112011, className: "DAG02_111", name: "Zvaigzde Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, minAtk: 2915, maxAtk: 3421, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 112012, className: "DAG02_112", name: "Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 3066, maxAtk: 3600, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 113001, className: "DAG03_101", name: "Arde Dagger", type: "Equip", group: "SubWeapon", weight: 85, maxStack: 1, price: 8583, sellPrice: 345, equipType1: "Dagger", minLevel: 75, minAtk: 660, maxAtk: 774, attackType: "Aries", leftHandSkill: "Common_DaggerAries", fireRes: -38 }, -{ itemId: 113002, className: "DAG03_102", name: "Karacha Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 24252, sellPrice: 3900, equipType1: "Dagger", minLevel: 170, minAtk: 1453, maxAtk: 1705, middleSizeBonus: 61, attackType: "Aries", leftHandSkill: "Common_DaggerAries", fireRes: -38 }, -{ itemId: 113005, className: "DAG03_105", name: "Lionhead Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 48800, sellPrice: 7753, equipType1: "Dagger", minLevel: 315, minAtk: 2663, maxAtk: 3127, attackType: "Aries", leftHandSkill: "Common_DaggerAries", iceRes: -15 }, -{ itemId: 113301, className: "DAG03_301", name: "(Faded) Short Duelist", type: "Equip", group: "SubWeapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 1638, equipType1: "Dagger", minLevel: 120, minAtk: 1035, maxAtk: 1215, addMaxAtk: 42, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 113302, className: "DAG03_302", name: "(Faded) Small Crystaras", type: "Equip", group: "SubWeapon", weight: 94, maxStack: 1, price: 24252, sellPrice: 2128, equipType1: "Dagger", minLevel: 170, minAtk: 1453, maxAtk: 1705, attackType: "Aries", leftHandSkill: "Common_DaggerAries", soulRes: -42 }, -{ itemId: 113303, className: "DAG03_303", name: "(Faded) Sketis Dagger", type: "Equip", group: "SubWeapon", weight: 95, maxStack: 1, price: 8583, sellPrice: 907, equipType1: "Dagger", minLevel: 75, minAtk: 660, maxAtk: 774, attackType: "Aries", leftHandSkill: "Common_DaggerAries", soulRes: -60 }, -{ itemId: 113304, className: "DAG03_304", name: "(Faded) Pajoritas Dagger", type: "Equip", group: "SubWeapon", weight: 105, maxStack: 1, price: 32673, sellPrice: 3920, equipType1: "Dagger", minLevel: 220, minAtk: 1870, maxAtk: 2195, attackType: "Aries", leftHandSkill: "Common_DaggerAries", soulRes: -120 }, -{ itemId: 113305, className: "DAG03_305", name: "(Faded) Purine Migantis Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Dagger", minLevel: 270, minAtk: 2288, maxAtk: 2685, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 113306, className: "DAG03_306", name: "(Faded) Purine Pevordimas Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Dagger", minLevel: 315, minAtk: 2663, maxAtk: 3127, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 113307, className: "DAG03_307", name: "Berthas Short Duelist", type: "Equip", group: "SubWeapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Dagger", minLevel: 120, minAtk: 1035, maxAtk: 1215, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 113308, className: "DAG03_308", name: "Berthas Small Crystaras", type: "Equip", group: "SubWeapon", weight: 94, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Dagger", minLevel: 170, minAtk: 1453, maxAtk: 1705, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 113309, className: "DAG03_309", name: "Berthas Sketis Dagger", type: "Equip", group: "SubWeapon", weight: 95, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Dagger", minLevel: 75, minAtk: 660, maxAtk: 774, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 113310, className: "DAG03_310", name: "Berthas Pajoritas Dagger", type: "Equip", group: "SubWeapon", weight: 105, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Dagger", minLevel: 220, minAtk: 1870, maxAtk: 2195, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 113311, className: "DAG03_311", name: "Berthas Migantis Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Dagger", minLevel: 270, minAtk: 2288, maxAtk: 2685, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 113312, className: "DAG03_312", name: "Berthas Pevordimas Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Dagger", minLevel: 315, minAtk: 2663, maxAtk: 3127, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 113313, className: "DAG03_313", name: "Berthas Raffye Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 350, minAtk: 2956, maxAtk: 3470, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 113314, className: "DAG03_314", name: "Berthas Zvaigzde Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, minAtk: 3206, maxAtk: 3764, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 113315, className: "DAG03_315", name: "Berthas Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 3373, maxAtk: 3960, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 113316, className: "DAG03_316", name: "Berthas Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Dagger", minLevel: 430, minAtk: 3623, maxAtk: 4254, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114001, className: "DAG04_101", name: "Venom", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 24252, sellPrice: 2601, equipType1: "Dagger", minLevel: 170, minAtk: 1651, maxAtk: 1938, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114002, className: "DAG04_102", name: "Lolopanther Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 40000, sellPrice: 5856, equipType1: "Dagger", minLevel: 270, minAtk: 3327, maxAtk: 3906, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114003, className: "DAG04_103", name: "Solmiki Dagger", type: "Equip", group: "SubWeapon", weight: 95, maxStack: 1, price: 48800, sellPrice: 7771, equipType1: "Dagger", minLevel: 330, minAtk: 4056, maxAtk: 4762, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114004, className: "DAG04_104", name: "Emengard Dagger", type: "Equip", group: "SubWeapon", weight: 75, maxStack: 1, price: 48800, sellPrice: 8868, equipType1: "Dagger", minLevel: 315, minAtk: 3027, maxAtk: 3553, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114005, className: "DAG04_105", name: "Blood Stealer", type: "Equip", group: "SubWeapon", weight: 62, maxStack: 1, price: 48800, sellPrice: 10629, equipType1: "Dagger", minLevel: 330, minAtk: 3169, maxAtk: 3720, addDef: -115, addMDef: -115, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114006, className: "DAG04_106", name: "Primus Short Duelist", type: "Equip", group: "SubWeapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Dagger", minLevel: 120, minAtk: 1176, maxAtk: 1381, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114007, className: "DAG04_107", name: "Primus Small Crystaras", type: "Equip", group: "SubWeapon", weight: 94, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Dagger", minLevel: 170, minAtk: 1651, maxAtk: 1938, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114008, className: "DAG04_108", name: "Primus Sketis Dagger", type: "Equip", group: "SubWeapon", weight: 95, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Dagger", minLevel: 75, minAtk: 750, maxAtk: 880, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114009, className: "DAG04_109", name: "Primus Pajoritas Dagger", type: "Equip", group: "SubWeapon", weight: 105, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Dagger", minLevel: 220, minAtk: 2125, maxAtk: 2495, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114010, className: "DAG04_110", name: "Primus Migantis Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Dagger", minLevel: 270, minAtk: 2600, maxAtk: 3052, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114011, className: "DAG04_111", name: "Primus Pevordimas Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Dagger", minLevel: 315, minAtk: 3027, maxAtk: 3553, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114012, className: "DAG04_112", name: "Primus Raffye Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 350, minAtk: 3359, maxAtk: 3943, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114013, className: "DAG04_113", name: "Masinios Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 350, minAtk: 3359, maxAtk: 3943, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114014, className: "DAG04_114", name: "Primus Zvaigzde Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114015, className: "DAG04_115", name: "Wastrel Zvaigzde Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114016, className: "DAG04_116", name: "Asio Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114017, className: "DAG04_117", name: "Primus Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 3833, maxAtk: 4500, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114018, className: "DAG04_118", name: "Skiaclipse Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 3833, maxAtk: 4500, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114019, className: "DAG04_119", name: "Skiaclipse Knife", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 3833, maxAtk: 4500, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114020, className: "DAG04_120", name: "Moringponia Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 3833, maxAtk: 4500, addMaxAtk: 296, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114021, className: "DAG04_121", name: "Misrus Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 3833, maxAtk: 4500, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 114022, className: "DAG04_122", name: "Primus Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Dagger", minLevel: 430, minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 115101, className: "DAG05_101", name: "Velcoffer Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 360, minAtk: 4420, maxAtk: 5189, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 115102, className: "DAG05_102", name: "Velcoffer Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 360, minAtk: 4420, maxAtk: 5189, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 115103, className: "DAG05_103", name: "Savinose Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 115104, className: "DAG05_104", name: "Skiaclipse Varna Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 301101, className: "PST01_101", name: "Revolver", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 2930, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1189, maxAtk: 1395, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 301102, className: "PST01_102", name: "Snaphance", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 3900, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1189, maxAtk: 1395, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 301103, className: "PST01_103", name: "Long Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 3920, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1189, maxAtk: 1395, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 301104, className: "PST01_104", name: "Training Revolver", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 2601, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1189, maxAtk: 1395, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 301105, className: "PST01_105", name: "Royal Pistol", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 3955, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, minAtk: 1530, maxAtk: 1796, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 301106, className: "PST01_106", name: "Superior Royal Pistol", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 4780, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, minAtk: 1530, maxAtk: 1796, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 301107, className: "PST01_107", name: "(Faded) Replica Migantis Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, minAtk: 1872, maxAtk: 2197, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 301108, className: "PST01_108", name: "(Faded) Replica Pevordimas Pistol", type: "Equip", group: "SubWeapon", weight: 110, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, minAtk: 2179, maxAtk: 2558, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 301109, className: "PST01_109", name: "Practice Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1189, maxAtk: 1395, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 301110, className: "PST01_110", name: "Practice Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, minAtk: 1872, maxAtk: 2197, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 301111, className: "PST01_111", name: "Practice Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 301112, className: "PST01_112", name: "Dunkel Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 300, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 15, minAtk: 130, maxAtk: 152, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 301113, className: "PST01_113", name: "Dunkel Wooden Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 500, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 40, minAtk: 301, maxAtk: 353, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 301114, className: "PST01_114", name: "Dunkel Raudona Wooden Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 800, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 75, minAtk: 540, maxAtk: 634, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302101, className: "PST02_101", name: "Superior Aston Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 2930, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1321, maxAtk: 1550, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302102, className: "PST02_102", name: "Devi Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 3920, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1321, maxAtk: 1550, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302103, className: "PST02_103", name: "Handgun", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 3920, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1321, maxAtk: 1550, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302104, className: "PST02_104", name: "Istora Revolver", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 2601, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1321, maxAtk: 1550, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302105, className: "PST02_105", name: "Vienie Revolver", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 4780, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, minAtk: 1700, maxAtk: 1996, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302109, className: "PST02_109", name: "Tevlin Revolver", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 3920, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, minAtk: 1700, maxAtk: 1996, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302110, className: "PST02_110", name: "(Faded) Migantis Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, minAtk: 2080, maxAtk: 2441, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302111, className: "PST02_111", name: "(Faded) Pevordimas Pistol", type: "Equip", group: "SubWeapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, minAtk: 2421, maxAtk: 2842, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302112, className: "PST02_112", name: "Alcris", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1321, maxAtk: 1550, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302113, className: "PST02_113", name: "Pajoritas Pistol", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, minAtk: 1700, maxAtk: 1996, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302114, className: "PST02_114", name: "Migantis Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, minAtk: 2080, maxAtk: 2441, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302115, className: "PST02_115", name: "Pevordimas Pistol", type: "Equip", group: "SubWeapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, minAtk: 2421, maxAtk: 2842, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302116, className: "PST02_116", name: "Raffye Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 350, minAtk: 2687, maxAtk: 3154, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302117, className: "PST02_117", name: "Zvaigzde Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, minAtk: 2915, maxAtk: 3421, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302118, className: "PST02_118", name: "Sketis Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 75, minAtk: 600, maxAtk: 704, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302119, className: "PST02_119", name: "Spiare Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 120, minAtk: 941, maxAtk: 1105, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 302120, className: "PST02_120", name: "Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 3066, maxAtk: 3600, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303101, className: "PST03_101", name: "Double Stack", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 48800, sellPrice: 7753, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, minAtk: 2663, maxAtk: 3127, addMinAtk: 77, addMaxAtk: 128, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303301, className: "PST03_301", name: "(Faded) Alcris", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 3900, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1453, maxAtk: 1705, addMinAtk: 24, addMaxAtk: 56, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303302, className: "PST03_302", name: "(Faded) Pajoritas Pistol", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 3920, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, minAtk: 1870, maxAtk: 2195, addMinAtk: 35, addMaxAtk: 60, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303303, className: "PST03_303", name: "(Faded) Purine Migantis Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, minAtk: 2288, maxAtk: 2685, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303304, className: "PST03_304", name: "(Faded) Purine Pevordimas Pistol", type: "Equip", group: "SubWeapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, minAtk: 2663, maxAtk: 3127, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303305, className: "PST03_305", name: "Berthas Alcris", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1453, maxAtk: 1705, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303306, className: "PST03_306", name: "Berthas Pajoritas Pistol", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, minAtk: 1870, maxAtk: 2195, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303307, className: "PST03_307", name: "Berthas Migantis Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, minAtk: 2288, maxAtk: 2685, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303308, className: "PST03_308", name: "Berthas Pevordimas Pistol", type: "Equip", group: "SubWeapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, minAtk: 2663, maxAtk: 3127, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303309, className: "PST03_309", name: "Berthas Raffye Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 350, minAtk: 2956, maxAtk: 3470, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303310, className: "PST03_310", name: "Berthas Zvaigzde Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, minAtk: 3206, maxAtk: 3764, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303311, className: "PST03_311", name: "Berthas Sketis Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 75, minAtk: 660, maxAtk: 774, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303312, className: "PST03_312", name: "Berthas Spiare Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 120, minAtk: 1035, maxAtk: 1215, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303313, className: "PST03_313", name: "Berthas Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 3373, maxAtk: 3960, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 303314, className: "PST03_314", name: "Berthas Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 430, minAtk: 3623, maxAtk: 4254, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304101, className: "PST04_101", name: "Manamana", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 907, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1651, maxAtk: 1938, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304102, className: "PST04_102", name: "Lolopanther Pistol", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 40000, sellPrice: 5856, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, minAtk: 3327, maxAtk: 3906, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304103, className: "PST04_103", name: "Solmiki Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 48800, sellPrice: 7771, equipType1: "Pistol", equipType2: "Gun", minLevel: 330, minAtk: 4056, maxAtk: 4762, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304104, className: "PST04_104", name: "Aspana Revolver", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 48800, sellPrice: 8868, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, minAtk: 3027, maxAtk: 3553, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304105, className: "PST04_105", name: "Primus Alcris", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1651, maxAtk: 1938, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304106, className: "PST04_106", name: "Primus Pajoritas Pistol", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, minAtk: 2125, maxAtk: 2495, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304107, className: "PST04_107", name: "Primus Migantis Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, minAtk: 2600, maxAtk: 3052, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304108, className: "PST04_108", name: "Primus Pevordimas Pistol", type: "Equip", group: "SubWeapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, minAtk: 3027, maxAtk: 3553, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304109, className: "PST04_109", name: "Primus Raffye Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 350, minAtk: 3359, maxAtk: 3943, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304110, className: "PST04_110", name: "Masinios Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 350, minAtk: 3359, maxAtk: 3943, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304111, className: "PST04_111", name: "Primus Zvaigzde Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304112, className: "PST04_112", name: "Wastrel Zvaigzde Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304113, className: "PST04_113", name: "Asio Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304114, className: "PST04_114", name: "Primus Sketis Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 75, minAtk: 750, maxAtk: 880, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304115, className: "PST04_115", name: "Primus Spiare Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 120, minAtk: 1176, maxAtk: 1381, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304116, className: "PST04_116", name: "Primus Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 3833, maxAtk: 4500, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304117, className: "PST04_117", name: "Skiaclipse Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 3833, maxAtk: 4500, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304118, className: "PST04_118", name: "Moringponia Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 3833, maxAtk: 4500, addMaxAtk: 280, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304119, className: "PST04_119", name: "Moringponia Revolver", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 3833, maxAtk: 4500, addMaxAtk: 280, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304120, className: "PST04_120", name: "Misrus Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 3833, maxAtk: 4500, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 304121, className: "PST04_121", name: "Primus Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 430, minAtk: 4118, maxAtk: 4834, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 305101, className: "PST05_101", name: "Velcoffer Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 360, minAtk: 4420, maxAtk: 5189, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 305102, className: "PST05_102", name: "Velcoffer Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 360, minAtk: 4420, maxAtk: 5189, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 305103, className: "PST05_103", name: "Savinose Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 305104, className: "PST05_104", name: "Skiaclipse Varna Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 325101, className: "CAN05_101", name: "(Old) Velcoffer Cannon", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 360, attackType: "Cannon" }, -{ itemId: 325102, className: "CAN05_102", name: "(Old) Velcoffer Cannon", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 360, attackType: "Cannon" }, +{ itemId: 111008, className: "DAG01_108", name: "Chura", type: "Equip", group: "SubWeapon", weight: 80, maxStack: 1, price: 32673, sellPrice: 3955, equipType1: "Dagger", minLevel: 220, equipExpGroup: "Equip", minAtk: 1530, maxAtk: 1796, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 111009, className: "DAG01_109", name: "Superior Chura", type: "Equip", group: "SubWeapon", weight: 80, maxStack: 1, price: 32673, sellPrice: 4780, equipType1: "Dagger", minLevel: 220, equipExpGroup: "Equip", minAtk: 1530, maxAtk: 1796, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 111010, className: "DAG01_110", name: "(Faded) Replica Migantis Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Dagger", minLevel: 270, equipExpGroup: "Equip", minAtk: 1872, maxAtk: 2197, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 111011, className: "DAG01_111", name: "(Faded) Replica Pevordimas Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "Dagger", minLevel: 315, equipExpGroup: "Equip", minAtk: 2179, maxAtk: 2558, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 111012, className: "DAG01_112", name: "Practice Knife", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Dagger", minLevel: 120, equipExpGroup: "Equip", minAtk: 847, maxAtk: 994, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 111013, className: "DAG01_113", name: "Training Kris Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, equipExpGroup: "Equip", minAtk: 34, maxAtk: 40, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 111014, className: "DAG01_114", name: "Stiletto", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 2880, sellPrice: 150, equipType1: "Dagger", minLevel: 15, equipExpGroup: "Equip", minAtk: 130, maxAtk: 152, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 111015, className: "DAG01_115", name: "Blue Stiletto", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 3640, sellPrice: 210, equipType1: "Dagger", minLevel: 40, equipExpGroup: "Equip", minAtk: 301, maxAtk: 353, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 111999, className: "DAG01_999", name: "Standard Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 4953, equipType1: "Dagger", minLevel: 120, equipExpGroup: "Equip", minAtk: 847, maxAtk: 994, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 112001, className: "DAG02_101", name: "Blood Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 32673, sellPrice: 4800, equipType1: "Dagger", minLevel: 220, equipExpGroup: "Equip", minAtk: 1700, maxAtk: 1996, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 112002, className: "DAG02_102", name: "(Faded) Migantis Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Dagger", minLevel: 270, equipExpGroup: "Equip", minAtk: 2080, maxAtk: 2441, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 112003, className: "DAG02_103", name: "(Faded) Pevordimas Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Dagger", minLevel: 315, equipExpGroup: "Equip", minAtk: 2421, maxAtk: 2842, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 112004, className: "DAG02_104", name: "Short Duelist", type: "Equip", group: "SubWeapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Dagger", minLevel: 120, equipExpGroup: "Equip", minAtk: 941, maxAtk: 1105, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 112005, className: "DAG02_105", name: "Small Crystaras", type: "Equip", group: "SubWeapon", weight: 94, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Dagger", minLevel: 170, equipExpGroup: "Equip", minAtk: 1321, maxAtk: 1550, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 112006, className: "DAG02_106", name: "Sketis Dagger", type: "Equip", group: "SubWeapon", weight: 95, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Dagger", minLevel: 75, equipExpGroup: "Equip", minAtk: 600, maxAtk: 704, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 112007, className: "DAG02_107", name: "Pajoritas Dagger", type: "Equip", group: "SubWeapon", weight: 105, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Dagger", minLevel: 220, equipExpGroup: "Equip", minAtk: 1700, maxAtk: 1996, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 112008, className: "DAG02_108", name: "Migantis Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Dagger", minLevel: 270, equipExpGroup: "Equip", minAtk: 2080, maxAtk: 2441, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 112009, className: "DAG02_109", name: "Pevordimas Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Dagger", minLevel: 315, equipExpGroup: "Equip", minAtk: 2421, maxAtk: 2842, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 112010, className: "DAG02_110", name: "Raffye Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 350, equipExpGroup: "Equip", minAtk: 2687, maxAtk: 3154, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 112011, className: "DAG02_111", name: "Zvaigzde Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, equipExpGroup: "Equip", minAtk: 2915, maxAtk: 3421, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 112012, className: "DAG02_112", name: "Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 3066, maxAtk: 3600, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 113001, className: "DAG03_101", name: "Arde Dagger", type: "Equip", group: "SubWeapon", weight: 85, maxStack: 1, price: 8583, sellPrice: 345, equipType1: "Dagger", minLevel: 75, equipExpGroup: "Equip", minAtk: 660, maxAtk: 774, attackType: "Aries", leftHandSkill: "Common_DaggerAries", fireRes: -38 }, +{ itemId: 113002, className: "DAG03_102", name: "Karacha Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 24252, sellPrice: 3900, equipType1: "Dagger", minLevel: 170, equipExpGroup: "Equip", minAtk: 1453, maxAtk: 1705, middleSizeBonus: 61, attackType: "Aries", leftHandSkill: "Common_DaggerAries", fireRes: -38 }, +{ itemId: 113005, className: "DAG03_105", name: "Lionhead Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 48800, sellPrice: 7753, equipType1: "Dagger", minLevel: 315, equipExpGroup: "Equip", minAtk: 2663, maxAtk: 3127, attackType: "Aries", leftHandSkill: "Common_DaggerAries", iceRes: -15 }, +{ itemId: 113301, className: "DAG03_301", name: "(Faded) Short Duelist", type: "Equip", group: "SubWeapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 1638, equipType1: "Dagger", minLevel: 120, equipExpGroup: "Equip", minAtk: 1035, maxAtk: 1215, addMaxAtk: 42, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 113302, className: "DAG03_302", name: "(Faded) Small Crystaras", type: "Equip", group: "SubWeapon", weight: 94, maxStack: 1, price: 24252, sellPrice: 2128, equipType1: "Dagger", minLevel: 170, equipExpGroup: "Equip", minAtk: 1453, maxAtk: 1705, attackType: "Aries", leftHandSkill: "Common_DaggerAries", soulRes: -42 }, +{ itemId: 113303, className: "DAG03_303", name: "(Faded) Sketis Dagger", type: "Equip", group: "SubWeapon", weight: 95, maxStack: 1, price: 8583, sellPrice: 907, equipType1: "Dagger", minLevel: 75, equipExpGroup: "Equip", minAtk: 660, maxAtk: 774, attackType: "Aries", leftHandSkill: "Common_DaggerAries", soulRes: -60 }, +{ itemId: 113304, className: "DAG03_304", name: "(Faded) Pajoritas Dagger", type: "Equip", group: "SubWeapon", weight: 105, maxStack: 1, price: 32673, sellPrice: 3920, equipType1: "Dagger", minLevel: 220, equipExpGroup: "Equip", minAtk: 1870, maxAtk: 2195, attackType: "Aries", leftHandSkill: "Common_DaggerAries", soulRes: -120 }, +{ itemId: 113305, className: "DAG03_305", name: "(Faded) Purine Migantis Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Dagger", minLevel: 270, equipExpGroup: "Equip", minAtk: 2288, maxAtk: 2685, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 113306, className: "DAG03_306", name: "(Faded) Purine Pevordimas Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Dagger", minLevel: 315, equipExpGroup: "Equip", minAtk: 2663, maxAtk: 3127, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 113307, className: "DAG03_307", name: "Berthas Short Duelist", type: "Equip", group: "SubWeapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Dagger", minLevel: 120, equipExpGroup: "Equip", minAtk: 1035, maxAtk: 1215, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 113308, className: "DAG03_308", name: "Berthas Small Crystaras", type: "Equip", group: "SubWeapon", weight: 94, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Dagger", minLevel: 170, equipExpGroup: "Equip", minAtk: 1453, maxAtk: 1705, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 113309, className: "DAG03_309", name: "Berthas Sketis Dagger", type: "Equip", group: "SubWeapon", weight: 95, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Dagger", minLevel: 75, equipExpGroup: "Equip", minAtk: 660, maxAtk: 774, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 113310, className: "DAG03_310", name: "Berthas Pajoritas Dagger", type: "Equip", group: "SubWeapon", weight: 105, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Dagger", minLevel: 220, equipExpGroup: "Equip", minAtk: 1870, maxAtk: 2195, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 113311, className: "DAG03_311", name: "Berthas Migantis Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Dagger", minLevel: 270, equipExpGroup: "Equip", minAtk: 2288, maxAtk: 2685, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 113312, className: "DAG03_312", name: "Berthas Pevordimas Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Dagger", minLevel: 315, equipExpGroup: "Equip", minAtk: 2663, maxAtk: 3127, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 113313, className: "DAG03_313", name: "Berthas Raffye Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 350, equipExpGroup: "Equip", minAtk: 2956, maxAtk: 3470, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 113314, className: "DAG03_314", name: "Berthas Zvaigzde Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, equipExpGroup: "Equip", minAtk: 3206, maxAtk: 3764, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 113315, className: "DAG03_315", name: "Berthas Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 3373, maxAtk: 3960, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 113316, className: "DAG03_316", name: "Berthas Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Dagger", minLevel: 430, equipExpGroup: "Equip", minAtk: 3623, maxAtk: 4254, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114001, className: "DAG04_101", name: "Venom", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 24252, sellPrice: 2601, equipType1: "Dagger", minLevel: 170, equipExpGroup: "Equip", minAtk: 1651, maxAtk: 1938, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114002, className: "DAG04_102", name: "Lolopanther Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 40000, sellPrice: 5856, equipType1: "Dagger", minLevel: 270, equipExpGroup: "Equip", minAtk: 3327, maxAtk: 3906, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114003, className: "DAG04_103", name: "Solmiki Dagger", type: "Equip", group: "SubWeapon", weight: 95, maxStack: 1, price: 48800, sellPrice: 7771, equipType1: "Dagger", minLevel: 330, equipExpGroup: "Equip", minAtk: 4056, maxAtk: 4762, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114004, className: "DAG04_104", name: "Emengard Dagger", type: "Equip", group: "SubWeapon", weight: 75, maxStack: 1, price: 48800, sellPrice: 8868, equipType1: "Dagger", minLevel: 315, equipExpGroup: "Equip", minAtk: 3027, maxAtk: 3553, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114005, className: "DAG04_105", name: "Blood Stealer", type: "Equip", group: "SubWeapon", weight: 62, maxStack: 1, price: 48800, sellPrice: 10629, equipType1: "Dagger", minLevel: 330, equipExpGroup: "Equip", minAtk: 3169, maxAtk: 3720, addDef: -115, addMDef: -115, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114006, className: "DAG04_106", name: "Primus Short Duelist", type: "Equip", group: "SubWeapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Dagger", minLevel: 120, equipExpGroup: "Equip", minAtk: 1176, maxAtk: 1381, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114007, className: "DAG04_107", name: "Primus Small Crystaras", type: "Equip", group: "SubWeapon", weight: 94, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Dagger", minLevel: 170, equipExpGroup: "Equip", minAtk: 1651, maxAtk: 1938, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114008, className: "DAG04_108", name: "Primus Sketis Dagger", type: "Equip", group: "SubWeapon", weight: 95, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Dagger", minLevel: 75, equipExpGroup: "Equip", minAtk: 750, maxAtk: 880, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114009, className: "DAG04_109", name: "Primus Pajoritas Dagger", type: "Equip", group: "SubWeapon", weight: 105, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Dagger", minLevel: 220, equipExpGroup: "Equip", minAtk: 2125, maxAtk: 2495, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114010, className: "DAG04_110", name: "Primus Migantis Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Dagger", minLevel: 270, equipExpGroup: "Equip", minAtk: 2600, maxAtk: 3052, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114011, className: "DAG04_111", name: "Primus Pevordimas Dagger", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Dagger", minLevel: 315, equipExpGroup: "Equip", minAtk: 3027, maxAtk: 3553, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114012, className: "DAG04_112", name: "Primus Raffye Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 350, equipExpGroup: "Equip", minAtk: 3359, maxAtk: 3943, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114013, className: "DAG04_113", name: "Masinios Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 350, equipExpGroup: "Equip", minAtk: 3359, maxAtk: 3943, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114014, className: "DAG04_114", name: "Primus Zvaigzde Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114015, className: "DAG04_115", name: "Wastrel Zvaigzde Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114016, className: "DAG04_116", name: "Asio Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114017, className: "DAG04_117", name: "Primus Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114018, className: "DAG04_118", name: "Skiaclipse Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114019, className: "DAG04_119", name: "Skiaclipse Knife", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114020, className: "DAG04_120", name: "Moringponia Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, addMaxAtk: 296, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114021, className: "DAG04_121", name: "Misrus Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 114022, className: "DAG04_122", name: "Primus Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Dagger", minLevel: 430, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 115101, className: "DAG05_101", name: "Velcoffer Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 360, equipExpGroup: "Equip", minAtk: 4420, maxAtk: 5189, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 115102, className: "DAG05_102", name: "Velcoffer Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 360, equipExpGroup: "Equip", minAtk: 4420, maxAtk: 5189, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 115103, className: "DAG05_103", name: "Savinose Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 115104, className: "DAG05_104", name: "Skiaclipse Varna Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 301101, className: "PST01_101", name: "Revolver", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 2930, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1189, maxAtk: 1395, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 301102, className: "PST01_102", name: "Snaphance", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 3900, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1189, maxAtk: 1395, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 301103, className: "PST01_103", name: "Long Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 3920, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1189, maxAtk: 1395, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 301104, className: "PST01_104", name: "Training Revolver", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 2601, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1189, maxAtk: 1395, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 301105, className: "PST01_105", name: "Royal Pistol", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 3955, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1530, maxAtk: 1796, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 301106, className: "PST01_106", name: "Superior Royal Pistol", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 4780, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1530, maxAtk: 1796, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 301107, className: "PST01_107", name: "(Faded) Replica Migantis Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 1872, maxAtk: 2197, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 301108, className: "PST01_108", name: "(Faded) Replica Pevordimas Pistol", type: "Equip", group: "SubWeapon", weight: 110, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2179, maxAtk: 2558, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 301109, className: "PST01_109", name: "Practice Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1189, maxAtk: 1395, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 301110, className: "PST01_110", name: "Practice Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 1872, maxAtk: 2197, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 301111, className: "PST01_111", name: "Practice Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 34, maxAtk: 40, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 301112, className: "PST01_112", name: "Dunkel Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 300, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 15, equipExpGroup: "Equip", minAtk: 130, maxAtk: 152, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 301113, className: "PST01_113", name: "Dunkel Wooden Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 500, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 40, equipExpGroup: "Equip", minAtk: 301, maxAtk: 353, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 301114, className: "PST01_114", name: "Dunkel Raudona Wooden Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 800, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 75, equipExpGroup: "Equip", minAtk: 540, maxAtk: 634, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302101, className: "PST02_101", name: "Superior Aston Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 2930, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1321, maxAtk: 1550, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302102, className: "PST02_102", name: "Devi Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 3920, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1321, maxAtk: 1550, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302103, className: "PST02_103", name: "Handgun", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 3920, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1321, maxAtk: 1550, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302104, className: "PST02_104", name: "Istora Revolver", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 2601, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1321, maxAtk: 1550, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302105, className: "PST02_105", name: "Vienie Revolver", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 4780, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1700, maxAtk: 1996, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302109, className: "PST02_109", name: "Tevlin Revolver", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 3920, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1700, maxAtk: 1996, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302110, className: "PST02_110", name: "(Faded) Migantis Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 2080, maxAtk: 2441, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302111, className: "PST02_111", name: "(Faded) Pevordimas Pistol", type: "Equip", group: "SubWeapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2421, maxAtk: 2842, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302112, className: "PST02_112", name: "Alcris", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1321, maxAtk: 1550, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302113, className: "PST02_113", name: "Pajoritas Pistol", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1700, maxAtk: 1996, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302114, className: "PST02_114", name: "Migantis Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 2080, maxAtk: 2441, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302115, className: "PST02_115", name: "Pevordimas Pistol", type: "Equip", group: "SubWeapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2421, maxAtk: 2842, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302116, className: "PST02_116", name: "Raffye Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 350, equipExpGroup: "Equip", minAtk: 2687, maxAtk: 3154, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302117, className: "PST02_117", name: "Zvaigzde Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 2915, maxAtk: 3421, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302118, className: "PST02_118", name: "Sketis Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 75, equipExpGroup: "Equip", minAtk: 600, maxAtk: 704, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302119, className: "PST02_119", name: "Spiare Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 120, equipExpGroup: "Equip", minAtk: 941, maxAtk: 1105, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 302120, className: "PST02_120", name: "Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3066, maxAtk: 3600, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303101, className: "PST03_101", name: "Double Stack", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 48800, sellPrice: 7753, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2663, maxAtk: 3127, addMinAtk: 77, addMaxAtk: 128, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303301, className: "PST03_301", name: "(Faded) Alcris", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 3900, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1453, maxAtk: 1705, addMinAtk: 24, addMaxAtk: 56, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303302, className: "PST03_302", name: "(Faded) Pajoritas Pistol", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 3920, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1870, maxAtk: 2195, addMinAtk: 35, addMaxAtk: 60, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303303, className: "PST03_303", name: "(Faded) Purine Migantis Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 2288, maxAtk: 2685, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303304, className: "PST03_304", name: "(Faded) Purine Pevordimas Pistol", type: "Equip", group: "SubWeapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2663, maxAtk: 3127, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303305, className: "PST03_305", name: "Berthas Alcris", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1453, maxAtk: 1705, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303306, className: "PST03_306", name: "Berthas Pajoritas Pistol", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1870, maxAtk: 2195, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303307, className: "PST03_307", name: "Berthas Migantis Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 2288, maxAtk: 2685, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303308, className: "PST03_308", name: "Berthas Pevordimas Pistol", type: "Equip", group: "SubWeapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2663, maxAtk: 3127, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303309, className: "PST03_309", name: "Berthas Raffye Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 350, equipExpGroup: "Equip", minAtk: 2956, maxAtk: 3470, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303310, className: "PST03_310", name: "Berthas Zvaigzde Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3206, maxAtk: 3764, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303311, className: "PST03_311", name: "Berthas Sketis Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 75, equipExpGroup: "Equip", minAtk: 660, maxAtk: 774, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303312, className: "PST03_312", name: "Berthas Spiare Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 120, equipExpGroup: "Equip", minAtk: 1035, maxAtk: 1215, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303313, className: "PST03_313", name: "Berthas Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3373, maxAtk: 3960, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 303314, className: "PST03_314", name: "Berthas Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 430, equipExpGroup: "Equip", minAtk: 3623, maxAtk: 4254, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304101, className: "PST04_101", name: "Manamana", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 907, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1651, maxAtk: 1938, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304102, className: "PST04_102", name: "Lolopanther Pistol", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 40000, sellPrice: 5856, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 3327, maxAtk: 3906, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304103, className: "PST04_103", name: "Solmiki Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 48800, sellPrice: 7771, equipType1: "Pistol", equipType2: "Gun", minLevel: 330, equipExpGroup: "Equip", minAtk: 4056, maxAtk: 4762, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304104, className: "PST04_104", name: "Aspana Revolver", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 48800, sellPrice: 8868, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 3027, maxAtk: 3553, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304105, className: "PST04_105", name: "Primus Alcris", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1651, maxAtk: 1938, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304106, className: "PST04_106", name: "Primus Pajoritas Pistol", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 2125, maxAtk: 2495, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304107, className: "PST04_107", name: "Primus Migantis Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 2600, maxAtk: 3052, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304108, className: "PST04_108", name: "Primus Pevordimas Pistol", type: "Equip", group: "SubWeapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 3027, maxAtk: 3553, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304109, className: "PST04_109", name: "Primus Raffye Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 350, equipExpGroup: "Equip", minAtk: 3359, maxAtk: 3943, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304110, className: "PST04_110", name: "Masinios Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 350, equipExpGroup: "Equip", minAtk: 3359, maxAtk: 3943, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304111, className: "PST04_111", name: "Primus Zvaigzde Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304112, className: "PST04_112", name: "Wastrel Zvaigzde Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304113, className: "PST04_113", name: "Asio Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304114, className: "PST04_114", name: "Primus Sketis Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 75, equipExpGroup: "Equip", minAtk: 750, maxAtk: 880, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304115, className: "PST04_115", name: "Primus Spiare Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 120, equipExpGroup: "Equip", minAtk: 1176, maxAtk: 1381, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304116, className: "PST04_116", name: "Primus Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304117, className: "PST04_117", name: "Skiaclipse Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304118, className: "PST04_118", name: "Moringponia Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, addMaxAtk: 280, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304119, className: "PST04_119", name: "Moringponia Revolver", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, addMaxAtk: 280, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304120, className: "PST04_120", name: "Misrus Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 304121, className: "PST04_121", name: "Primus Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 430, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 305101, className: "PST05_101", name: "Velcoffer Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 360, equipExpGroup: "Equip", minAtk: 4420, maxAtk: 5189, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 305102, className: "PST05_102", name: "Velcoffer Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 360, equipExpGroup: "Equip", minAtk: 4420, maxAtk: 5189, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 305103, className: "PST05_103", name: "Savinose Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 305104, className: "PST05_104", name: "Skiaclipse Varna Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 325101, className: "CAN05_101", name: "(Old) Velcoffer Cannon", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 360, equipExpGroup: "Equip", attackType: "Cannon" }, +{ itemId: 325102, className: "CAN05_102", name: "(Old) Velcoffer Cannon", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 360, equipExpGroup: "Equip", attackType: "Cannon" }, { itemId: 630001, className: "Artefact_630001", name: "Point", type: "Equip", group: "SubWeapon", weight: 1, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Artefact", minLevel: 1, leftHandSkill: "Common_Yoryung" }, { itemId: 630002, className: "Artefact_630002", name: "Shadow Umbrella", type: "Equip", group: "SubWeapon", weight: 1, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Artefact", minLevel: 1, leftHandSkill: "Common_ShadowUmbrella" }, { itemId: 630003, className: "Artefact_630003", name: "Medusa Head", type: "Equip", group: "SubWeapon", weight: 1, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Artefact", minLevel: 1, leftHandSkill: "Common_Medusa" }, @@ -23389,12 +23389,12 @@ { itemId: 635121, className: "E_Artefact_630022", name: "Festival Foldable Stool", type: "Equip", group: "SubWeapon", weight: 30, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Artefact", minLevel: 1, leftHandSkill: "Common_foldingchair" }, { itemId: 635130, className: "E2_DAG03_306", name: "[Event] Savior's Dagger (30 Days)", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 13511, sellPrice: 5000, equipType1: "Dagger", minLevel: 100, minAtk: 4542, maxAtk: 5332, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, { itemId: 635136, className: "E2_PST03_304", name: "[Event] Savior's Pistol (30 Days)", type: "Equip", group: "SubWeapon", weight: 110, maxStack: 1, price: 8106, sellPrice: 5000, equipType1: "Pistol", equipType2: "Gun", minLevel: 100, minAtk: 4542, maxAtk: 5332, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 635172, className: "E_DAG03_105", name: "[Event] Lionhead Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 48800, sellPrice: 7753, equipType1: "Dagger", minLevel: 315, minAtk: 2663, maxAtk: 3127, attackType: "Aries", leftHandSkill: "Common_DaggerAries", iceRes: -15 }, -{ itemId: 635181, className: "E_PST03_101", name: "[Event] Double Stack", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 29280, sellPrice: 7753, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, minAtk: 2663, maxAtk: 3127, addMinAtk: 77, addMaxAtk: 128, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 635172, className: "E_DAG03_105", name: "[Event] Lionhead Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 48800, sellPrice: 7753, equipType1: "Dagger", minLevel: 315, equipExpGroup: "Equip", minAtk: 2663, maxAtk: 3127, attackType: "Aries", leftHandSkill: "Common_DaggerAries", iceRes: -15 }, +{ itemId: 635181, className: "E_PST03_101", name: "[Event] Double Stack", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 29280, sellPrice: 7753, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2663, maxAtk: 3127, addMinAtk: 77, addMaxAtk: 128, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, { itemId: 635269, className: "DAG04_112_STEMA_DLC", name: "Primus Raffye Dagger [Untradable]", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 350, minAtk: 3359, maxAtk: 3943, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, { itemId: 635275, className: "PST04_109_STEMA_DLC", name: "Primus Raffye Pistol [Untradable]", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 350, minAtk: 3359, maxAtk: 3943, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 635285, className: "DAG04_104_STEAM_NT", name: "Emengard Dagger [Untradable]", type: "Equip", group: "SubWeapon", weight: 75, maxStack: 1, price: 48800, sellPrice: 8868, equipType1: "Dagger", minLevel: 315, minAtk: 3027, maxAtk: 3553, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 635291, className: "PST04_104_STEAM_NT", name: "Aspana Revolver [Untradable]", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 48800, sellPrice: 8868, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, minAtk: 3027, maxAtk: 3553, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 635285, className: "DAG04_104_STEAM_NT", name: "Emengard Dagger [Untradable]", type: "Equip", group: "SubWeapon", weight: 75, maxStack: 1, price: 48800, sellPrice: 8868, equipType1: "Dagger", minLevel: 315, equipExpGroup: "Equip", minAtk: 3027, maxAtk: 3553, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 635291, className: "PST04_104_STEAM_NT", name: "Aspana Revolver [Untradable]", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 48800, sellPrice: 8868, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 3027, maxAtk: 3553, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, { itemId: 635317, className: "PST04_107_EVENT_1710_NEWCHARACTER", name: "[Event] Primus Migantis Pistol (30 Days)", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, minAtk: 2600, maxAtk: 3052, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, { itemId: 635333, className: "PST04_108_EVENT_1710_NEWCHARACTER", name: "[Event] Primus Pevordimas Pistol (30 Days)", type: "Equip", group: "SubWeapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, minAtk: 3027, maxAtk: 3553, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, { itemId: 635352, className: "DAG03_313_1710_NEWCHARACTER", name: "Berthas Raffye Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 350, minAtk: 2956, maxAtk: 3470, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, @@ -23421,31 +23421,31 @@ { itemId: 635456, className: "PST03_312_NEWCHARACTER", name: "[Event] Berthas Spiare Pistol (30 Days)", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 120, minAtk: 1035, maxAtk: 1215, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, { itemId: 635457, className: "PST03_305_NEWCHARACTER", name: "[Event] Berthas Alcris (30 Days)", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1453, maxAtk: 1705, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, { itemId: 635458, className: "PST03_306_NEWCHARACTER", name: "[Event] Berthas Pajoritas Pistol (30 Days)", type: "Equip", group: "SubWeapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, minAtk: 1870, maxAtk: 2195, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 635469, className: "DAG04_115_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 635471, className: "PST04_112_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 635485, className: "DAG04_116_EVENT_1812_XMAS", name: "[Event] Asio Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 635487, className: "PST04_113_EVENT_1812_XMAS", name: "[Event] Asio Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 635469, className: "DAG04_115_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 635471, className: "PST04_112_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 635485, className: "DAG04_116_EVENT_1812_XMAS", name: "[Event] Asio Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 635487, className: "PST04_113_EVENT_1812_XMAS", name: "[Event] Asio Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, { itemId: 635501, className: "DAG04_113_NEWCHARACTER2", name: "[Event] Masinios Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 350, minAtk: 3359, maxAtk: 3943, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, { itemId: 635503, className: "PST04_110_NEWCHARACTER2", name: "[Event] Masinios Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 350, minAtk: 3359, maxAtk: 3943, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 635539, className: "Event_DAG05_103", name: "[Event] Savinose Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 635540, className: "Event_PST05_103", name: "[Event] Savinose Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 635564, className: "DAG04_116_EVENT_NewChar01", name: "[Event] Asio Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 635566, className: "PST04_113_EVENT_NewChar01", name: "[Event] Asio Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 635586, className: "FOREVER_DAG05_103", name: "[4ever] Savinose Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 635587, className: "FOREVER_PST05_103", name: "[4ever] Savinose Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 635614, className: "2020NEWYEAR_DAG05_103", name: "[Blossom Pack] Savinose Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 635615, className: "2020NEWYEAR_PST05_103", name: "[Blossom Pack] Savinose Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 635629, className: "TRK04_107_Ev", name: "[Event] Asio Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Trinket", minLevel: 380, minAtk: 432, maxAtk: 432, mAtk: 432 }, -{ itemId: 635630, className: "TRK04_106_Ev", name: "[Event] Wastrel Zvaigzde Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Trinket", minLevel: 380, minAtk: 432, maxAtk: 432, mAtk: 432 }, +{ itemId: 635539, className: "Event_DAG05_103", name: "[Event] Savinose Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 635540, className: "Event_PST05_103", name: "[Event] Savinose Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 635564, className: "DAG04_116_EVENT_NewChar01", name: "[Event] Asio Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 635566, className: "PST04_113_EVENT_NewChar01", name: "[Event] Asio Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 635586, className: "FOREVER_DAG05_103", name: "[4ever] Savinose Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 635587, className: "FOREVER_PST05_103", name: "[4ever] Savinose Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 635614, className: "2020NEWYEAR_DAG05_103", name: "[Blossom Pack] Savinose Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 635615, className: "2020NEWYEAR_PST05_103", name: "[Blossom Pack] Savinose Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 635629, className: "TRK04_107_Ev", name: "[Event] Asio Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Trinket", minLevel: 380, equipExpGroup: "Equip", minAtk: 432, maxAtk: 432, mAtk: 432 }, +{ itemId: 635630, className: "TRK04_106_Ev", name: "[Event] Wastrel Zvaigzde Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Trinket", minLevel: 380, equipExpGroup: "Equip", minAtk: 432, maxAtk: 432, mAtk: 432 }, { itemId: 636025, className: "T_DAG100_101", name: "[Kupole] Dirk Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 1530, maxAtk: 1796, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, { itemId: 636027, className: "T_PST100_101", name: "[Kupole] Long Pistol", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 1530, maxAtk: 1796, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 636041, className: "T_PST03_101", name: "[Kupole] Double Stack", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 2663, maxAtk: 3127, addMinAtk: 77, addMaxAtk: 128, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 636043, className: "T_DAG03_105", name: "[Kupole] Lion Head Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 2663, maxAtk: 3127, attackType: "Aries", leftHandSkill: "Common_DaggerAries", iceRes: -15 }, +{ itemId: 636041, className: "T_PST03_101", name: "[Kupole] Double Stack", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 2663, maxAtk: 3127, addMinAtk: 77, addMaxAtk: 128, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 636043, className: "T_DAG03_105", name: "[Kupole] Lion Head Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, equipExpGroup: "Equip", minAtk: 2663, maxAtk: 3127, attackType: "Aries", leftHandSkill: "Common_DaggerAries", iceRes: -15 }, { itemId: 636055, className: "DAG04_113_NEWCHARACTER_KU", name: "[Kupole] Masinios Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 350, minAtk: 3359, maxAtk: 3943, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, { itemId: 636057, className: "PST04_110_NEWCHARACTER_KU", name: "[Kupole] Masinios Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 350, minAtk: 3359, maxAtk: 3943, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, { itemId: 636123, className: "PC_DAG100_101", name: "[PP] Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 61, maxAtk: 71, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "PC_Equip" } }, { itemId: 636125, className: "PC_PST100_101", name: "[PP] Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 61, maxAtk: 71, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "PC_Equip" } }, -{ itemId: 636128, className: "PC_TRK02_101", name: "[PP] Leather Trinket", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Trinket", minLevel: 1, minAtk: 7, maxAtk: 7, mAtk: 7, script: { strArg: "PC_Equip" } }, +{ itemId: 636128, className: "PC_TRK02_101", name: "[PP] Leather Trinket", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Trinket", minLevel: 1, equipExpGroup: "Equip", minAtk: 7, maxAtk: 7, mAtk: 7, script: { strArg: "PC_Equip" } }, { itemId: 636223, className: "ChangeJob_DAG100_101", name: "Dagger", type: "Equip", group: "SubWeapon", weight: 200, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Growth_Item" } }, { itemId: 636225, className: "ChangeJob_PST100_101", name: "Pistol", type: "Equip", group: "SubWeapon", weight: 200, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Growth_Item" } }, { itemId: 636311, className: "NEWYEAR_WEAPON_DAG100_101", name: "[Wake Up] Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 47, maxAtk: 56, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Growth_Item_Unique" } }, @@ -23456,26 +23456,26 @@ { itemId: 636463, className: "POPO_SHOP_7D_PST100_101", name: "[Popo Shop] Pistol (7 Days)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 42, maxAtk: 49, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Growth_Item_Rare" } }, { itemId: 636511, className: "STEAM_TO_BEGIN_1_DAG04_117", name: "To begin: Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 47, maxAtk: 56, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Growth_Item_Unique" } }, { itemId: 636513, className: "STEAM_TO_BEGIN_1_PST04_116", name: "To begin: Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 47, maxAtk: 56, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Growth_Item_Unique" } }, -{ itemId: 636614, className: "PVP_DAG05_103", name: "Savinose Legva Dagger (20 min)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "pvp_Mine" } }, -{ itemId: 636615, className: "PVP_PST05_103", name: "Savinose Legva Pistol (20 min)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "pvp_Mine" } }, -{ itemId: 636639, className: "PVP_TRK05_102", name: "Savinose Elder Trinket (20 min)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Trinket", minLevel: 1, minAtk: 582, maxAtk: 582, mAtk: 582, script: { strArg: "pvp_Mine" } }, -{ itemId: 636656, className: "PVP_DAG04_123", name: "Vaivora Dagger - Cursed Dagger (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "pvp_Mine" } }, -{ itemId: 636658, className: "PVP_PST04_122", name: "Vaivora Pistol - Cryolite Bullet (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 4118, maxAtk: 4834, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "pvp_Mine" } }, -{ itemId: 636662, className: "PVP_TRK04_111", name: "Vaivora Trinket - Coordination (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Trinket", minLevel: 1, minAtk: 488, maxAtk: 488, mAtk: 488, script: { strArg: "pvp_Mine" } }, -{ itemId: 636666, className: "PVP_DAG04_123_1", name: "Vaivora Dagger - Shadow Clone (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "pvp_Mine" } }, -{ itemId: 636671, className: "PVP_PST04_122_1", name: "Vaivora Pistol - Renovate Trigger (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 4118, maxAtk: 4834, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "pvp_Mine" } }, -{ itemId: 636672, className: "PVP_DAG04_123_2", name: "Vaivora Dagger - Carpet Bombing (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", strike: 996, script: { strArg: "pvp_Mine" } }, -{ itemId: 636673, className: "PVP_DAG04_123_3", name: "Vaivora Dagger - Phantom Blade (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", aries: 996, script: { strArg: "pvp_Mine" } }, -{ itemId: 636682, className: "PVP_DAG04_123_4", name: "Vaivora Dagger - Coordination (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "pvp_Mine" } }, -{ itemId: 636711, className: "Event_DAG05_104", name: "[Moonlight] Skiaclipse Varna Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 636713, className: "Event_PST05_104", name: "[Moonlight] Skiaclipse Varna Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 636717, className: "Event_TRK05_103", name: "[Moonlight] Skiaclipse Varna Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 582, maxAtk: 582, mAtk: 582 }, +{ itemId: 636614, className: "PVP_DAG05_103", name: "Savinose Legva Dagger (20 min)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "pvp_Mine" } }, +{ itemId: 636615, className: "PVP_PST05_103", name: "Savinose Legva Pistol (20 min)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "pvp_Mine" } }, +{ itemId: 636639, className: "PVP_TRK05_102", name: "Savinose Elder Trinket (20 min)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Trinket", minLevel: 1, equipExpGroup: "Equip", minAtk: 582, maxAtk: 582, mAtk: 582, script: { strArg: "pvp_Mine" } }, +{ itemId: 636656, className: "PVP_DAG04_123", name: "Vaivora Dagger - Cursed Dagger (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "pvp_Mine" } }, +{ itemId: 636658, className: "PVP_PST04_122", name: "Vaivora Pistol - Cryolite Bullet (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "pvp_Mine" } }, +{ itemId: 636662, className: "PVP_TRK04_111", name: "Vaivora Trinket - Coordination (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Trinket", minLevel: 1, equipExpGroup: "Equip", minAtk: 488, maxAtk: 488, mAtk: 488, script: { strArg: "pvp_Mine" } }, +{ itemId: 636666, className: "PVP_DAG04_123_1", name: "Vaivora Dagger - Shadow Clone (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "pvp_Mine" } }, +{ itemId: 636671, className: "PVP_PST04_122_1", name: "Vaivora Pistol - Renovate Trigger (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "pvp_Mine" } }, +{ itemId: 636672, className: "PVP_DAG04_123_2", name: "Vaivora Dagger - Carpet Bombing (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", strike: 996, script: { strArg: "pvp_Mine" } }, +{ itemId: 636673, className: "PVP_DAG04_123_3", name: "Vaivora Dagger - Phantom Blade (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", aries: 996, script: { strArg: "pvp_Mine" } }, +{ itemId: 636682, className: "PVP_DAG04_123_4", name: "Vaivora Dagger - Coordination (20 minutes)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "pvp_Mine" } }, +{ itemId: 636711, className: "Event_DAG05_104", name: "[Moonlight] Skiaclipse Varna Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 636713, className: "Event_PST05_104", name: "[Moonlight] Skiaclipse Varna Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 636717, className: "Event_TRK05_103", name: "[Moonlight] Skiaclipse Varna Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 582, maxAtk: 582, mAtk: 582 }, { itemId: 636812, className: "NEWYEAR_WEAPON_DAG100_102", name: "[Harvest] Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 61, maxAtk: 71, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Growth_Item_Legend" } }, { itemId: 636814, className: "NEWYEAR_WEAPON_PST100_102", name: "[Harvest] Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 61, maxAtk: 71, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Growth_Item_Legend" } }, -{ itemId: 636927, className: "Grimoire_DAG04_116", name: "[Event] Asio Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 636929, className: "Grimoire_PST04_113", name: "[Event] Asio Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 636943, className: "Grimoire_DAG04_115", name: "[Event] Wastrel Zvaigzde Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 636945, className: "Grimoire_PST04_112", name: "[Event] Wastrel Zvaigzde Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 636927, className: "Grimoire_DAG04_116", name: "[Event] Asio Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 636929, className: "Grimoire_PST04_113", name: "[Event] Asio Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 636943, className: "Grimoire_DAG04_115", name: "[Event] Wastrel Zvaigzde Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 636945, className: "Grimoire_PST04_112", name: "[Event] Wastrel Zvaigzde Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, { itemId: 639711, className: "DAG01_113_QUEST_REWARD", name: "Kedoran Kris Dagger", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 0, equipType1: "Dagger", minLevel: 40, minAtk: 367, maxAtk: 431, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, { itemId: 639713, className: "PST01_113_QUEST_REWARD", name: "Kedoran Dunkel Wooden Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 40, minAtk: 367, maxAtk: 431, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, { itemId: 639739, className: "DAG01_105_QUEST_REWARD", name: "Kedoran Main Gauche", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Dagger", minLevel: 75, minAtk: 660, maxAtk: 774, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, @@ -23486,84 +23486,84 @@ { itemId: 639797, className: "PST03_305_QUEST_REWARD", name: "Kedoran Alcris", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 170, minAtk: 1453, maxAtk: 1705, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, { itemId: 639823, className: "DAG02_107_QUEST_REWARD", name: "Kedoran Pajoritas Dagger", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Dagger", minLevel: 220, minAtk: 1870, maxAtk: 2195, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, { itemId: 639825, className: "PST03_306_QUEST_REWARD", name: "Kedoran Pajoritas Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 220, minAtk: 1870, maxAtk: 2195, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 639847, className: "DAG04_104_QUEST_REWARD_NT", name: "Kedoran Emengard Dagger", type: "Equip", group: "SubWeapon", weight: 75, maxStack: 1, price: 48800, sellPrice: 8868, equipType1: "Dagger", minLevel: 315, minAtk: 3027, maxAtk: 3553, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 639853, className: "PST04_104_QUEST_REWARD_NT", name: "Kedoran Aspana Revolver", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 48800, sellPrice: 8868, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, minAtk: 3027, maxAtk: 3553, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 639847, className: "DAG04_104_QUEST_REWARD_NT", name: "Kedoran Emengard Dagger", type: "Equip", group: "SubWeapon", weight: 75, maxStack: 1, price: 48800, sellPrice: 8868, equipType1: "Dagger", minLevel: 315, equipExpGroup: "Equip", minAtk: 3027, maxAtk: 3553, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 639853, className: "PST04_104_QUEST_REWARD_NT", name: "Kedoran Aspana Revolver", type: "Equip", group: "SubWeapon", weight: 140, maxStack: 1, price: 48800, sellPrice: 8868, equipType1: "Pistol", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 3027, maxAtk: 3553, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, { itemId: 639863, className: "DAG04_112_QUEST_REWARD", name: "Kedoran Raffye Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Dagger", minLevel: 350, minAtk: 3359, maxAtk: 3943, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, { itemId: 639869, className: "PST04_109_QUEST_REWARD", name: "Kedoran Raffye Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 350, minAtk: 3359, maxAtk: 3943, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 639883, className: "DAG04_114_QUEST_REWARD", name: "Kedoran Zvaigzde Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 639885, className: "PST04_111_QUEST_REWARD", name: "Kedoran Zvaigzde Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 639913, className: "DAG04_110_QUEST_REWARD", name: "Kedoran Primus Migantis Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Dagger", minLevel: 270, minAtk: 2600, maxAtk: 3052, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 639915, className: "PST04_107_QUEST_REWARD", name: "Kedoran Primus Migantis Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, minAtk: 2600, maxAtk: 3052, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 639965, className: "DAG04_117_QUEST_REWARD", name: "Kedoran Primus Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 3833, maxAtk: 4500, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 639967, className: "PST04_116_QUEST_REWARD", name: "Kedoran Primus Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 3833, maxAtk: 4500, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 692001, className: "TRK02_101", name: "Leather Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Trinket", minLevel: 350, minAtk: 319, maxAtk: 319, mAtk: 319 }, -{ itemId: 692002, className: "TRK02_102", name: "Bone Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Trinket", minLevel: 380, minAtk: 346, maxAtk: 346, mAtk: 346 }, -{ itemId: 692003, className: "TRK02_103", name: "Elder Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 364, maxAtk: 364, mAtk: 364 }, -{ itemId: 693001, className: "TRK03_101", name: "Berthas Leather Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Trinket", minLevel: 350, minAtk: 350, maxAtk: 350, mAtk: 350 }, -{ itemId: 693002, className: "TRK03_102", name: "Berthas Bone Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Trinket", minLevel: 380, minAtk: 380, maxAtk: 380, mAtk: 380 }, -{ itemId: 693003, className: "TRK03_103", name: "Berthas Elder Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 400, maxAtk: 400, mAtk: 400 }, -{ itemId: 693004, className: "TRK03_104", name: "Berthas Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Trinket", minLevel: 430, minAtk: 430, maxAtk: 430, mAtk: 430 }, -{ itemId: 694001, className: "TRK04_101", name: "Primus Leather Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Trinket", minLevel: 350, minAtk: 398, maxAtk: 398, mAtk: 398 }, -{ itemId: 694002, className: "TRK04_102", name: "Primus Bone Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Trinket", minLevel: 380, minAtk: 432, maxAtk: 432, mAtk: 432 }, -{ itemId: 694003, className: "TRK04_103", name: "Primus Elder Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 454, maxAtk: 454, mAtk: 454 }, -{ itemId: 694004, className: "TRK04_104", name: "Primus Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Trinket", minLevel: 430, minAtk: 488, maxAtk: 488, mAtk: 488 }, -{ itemId: 694005, className: "TRK04_105", name: "Masinios Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Trinket", minLevel: 350, minAtk: 398, maxAtk: 398, mAtk: 398 }, -{ itemId: 694006, className: "TRK04_106", name: "Wastrel Zvaigzde Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Trinket", minLevel: 380, minAtk: 432, maxAtk: 432, mAtk: 432 }, -{ itemId: 694007, className: "TRK04_107", name: "Asio Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Trinket", minLevel: 380, minAtk: 432, maxAtk: 432, mAtk: 432 }, -{ itemId: 694008, className: "TRK04_108", name: "Skiaclipse Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 454, maxAtk: 454, mAtk: 454 }, -{ itemId: 694009, className: "TRK04_109", name: "Moringponia Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 454, maxAtk: 454, mAtk: 454 }, -{ itemId: 694010, className: "TRK04_110", name: "Misrus Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 454, maxAtk: 454, mAtk: 454 }, -{ itemId: 695001, className: "TRK05_101", name: "Velcoffer Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Trinket", minLevel: 360, minAtk: 524, maxAtk: 524, mAtk: 524 }, -{ itemId: 695002, className: "TRK05_102", name: "Savinose Elder Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 582, maxAtk: 582, mAtk: 582 }, -{ itemId: 695003, className: "TRK05_103", name: "Skiaclipse Varna Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 582, maxAtk: 582, mAtk: 582 }, +{ itemId: 639883, className: "DAG04_114_QUEST_REWARD", name: "Kedoran Zvaigzde Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Dagger", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 639885, className: "PST04_111_QUEST_REWARD", name: "Kedoran Zvaigzde Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3643, maxAtk: 4277, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 639913, className: "DAG04_110_QUEST_REWARD", name: "Kedoran Primus Migantis Dagger", type: "Equip", group: "SubWeapon", weight: 100, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Dagger", minLevel: 270, equipExpGroup: "Equip", minAtk: 2600, maxAtk: 3052, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 639915, className: "PST04_107_QUEST_REWARD", name: "Kedoran Primus Migantis Pistol", type: "Equip", group: "SubWeapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 2600, maxAtk: 3052, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 639965, className: "DAG04_117_QUEST_REWARD", name: "Kedoran Primus Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 639967, className: "PST04_116_QUEST_REWARD", name: "Kedoran Primus Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 692001, className: "TRK02_101", name: "Leather Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Trinket", minLevel: 350, equipExpGroup: "Equip", minAtk: 319, maxAtk: 319, mAtk: 319 }, +{ itemId: 692002, className: "TRK02_102", name: "Bone Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Trinket", minLevel: 380, equipExpGroup: "Equip", minAtk: 346, maxAtk: 346, mAtk: 346 }, +{ itemId: 692003, className: "TRK02_103", name: "Elder Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 364, maxAtk: 364, mAtk: 364 }, +{ itemId: 693001, className: "TRK03_101", name: "Berthas Leather Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Trinket", minLevel: 350, equipExpGroup: "Equip", minAtk: 350, maxAtk: 350, mAtk: 350 }, +{ itemId: 693002, className: "TRK03_102", name: "Berthas Bone Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Trinket", minLevel: 380, equipExpGroup: "Equip", minAtk: 380, maxAtk: 380, mAtk: 380 }, +{ itemId: 693003, className: "TRK03_103", name: "Berthas Elder Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 400, maxAtk: 400, mAtk: 400 }, +{ itemId: 693004, className: "TRK03_104", name: "Berthas Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Trinket", minLevel: 430, equipExpGroup: "Equip", minAtk: 430, maxAtk: 430, mAtk: 430 }, +{ itemId: 694001, className: "TRK04_101", name: "Primus Leather Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Trinket", minLevel: 350, equipExpGroup: "Equip", minAtk: 398, maxAtk: 398, mAtk: 398 }, +{ itemId: 694002, className: "TRK04_102", name: "Primus Bone Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Trinket", minLevel: 380, equipExpGroup: "Equip", minAtk: 432, maxAtk: 432, mAtk: 432 }, +{ itemId: 694003, className: "TRK04_103", name: "Primus Elder Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 454, maxAtk: 454, mAtk: 454 }, +{ itemId: 694004, className: "TRK04_104", name: "Primus Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Trinket", minLevel: 430, equipExpGroup: "Equip", minAtk: 488, maxAtk: 488, mAtk: 488 }, +{ itemId: 694005, className: "TRK04_105", name: "Masinios Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Trinket", minLevel: 350, equipExpGroup: "Equip", minAtk: 398, maxAtk: 398, mAtk: 398 }, +{ itemId: 694006, className: "TRK04_106", name: "Wastrel Zvaigzde Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Trinket", minLevel: 380, equipExpGroup: "Equip", minAtk: 432, maxAtk: 432, mAtk: 432 }, +{ itemId: 694007, className: "TRK04_107", name: "Asio Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 34194, sellPrice: 0, equipType1: "Trinket", minLevel: 380, equipExpGroup: "Equip", minAtk: 432, maxAtk: 432, mAtk: 432 }, +{ itemId: 694008, className: "TRK04_108", name: "Skiaclipse Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 454, maxAtk: 454, mAtk: 454 }, +{ itemId: 694009, className: "TRK04_109", name: "Moringponia Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 454, maxAtk: 454, mAtk: 454 }, +{ itemId: 694010, className: "TRK04_110", name: "Misrus Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 454, maxAtk: 454, mAtk: 454 }, +{ itemId: 695001, className: "TRK05_101", name: "Velcoffer Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 33279, sellPrice: 0, equipType1: "Trinket", minLevel: 360, equipExpGroup: "Equip", minAtk: 524, maxAtk: 524, mAtk: 524 }, +{ itemId: 695002, className: "TRK05_102", name: "Savinose Elder Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 582, maxAtk: 582, mAtk: 582 }, +{ itemId: 695003, className: "TRK05_103", name: "Skiaclipse Varna Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 582, maxAtk: 582, mAtk: 582 }, { itemId: 6360112, className: "FOREVER_WEAPON_DAG100_102", name: "[4ever] Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 61, maxAtk: 71, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Growth_Item_Legend" } }, { itemId: 6360114, className: "FOREVER_WEAPON_PST100_102", name: "[4ever] Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 61, maxAtk: 71, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Growth_Item_Legend" } }, -{ itemId: 6370105, className: "PVP_PST04_122_2", name: "Vaivora Pistol - Speedloader (20 minutes)", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 4118, maxAtk: 4834, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370113, className: "PVP_DAG04_123_5", name: "Vaivora Dagger - Ecliptic Blades (20 minutes)", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370116, className: "PVP_DAG04_123_6", name: "Vaivora Dagger - Echo (20 minutes)", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370123, className: "PVP_PST04_122_3", name: "Vaivora Pistol - Sabotage (20 minutes)", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 4118, maxAtk: 4834, middleSizeBonus: 988, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370124, className: "PVP_DAG04_123_7", name: "Vaivora Dagger - Gasp Up (20 minutes)", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "pvp_Mine" } }, -{ itemId: 6530014, className: "EP11_DAG05_103", name: "[EP11] Savinose Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 6530015, className: "EP11_PST05_103", name: "[EP11] Savinose Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 6530029, className: "EP11_TRK05_102", name: "[EP11] Savinose Elder Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 582, maxAtk: 582, mAtk: 582 }, -{ itemId: 9999997, className: "NoWeapon_Shotsword", name: "Empty_weapon", type: "Equip", group: "SubWeapon", weight: 1, maxStack: 1, price: 0, sellPrice: 0 }, +{ itemId: 6370105, className: "PVP_PST04_122_2", name: "Vaivora Pistol - Speedloader (20 minutes)", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370113, className: "PVP_DAG04_123_5", name: "Vaivora Dagger - Ecliptic Blades (20 minutes)", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370116, className: "PVP_DAG04_123_6", name: "Vaivora Dagger - Echo (20 minutes)", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370123, className: "PVP_PST04_122_3", name: "Vaivora Pistol - Sabotage (20 minutes)", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, middleSizeBonus: 988, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370124, className: "PVP_DAG04_123_7", name: "Vaivora Dagger - Gasp Up (20 minutes)", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "pvp_Mine" } }, +{ itemId: 6530014, className: "EP11_DAG05_103", name: "[EP11] Savinose Legva Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 6530015, className: "EP11_PST05_103", name: "[EP11] Savinose Legva Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 6530029, className: "EP11_TRK05_102", name: "[EP11] Savinose Elder Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 582, maxAtk: 582, mAtk: 582 }, +{ itemId: 9999997, className: "NoWeapon_Shotsword", name: "Empty_weapon", type: "Equip", group: "SubWeapon", weight: 1, maxStack: 1, price: 0, sellPrice: 0, equipExpGroup: "Equip" }, { itemId: 10300003, className: "EVENT_Guild_ABAND_01", name: "Guild Love Armband (Blue)", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Armband", equipType2: "Armband", minLevel: 1 }, { itemId: 10300006, className: "ABAND_MOONPOPO", name: "Moonlight Popolion Armband", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 0, sellPrice: 0, equipType1: "Armband", equipType2: "Armband", minLevel: 1 }, -{ itemId: 10306004, className: "Event_DAG05_104_Roulette", name: "[Event] Skiaclipse Varna Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 10306005, className: "Event_PST05_104_Roulette", name: "[Event] Skiaclipse Varna Pistol ", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 10306011, className: "Event_TRK05_103_Roulette", name: "[Event] Skiaclipse Varna Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 582, maxAtk: 582, mAtk: 582 }, -{ itemId: 10306051, className: "Event_EP12_FIELD_DAGGER", name: "[Event] Savinose Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 10306053, className: "Event_EP12_FIELD_PISTOL", name: "[Event] Savinose Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 10306057, className: "Event_EP12_FIELD_TRINKET", name: "[Event] Savinose Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, minAtk: 703, maxAtk: 703, mAtk: 703 }, -{ itemId: 10306080, className: "Event2_EP12_FIELD_DAGGER", name: "[Event] Savinose Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 10306082, className: "Event2_EP12_FIELD_PISTOL", name: "[Event] Savinose Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 10306086, className: "Event2_EP12_FIELD_TRINKET", name: "[Event] Savinose Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, minAtk: 703, maxAtk: 703, mAtk: 703 }, -{ itemId: 10306097, className: "Event_EP12_RAID_DAGGER", name: "[Event] Glacia Legenda Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Legenda" } }, -{ itemId: 10306099, className: "Event_EP12_RAID_PISTOL", name: "[Event] Glacia Legenda Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Legenda" } }, -{ itemId: 10306103, className: "Event_EP12_RAID_TRINKET", name: "[Event] Glacia Legenda Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, minAtk: 703, maxAtk: 703, mAtk: 703, script: { strArg: "Legenda" } }, -{ itemId: 10306126, className: "Event_EP12_RAID_DAGGER_2", name: "[Event] Glacia Legenda Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Legenda" } }, -{ itemId: 10306128, className: "Event_EP12_RAID_PISTOL_2", name: "[Event] Glacia Legenda Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Legenda" } }, -{ itemId: 10306132, className: "Event_EP12_RAID_TRINKET_2", name: "[Event] Glacia Legenda Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, minAtk: 703, maxAtk: 703, mAtk: 703, script: { strArg: "Legenda" } }, +{ itemId: 10306004, className: "Event_DAG05_104_Roulette", name: "[Event] Skiaclipse Varna Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 10306005, className: "Event_PST05_104_Roulette", name: "[Event] Skiaclipse Varna Pistol ", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4906, maxAtk: 5759, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 10306011, className: "Event_TRK05_103_Roulette", name: "[Event] Skiaclipse Varna Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 582, maxAtk: 582, mAtk: 582 }, +{ itemId: 10306051, className: "Event_EP12_FIELD_DAGGER", name: "[Event] Savinose Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 10306053, className: "Event_EP12_FIELD_PISTOL", name: "[Event] Savinose Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 10306057, className: "Event_EP12_FIELD_TRINKET", name: "[Event] Savinose Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, equipExpGroup: "Equip", minAtk: 703, maxAtk: 703, mAtk: 703 }, +{ itemId: 10306080, className: "Event2_EP12_FIELD_DAGGER", name: "[Event] Savinose Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 10306082, className: "Event2_EP12_FIELD_PISTOL", name: "[Event] Savinose Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 10306086, className: "Event2_EP12_FIELD_TRINKET", name: "[Event] Savinose Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, equipExpGroup: "Equip", minAtk: 703, maxAtk: 703, mAtk: 703 }, +{ itemId: 10306097, className: "Event_EP12_RAID_DAGGER", name: "[Event] Glacia Legenda Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Legenda" } }, +{ itemId: 10306099, className: "Event_EP12_RAID_PISTOL", name: "[Event] Glacia Legenda Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Legenda" } }, +{ itemId: 10306103, className: "Event_EP12_RAID_TRINKET", name: "[Event] Glacia Legenda Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, equipExpGroup: "Equip", minAtk: 703, maxAtk: 703, mAtk: 703, script: { strArg: "Legenda" } }, +{ itemId: 10306126, className: "Event_EP12_RAID_DAGGER_2", name: "[Event] Glacia Legenda Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Legenda" } }, +{ itemId: 10306128, className: "Event_EP12_RAID_PISTOL_2", name: "[Event] Glacia Legenda Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Legenda" } }, +{ itemId: 10306132, className: "Event_EP12_RAID_TRINKET_2", name: "[Event] Glacia Legenda Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, equipExpGroup: "Equip", minAtk: 703, maxAtk: 703, mAtk: 703, script: { strArg: "Legenda" } }, { itemId: 10306156, className: "Event_Growth_Dagger", name: "[Growth] Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 61, maxAtk: 71, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, { itemId: 10306158, className: "Event_Growth_Pistol", name: "[Growth] Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 61, maxAtk: 71, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, -{ itemId: 10306161, className: "Event_Growth_Trinket", name: "[Growth] Trinket", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Trinket", minLevel: 1, minAtk: 7, maxAtk: 7, mAtk: 7, script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, -{ itemId: 10310015, className: "DAG04_120_Ev", name: "[Event] Moringponia Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 3833, maxAtk: 4500, addMaxAtk: 296, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 10310016, className: "PST04_118_Ev", name: "[Event] Moringponia Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 3833, maxAtk: 4500, addMaxAtk: 280, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 10310017, className: "PST04_119_Ev", name: "[Event] Moringponia Revolver", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 3833, maxAtk: 4500, addMaxAtk: 280, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 10310018, className: "TRK04_109_Ev", name: "[Event] Moringponia Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 454, maxAtk: 454, mAtk: 454 }, -{ itemId: 10310032, className: "DAG04_121_Ev", name: "[Event] Misrus Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 3833, maxAtk: 4500, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 10310033, className: "PST04_120_Ev", name: "[Event] Misrus Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 3833, maxAtk: 4500, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 10310034, className: "TRK04_110_Ev", name: "[Event] Misrus Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 454, maxAtk: 454, mAtk: 454 }, -{ itemId: 10310050, className: "DAG_Galimybe", name: "Galimive Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Dagger", minLevel: 430, minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 10310051, className: "PST_Galimybe", name: "Galimive Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 430, minAtk: 4118, maxAtk: 4834, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 10310052, className: "TRK_Galimybe", name: "Galimive Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Trinket", minLevel: 430, minAtk: 488, maxAtk: 488, mAtk: 488 }, -{ itemId: 10310068, className: "DAG04_120_Ev_2", name: "[Event] Moringponia Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 3833, maxAtk: 4500, addMaxAtk: 296, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 10310069, className: "PST04_118_Ev_2", name: "[Event] Moringponia Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 3833, maxAtk: 4500, addMaxAtk: 280, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 10310070, className: "PST04_119_Ev_2", name: "[Event] Moringponia Revolver", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 3833, maxAtk: 4500, addMaxAtk: 280, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 10310071, className: "TRK04_109_Ev_2", name: "[Event] Moringponia Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 454, maxAtk: 454, mAtk: 454 }, -{ itemId: 10310085, className: "DAG04_121_Ev_2", name: "[Event] Misrus Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, minAtk: 3833, maxAtk: 4500, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 10310086, className: "PST04_120_Ev_2", name: "[Event] Misrus Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, minAtk: 3833, maxAtk: 4500, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 10310087, className: "TRK04_110_Ev_2", name: "[Event] Misrus Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, minAtk: 454, maxAtk: 454, mAtk: 454 }, +{ itemId: 10306161, className: "Event_Growth_Trinket", name: "[Growth] Trinket", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Trinket", minLevel: 1, equipExpGroup: "Equip", minAtk: 7, maxAtk: 7, mAtk: 7, script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, +{ itemId: 10310015, className: "DAG04_120_Ev", name: "[Event] Moringponia Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, addMaxAtk: 296, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 10310016, className: "PST04_118_Ev", name: "[Event] Moringponia Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, addMaxAtk: 280, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 10310017, className: "PST04_119_Ev", name: "[Event] Moringponia Revolver", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, addMaxAtk: 280, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 10310018, className: "TRK04_109_Ev", name: "[Event] Moringponia Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 454, maxAtk: 454, mAtk: 454 }, +{ itemId: 10310032, className: "DAG04_121_Ev", name: "[Event] Misrus Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 10310033, className: "PST04_120_Ev", name: "[Event] Misrus Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 10310034, className: "TRK04_110_Ev", name: "[Event] Misrus Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 454, maxAtk: 454, mAtk: 454 }, +{ itemId: 10310050, className: "DAG_Galimybe", name: "Galimive Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Dagger", minLevel: 430, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 10310051, className: "PST_Galimybe", name: "Galimive Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 430, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 10310052, className: "TRK_Galimybe", name: "Galimive Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Trinket", minLevel: 430, equipExpGroup: "Equip", minAtk: 488, maxAtk: 488, mAtk: 488 }, +{ itemId: 10310068, className: "DAG04_120_Ev_2", name: "[Event] Moringponia Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, addMaxAtk: 296, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 10310069, className: "PST04_118_Ev_2", name: "[Event] Moringponia Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, addMaxAtk: 280, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 10310070, className: "PST04_119_Ev_2", name: "[Event] Moringponia Revolver", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, addMaxAtk: 280, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 10310071, className: "TRK04_109_Ev_2", name: "[Event] Moringponia Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 454, maxAtk: 454, mAtk: 454 }, +{ itemId: 10310085, className: "DAG04_121_Ev_2", name: "[Event] Misrus Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Dagger", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 10310086, className: "PST04_120_Ev_2", name: "[Event] Misrus Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3833, maxAtk: 4500, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 10310087, className: "TRK04_110_Ev_2", name: "[Event] Misrus Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 38765, sellPrice: 0, equipType1: "Trinket", minLevel: 400, equipExpGroup: "Equip", minAtk: 454, maxAtk: 454, mAtk: 454 }, { itemId: 10313001, className: "E_SubWeapon_630010", name: "Vuvuzela (30 Days)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Artefact", minLevel: 1, leftHandSkill: "Common_vuvuzela" }, { itemId: 10313002, className: "E_SubWeapon_630012", name: "Shovel (30 Days)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Artefact", minLevel: 1, leftHandSkill: "Common_shovel" }, { itemId: 10313003, className: "E_SubWeapon_630013", name: "Detector (30 Days)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Artefact", minLevel: 1, leftHandSkill: "Common_metaldetector" }, @@ -23572,18 +23572,18 @@ { itemId: 10313006, className: "E_SubWeapon_630018", name: "Party Horn (30 Days)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Artefact", minLevel: 1, leftHandSkill: "Common_balloonpipe" }, { itemId: 10313007, className: "E_SubWeapon_630021", name: "Snow Spray (30 Days)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Artefact", minLevel: 1, leftHandSkill: "Common_snowspray2" }, { itemId: 10313008, className: "E_SubWeapon_630022", name: "Foldable Stool (30 Days)", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Artefact", minLevel: 1, leftHandSkill: "Common_foldingchair" }, -{ itemId: 10800023, className: "Episode12_EP12_FIELD_DAGGER", name: "[EP12] Savinose Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 10800025, className: "Episode12_EP12_FIELD_PISTOL", name: "[EP12] Savinose Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 10800029, className: "Episode12_EP12_FIELD_TRINKET", name: "[EP12] Savinose Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, minAtk: 703, maxAtk: 703, mAtk: 703 }, -{ itemId: 10800052, className: "2021_NewYear_EP12_FIELD_DAGGER", name: "[2021] Savinose Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 10800054, className: "2021_NewYear_EP12_FIELD_PISTOL", name: "[2021] Savinose Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 10800058, className: "2021_NewYear_EP12_FIELD_TRINKET", name: "[2021] Savinose Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, minAtk: 703, maxAtk: 703, mAtk: 703 }, -{ itemId: 10999011, className: "TOSHero_DAGGER", name: "Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 920, maxAtk: 1080, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999013, className: "TOSHero_PISTOL", name: "Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 920, maxAtk: 1080, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999017, className: "TOSHero_TRINKET", name: "Trinket", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Trinket", minLevel: 1, minAtk: 1000, maxAtk: 1000, mAtk: 1000, def: 1000, mDef: 1000, script: { strArg: "TOSHeroEquip" } }, -{ itemId: 11002020, className: "EP12_DAG04_001", name: "Glacia Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Dagger", minLevel: 430, minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 11002024, className: "EP12_PST04_001", name: "Glacia Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 430, minAtk: 4118, maxAtk: 4834, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 11002026, className: "EP12_TRK04_001", name: "Glacia Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Trinket", minLevel: 430, minAtk: 488, maxAtk: 488, mAtk: 488, middleSizeBonus: 350 }, +{ itemId: 10800023, className: "Episode12_EP12_FIELD_DAGGER", name: "[EP12] Savinose Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 10800025, className: "Episode12_EP12_FIELD_PISTOL", name: "[EP12] Savinose Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 10800029, className: "Episode12_EP12_FIELD_TRINKET", name: "[EP12] Savinose Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, equipExpGroup: "Equip", minAtk: 703, maxAtk: 703, mAtk: 703 }, +{ itemId: 10800052, className: "2021_NewYear_EP12_FIELD_DAGGER", name: "[2021] Savinose Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 10800054, className: "2021_NewYear_EP12_FIELD_PISTOL", name: "[2021] Savinose Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 10800058, className: "2021_NewYear_EP12_FIELD_TRINKET", name: "[2021] Savinose Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, equipExpGroup: "Equip", minAtk: 703, maxAtk: 703, mAtk: 703 }, +{ itemId: 10999011, className: "TOSHero_DAGGER", name: "Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, equipExpGroup: "Equip", minAtk: 920, maxAtk: 1080, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999013, className: "TOSHero_PISTOL", name: "Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 920, maxAtk: 1080, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999017, className: "TOSHero_TRINKET", name: "Trinket", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Trinket", minLevel: 1, equipExpGroup: "Equip", minAtk: 1000, maxAtk: 1000, mAtk: 1000, def: 1000, mDef: 1000, script: { strArg: "TOSHeroEquip" } }, +{ itemId: 11002020, className: "EP12_DAG04_001", name: "Glacia Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Dagger", minLevel: 430, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 11002024, className: "EP12_PST04_001", name: "Glacia Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 430, equipExpGroup: "Equip", minAtk: 4118, maxAtk: 4834, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 11002026, className: "EP12_TRK04_001", name: "Glacia Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 39679, sellPrice: 0, equipType1: "Trinket", minLevel: 430, equipExpGroup: "Equip", minAtk: 488, maxAtk: 488, mAtk: 488, middleSizeBonus: 350 }, { itemId: 11007011, className: "EP12_Artefact_011", name: "Simmering Starlight Dagger", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "WoodCarving" } }, { itemId: 11007015, className: "EP12_Artefact_015", name: "West Biplane Pistol", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "WoodCarving" } }, { itemId: 11007027, className: "EP12_Artefact_027", name: "Mayflower Dagger", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "WoodCarving" } }, @@ -23635,29 +23635,29 @@ { itemId: 11007402, className: "EP12_Artefact_113", name: "[Appearance Change] Glacia Dagger", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "WoodCarving" } }, { itemId: 11007406, className: "EP12_Artefact_117", name: "[Appearance Change] Glacia Pistol", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "WoodCarving" } }, { itemId: 11007410, className: "EP13_Artefact_121_NoTrade", name: "TOSummer Dagger", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "WoodCarving" } }, -{ itemId: 11020011, className: "EP12_FIELD_DAGGER", name: "Savinose Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Legenda" } }, -{ itemId: 11020013, className: "EP12_FIELD_PISTOL", name: "Savinose Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Legenda" } }, -{ itemId: 11020017, className: "EP12_FIELD_TRINKET", name: "Savinose Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, minAtk: 703, maxAtk: 703, mAtk: 703, script: { strArg: "Legenda" } }, -{ itemId: 11020028, className: "EP12_RAID_DAGGER", name: "Glacia Legenda Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Legenda" } }, -{ itemId: 11020030, className: "EP12_RAID_PISTOL", name: "Glacia Legenda Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Legenda" } }, -{ itemId: 11020034, className: "EP12_RAID_TRINKET", name: "Glacia Legenda Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, minAtk: 703, maxAtk: 703, mAtk: 703, script: { strArg: "Legenda" } }, -{ itemId: 11040014, className: "Dummy_Dagger_Guilty", name: "Liberated Res Sacrae Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, -{ itemId: 11040018, className: "Dummy_Pistol_Guilty", name: "Liberated Res Sacrae Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, -{ itemId: 11095010, className: "EP13_RAID_DAGGER", name: "Vasilisa Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Dagger", minLevel: 460, minAtk: 12078, maxAtk: 14178, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095012, className: "EP13_RAID_PISTOL", name: "Vasilisa Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 460, minAtk: 12078, maxAtk: 14178, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095016, className: "EP13_RAID_TRINKET", name: "Vasilisa Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Trinket", minLevel: 460, minAtk: 1969, maxAtk: 1969, mAtk: 1969, script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11096510, className: "GROWTH_REINFORCE_TIER1_DAGGER", name: "Guardian Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 74, maxAtk: 86, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096512, className: "GROWTH_REINFORCE_TIER1_PISTOL", name: "Guardian Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 74, maxAtk: 86, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096516, className: "GROWTH_REINFORCE_TIER1_TRINKET", name: "Guardian Trinket", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Trinket", minLevel: 1, minAtk: 9, maxAtk: 9, mAtk: 9, script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096540, className: "GROWTH_REINFORCE_TIER2_DAGGER", name: "Elite Guardian Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Dagger", minLevel: 120, minAtk: 1716, maxAtk: 2014, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096542, className: "GROWTH_REINFORCE_TIER2_PISTOL", name: "Elite Guardian Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 120, minAtk: 1716, maxAtk: 2014, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096546, className: "GROWTH_REINFORCE_TIER2_TRINKET", name: "Elite Guardian Trinket", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 9312, sellPrice: 0, equipType1: "Trinket", minLevel: 120, minAtk: 310, maxAtk: 310, mAtk: 310, script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096580, className: "GROWTH_REINFORCE_TIER3_DAGGER", name: "Royal Guardian Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Dagger", minLevel: 280, minAtk: 7927, maxAtk: 9305, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096582, className: "GROWTH_REINFORCE_TIER3_PISTOL", name: "Royal Guardian Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 280, minAtk: 7927, maxAtk: 9305, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096586, className: "GROWTH_REINFORCE_TIER3_TRINKET", name: "Royal Guardian Trinket", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 24768, sellPrice: 0, equipType1: "Trinket", minLevel: 280, minAtk: 1278, maxAtk: 1278, mAtk: 1278, script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11100037, className: "EP14_RAID_DAGGER", name: "Reservoir Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Dagger", minLevel: 480, minAtk: 28107, maxAtk: 32995, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100039, className: "EP14_RAID_PISTOL", name: "Reservoir Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 480, minAtk: 28107, maxAtk: 32995, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100043, className: "EP14_RAID_TRINKET", name: "Reservoir Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44616, sellPrice: 0, equipType1: "Trinket", minLevel: 480, minAtk: 4583, maxAtk: 4583, mAtk: 4583, script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11020011, className: "EP12_FIELD_DAGGER", name: "Savinose Dysnai Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Legenda" } }, +{ itemId: 11020013, className: "EP12_FIELD_PISTOL", name: "Savinose Dysnai Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Legenda" } }, +{ itemId: 11020017, className: "EP12_FIELD_TRINKET", name: "Savinose Dysnai Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, equipExpGroup: "Equip", minAtk: 703, maxAtk: 703, mAtk: 703, script: { strArg: "Legenda" } }, +{ itemId: 11020028, className: "EP12_RAID_DAGGER", name: "Glacia Legenda Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Dagger", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Legenda" } }, +{ itemId: 11020030, className: "EP12_RAID_PISTOL", name: "Glacia Legenda Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 6039, maxAtk: 7089, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Legenda" } }, +{ itemId: 11020034, className: "EP12_RAID_TRINKET", name: "Glacia Legenda Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44251, sellPrice: 0, equipType1: "Trinket", minLevel: 440, equipExpGroup: "Equip", minAtk: 703, maxAtk: 703, mAtk: 703, script: { strArg: "Legenda" } }, +{ itemId: 11040014, className: "Dummy_Dagger_Guilty", name: "Liberated Res Sacrae Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, equipExpGroup: "Equip", minAtk: 34, maxAtk: 40, attackType: "Aries", leftHandSkill: "Common_DaggerAries" }, +{ itemId: 11040018, className: "Dummy_Pistol_Guilty", name: "Liberated Res Sacrae Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 34, maxAtk: 40, attackType: "Gun", leftHandSkill: "Pistol_Attack" }, +{ itemId: 11095010, className: "EP13_RAID_DAGGER", name: "Vasilisa Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Dagger", minLevel: 460, equipExpGroup: "Equip", minAtk: 12078, maxAtk: 14178, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095012, className: "EP13_RAID_PISTOL", name: "Vasilisa Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 460, equipExpGroup: "Equip", minAtk: 12078, maxAtk: 14178, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095016, className: "EP13_RAID_TRINKET", name: "Vasilisa Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44342, sellPrice: 0, equipType1: "Trinket", minLevel: 460, equipExpGroup: "Equip", minAtk: 1969, maxAtk: 1969, mAtk: 1969, script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11096510, className: "GROWTH_REINFORCE_TIER1_DAGGER", name: "Guardian Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, equipExpGroup: "Equip", minAtk: 74, maxAtk: 86, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096512, className: "GROWTH_REINFORCE_TIER1_PISTOL", name: "Guardian Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 74, maxAtk: 86, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096516, className: "GROWTH_REINFORCE_TIER1_TRINKET", name: "Guardian Trinket", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 240, sellPrice: 0, equipType1: "Trinket", minLevel: 1, equipExpGroup: "Equip", minAtk: 9, maxAtk: 9, mAtk: 9, script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096540, className: "GROWTH_REINFORCE_TIER2_DAGGER", name: "Elite Guardian Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Dagger", minLevel: 120, equipExpGroup: "Equip", minAtk: 1716, maxAtk: 2014, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096542, className: "GROWTH_REINFORCE_TIER2_PISTOL", name: "Elite Guardian Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 120, equipExpGroup: "Equip", minAtk: 1716, maxAtk: 2014, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096546, className: "GROWTH_REINFORCE_TIER2_TRINKET", name: "Elite Guardian Trinket", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 9312, sellPrice: 0, equipType1: "Trinket", minLevel: 120, equipExpGroup: "Equip", minAtk: 310, maxAtk: 310, mAtk: 310, script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096580, className: "GROWTH_REINFORCE_TIER3_DAGGER", name: "Royal Guardian Dagger", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Dagger", minLevel: 280, equipExpGroup: "Equip", minAtk: 7927, maxAtk: 9305, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096582, className: "GROWTH_REINFORCE_TIER3_PISTOL", name: "Royal Guardian Pistol", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 280, equipExpGroup: "Equip", minAtk: 7927, maxAtk: 9305, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096586, className: "GROWTH_REINFORCE_TIER3_TRINKET", name: "Royal Guardian Trinket", type: "Equip", group: "SubWeapon", weight: 0, maxStack: 1, price: 24768, sellPrice: 0, equipType1: "Trinket", minLevel: 280, equipExpGroup: "Equip", minAtk: 1278, maxAtk: 1278, mAtk: 1278, script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11100037, className: "EP14_RAID_DAGGER", name: "Reservoir Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Dagger", minLevel: 480, equipExpGroup: "Equip", minAtk: 28107, maxAtk: 32995, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100039, className: "EP14_RAID_PISTOL", name: "Reservoir Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 480, equipExpGroup: "Equip", minAtk: 28107, maxAtk: 32995, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100043, className: "EP14_RAID_TRINKET", name: "Reservoir Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 44616, sellPrice: 0, equipType1: "Trinket", minLevel: 480, equipExpGroup: "Equip", minAtk: 4583, maxAtk: 4583, mAtk: 4583, script: { strArg: "Goddess_Weapon_Lv480" } }, { itemId: 11104003, className: "guiltynelaima_dagger", name: "Goddess Sister's Dagger", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "WoodCarving" } }, { itemId: 11104008, className: "EP15_Artefact_002", name: "Lofty Snow Dagger", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "WoodCarving" } }, { itemId: 11104029, className: "ep15elf_dagger", name: "Faerie Dagger", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 34, maxAtk: 40, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "WoodCarving" } }, @@ -23665,12 +23665,12 @@ { itemId: 11104041, className: "desperado_revolver", name: "Vengadora de Desperado", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 1, minAtk: 42, maxAtk: 49, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "WoodCarving" } }, { itemId: 11104049, className: "ep16spacepopori_dagger", name: "Astro Popo Dagger", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 42, maxAtk: 49, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "WoodCarving" } }, { itemId: 11104057, className: "ep16statue_dagger", name: "Stone Carving Dagger", type: "Equip", group: "SubWeapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Dagger", minLevel: 1, minAtk: 42, maxAtk: 49, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "WoodCarving" } }, -{ itemId: 11107010, className: "EP15_RAID_DAGGER", name: "Demonic Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Dagger", minLevel: 500, minAtk: 39349, maxAtk: 46193, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107012, className: "EP15_RAID_PISTOL", name: "Demonic Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 500, minAtk: 39349, maxAtk: 46193, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107016, className: "EP15_RAID_TRINKET", name: "Demonic Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 47650, sellPrice: 0, equipType1: "Trinket", minLevel: 500, minAtk: 6416, maxAtk: 6416, mAtk: 6416, script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107039, className: "EP16_RAID_DAGGER", name: "Black Revelation Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Dagger", minLevel: 520, minAtk: 47222, maxAtk: 55434, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107041, className: "EP16_RAID_PISTOL", name: "Black Revelation Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 520, minAtk: 47222, maxAtk: 55434, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107045, className: "EP16_RAID_TRINKET", name: "Black Revelation Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 47912, sellPrice: 0, equipType1: "Trinket", minLevel: 520, minAtk: 7699, maxAtk: 7699, mAtk: 7699, script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107010, className: "EP15_RAID_DAGGER", name: "Demonic Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Dagger", minLevel: 500, equipExpGroup: "Equip", minAtk: 39349, maxAtk: 46193, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107012, className: "EP15_RAID_PISTOL", name: "Demonic Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 500, equipExpGroup: "Equip", minAtk: 39349, maxAtk: 46193, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107016, className: "EP15_RAID_TRINKET", name: "Demonic Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 47650, sellPrice: 0, equipType1: "Trinket", minLevel: 500, equipExpGroup: "Equip", minAtk: 6416, maxAtk: 6416, mAtk: 6416, script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107039, className: "EP16_RAID_DAGGER", name: "Black Revelation Dagger", type: "Equip", group: "SubWeapon", weight: 70, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Dagger", minLevel: 520, equipExpGroup: "Equip", minAtk: 47222, maxAtk: 55434, attackType: "Aries", leftHandSkill: "Common_DaggerAries", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107041, className: "EP16_RAID_PISTOL", name: "Black Revelation Pistol", type: "Equip", group: "SubWeapon", weight: 90, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Pistol", equipType2: "Gun", minLevel: 520, equipExpGroup: "Equip", minAtk: 47222, maxAtk: 55434, attackType: "Gun", leftHandSkill: "Pistol_Attack", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107045, className: "EP16_RAID_TRINKET", name: "Black Revelation Trinket", type: "Equip", group: "SubWeapon", weight: 20, maxStack: 1, price: 47912, sellPrice: 0, equipType1: "Trinket", minLevel: 520, equipExpGroup: "Equip", minAtk: 7699, maxAtk: 7699, mAtk: 7699, script: { strArg: "Goddess_Weapon_Lv520" } }, // Unused //--------------------------------------------------------------------------- @@ -23679,1558 +23679,1558 @@ // Weapon //--------------------------------------------------------------------------- -{ itemId: 101101, className: "SWD01_101", name: "Old Gladius", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101102, className: "SWD01_102", name: "Gladius", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101103, className: "SWD01_103", name: "Crude Falchion", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 106, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101104, className: "SWD01_104", name: "Crude Kaskara", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, minAtk: 137, maxAtk: 145, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101105, className: "SWD01_105", name: "Cinquedea", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, minAtk: 137, maxAtk: 145, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101106, className: "SWD01_106", name: "Sabre", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 728, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101107, className: "SWD01_107", name: "Shamshir", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101108, className: "SWD01_108", name: "Scimitar", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101109, className: "SWD01_109", name: "Kris", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101110, className: "SWD01_110", name: "Snickersnee", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 569, maxAtk: 604, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101111, className: "SWD01_111", name: "Old Shamshir", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101112, className: "SWD01_112", name: "Old Scimitar", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101113, className: "SWD01_113", name: "Soldier's Gladius", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 50, maxAtk: 54, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101114, className: "SWD01_114", name: "Mayor's Falchion", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 457, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 94, maxAtk: 99, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101115, className: "SWD01_115", name: "Old Kaskara", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 457, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101116, className: "SWD01_116", name: "Moplah", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 569, maxAtk: 604, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101117, className: "SWD01_117", name: "Superior Gladius", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101118, className: "SWD01_118", name: "Falchion", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 246, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101119, className: "SWD01_119", name: "Superior Falchion", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101120, className: "SWD01_120", name: "Kaskara", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, minAtk: 137, maxAtk: 145, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101121, className: "SWD01_121", name: "Superior Cinquedea", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, minAtk: 137, maxAtk: 145, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101122, className: "SWD01_122", name: "Superior Sabre", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101123, className: "SWD01_123", name: "Superior Shamshir", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101101, className: "SWD01_101", name: "Old Gladius", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101102, className: "SWD01_102", name: "Gladius", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101103, className: "SWD01_103", name: "Crude Falchion", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 106, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101104, className: "SWD01_104", name: "Crude Kaskara", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 137, maxAtk: 145, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101105, className: "SWD01_105", name: "Cinquedea", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 137, maxAtk: 145, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101106, className: "SWD01_106", name: "Sabre", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 728, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101107, className: "SWD01_107", name: "Shamshir", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101108, className: "SWD01_108", name: "Scimitar", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101109, className: "SWD01_109", name: "Kris", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101110, className: "SWD01_110", name: "Snickersnee", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 569, maxAtk: 604, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101111, className: "SWD01_111", name: "Old Shamshir", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101112, className: "SWD01_112", name: "Old Scimitar", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101113, className: "SWD01_113", name: "Soldier's Gladius", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 50, maxAtk: 54, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101114, className: "SWD01_114", name: "Mayor's Falchion", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 457, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 94, maxAtk: 99, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101115, className: "SWD01_115", name: "Old Kaskara", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 457, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101116, className: "SWD01_116", name: "Moplah", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 569, maxAtk: 604, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101117, className: "SWD01_117", name: "Superior Gladius", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101118, className: "SWD01_118", name: "Falchion", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 246, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101119, className: "SWD01_119", name: "Superior Falchion", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101120, className: "SWD01_120", name: "Kaskara", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 137, maxAtk: 145, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101121, className: "SWD01_121", name: "Superior Cinquedea", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 137, maxAtk: 145, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101122, className: "SWD01_122", name: "Superior Sabre", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101123, className: "SWD01_123", name: "Superior Shamshir", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 101124, className: "SWD01_124", name: "Dunkel Sabre", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 101125, className: "SWD01_125", name: "Dunkel Snickersnee", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 1837, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 569, maxAtk: 604, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 101126, className: "SWD01_126", name: "Dunkel Falchion", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 106, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 101127, className: "SWD01_127", name: "Dunkel Kaskara", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, minAtk: 137, maxAtk: 145, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 101128, className: "SWD01_128", name: "Dunkel Cinquedea", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, minAtk: 137, maxAtk: 145, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 101129, className: "SWD01_129", name: "Dunkel Shamshir", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1484, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101130, className: "SWD01_130", name: "Kozuka", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 569, maxAtk: 604, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101131, className: "SWD01_131", name: "Badelaire", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 893, maxAtk: 948, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101132, className: "SWD01_132", name: "Saif", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 893, maxAtk: 948, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101133, className: "SWD01_133", name: "Colichemarde", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 893, maxAtk: 948, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101134, className: "SWD01_134", name: "Firangi", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 24252, sellPrice: 5018, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1253, maxAtk: 1331, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101135, className: "SWD01_135", name: "Thorn Cutter", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1253, maxAtk: 1331, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101136, className: "SWD01_136", name: "Demion Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1253, maxAtk: 1331, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101130, className: "SWD01_130", name: "Kozuka", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 569, maxAtk: 604, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101131, className: "SWD01_131", name: "Badelaire", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 893, maxAtk: 948, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101132, className: "SWD01_132", name: "Saif", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 893, maxAtk: 948, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101133, className: "SWD01_133", name: "Colichemarde", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 893, maxAtk: 948, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101134, className: "SWD01_134", name: "Firangi", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 24252, sellPrice: 5018, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1253, maxAtk: 1331, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101135, className: "SWD01_135", name: "Thorn Cutter", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1253, maxAtk: 1331, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101136, className: "SWD01_136", name: "Demion Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1253, maxAtk: 1331, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 101137, className: "SWD01_137", name: "Yorgis Badelaire", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 2730, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 893, maxAtk: 948, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101138, className: "SWD01_138", name: "Koperon Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Sword", equipType2: "Sword", minLevel: 220, minAtk: 1613, maxAtk: 1713, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101139, className: "SWD01_139", name: "Superior Koperon Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Sword", equipType2: "Sword", minLevel: 220, minAtk: 1613, maxAtk: 1713, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101140, className: "SWD01_140", name: "(Old) Replica Migantis Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 80000, sellPrice: 5000, equipType1: "Sword", equipType2: "Sword", minLevel: 270, minAtk: 1973, maxAtk: 2095, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101141, className: "SWD01_141", name: "(Old) Replica Pevordimas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 120000, sellPrice: 5000, equipType1: "Sword", equipType2: "Sword", minLevel: 315, minAtk: 2298, maxAtk: 2440, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 101999, className: "SWD01_999", name: "Standard Sword", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102101, className: "SWD02_101", name: "Panto Sword", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 2880, sellPrice: 784, equipType1: "Sword", equipType2: "Sword", minLevel: 15, minAtk: 152, maxAtk: 161, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102102, className: "SWD02_102", name: "Flonas Sabre", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2759, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102104, className: "SWD02_104", name: "Golden Falchion", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 1746, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102105, className: "SWD02_105", name: "Steel Falchion", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 352, maxAtk: 374, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102106, className: "SWD02_106", name: "Silver Falchion", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 352, maxAtk: 374, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102107, className: "SWD02_107", name: "Mandrapick", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 352, maxAtk: 374, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102108, className: "SWD02_108", name: "Wizard Blade", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 3546, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 992, maxAtk: 1054, addMAtk: 134, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102109, className: "SWD02_109", name: "Cheminis Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1746, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 352, maxAtk: 374, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102110, className: "SWD02_110", name: "Austas", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1392, maxAtk: 1479, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102111, className: "SWD02_111", name: "Miskas Sabre", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102112, className: "SWD02_112", name: "Imperni Sword", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1392, maxAtk: 1479, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102113, className: "SWD02_113", name: "Gritas", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1392, maxAtk: 1479, smallSizeBonus: 26, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102114, className: "SWD02_114", name: "Spatha", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 457, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 40, maxAtk: 42, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102115, className: "SWD02_115", name: "Aras' Falchion", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 106, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 88, maxAtk: 93, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102116, className: "SWD02_116", name: "Smith Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 40, maxAtk: 42, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102117, className: "SWD02_117", name: "Klavis Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, minAtk: 152, maxAtk: 161, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102118, className: "SWD02_118", name: "Dio Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 2880, sellPrice: 728, equipType1: "Sword", equipType2: "Sword", minLevel: 15, minAtk: 152, maxAtk: 161, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102119, className: "SWD02_119", name: "Thresh Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1716, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 352, maxAtk: 374, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102120, className: "SWD02_120", name: "Sestas Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102121, className: "SWD02_121", name: "Dratt Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 992, maxAtk: 1054, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102122, className: "SWD02_122", name: "Aston Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1392, maxAtk: 1479, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102123, className: "SWD02_123", name: "Tenet Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 352, maxAtk: 374, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102124, className: "SWD02_124", name: "Patrice Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 352, maxAtk: 374, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102125, className: "SWD02_125", name: "Lukas Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102126, className: "SWD02_126", name: "Philis Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102127, className: "SWD02_127", name: "Escanciu Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102128, className: "SWD02_128", name: "Krag Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102129, className: "SWD02_129", name: "Pilgrim Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 2759, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 992, maxAtk: 1054, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102130, className: "SWD02_130", name: "Istora Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 4335, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1392, maxAtk: 1479, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102131, className: "SWD02_131", name: "Artie Saif", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 992, maxAtk: 1054, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102132, className: "SWD02_132", name: "Vienie Badelaire", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 992, maxAtk: 1054, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102133, className: "SWD02_133", name: "Magi Colichemarde", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 992, maxAtk: 1054, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102134, className: "SWD02_134", name: "Lumas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 3104, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 992, maxAtk: 1054, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102135, className: "SWD02_135", name: "Artie Farangi", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1392, maxAtk: 1479, addMDef: 18, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102136, className: "SWD02_136", name: "Vienie Thorn Cutter", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1392, maxAtk: 1479, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102137, className: "SWD02_137", name: "Duro Demion Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1392, maxAtk: 1479, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102138, className: "SWD02_138", name: "Vienie Koperon Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Sword", equipType2: "Sword", minLevel: 220, minAtk: 1793, maxAtk: 1903, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102139, className: "SWD02_139", name: "Futere Scimitar", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Sword", equipType2: "Sword", minLevel: 220, minAtk: 1793, maxAtk: 1903, addMinAtk: 34, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102140, className: "SWD02_140", name: "Magi Shamshir", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Sword", equipType2: "Sword", minLevel: 220, minAtk: 1793, maxAtk: 1903, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102141, className: "SWD02_141", name: "Supportive Badelaire", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102150, className: "SWD02_150", name: "Tevhrin Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 220, minAtk: 1793, maxAtk: 1903, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102151, className: "SWD02_151", name: "(Faded) Migantis Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Sword", equipType2: "Sword", minLevel: 270, minAtk: 2193, maxAtk: 2328, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102152, className: "SWD02_152", name: "(Faded) Pevordimas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Sword", equipType2: "Sword", minLevel: 315, minAtk: 2553, maxAtk: 2711, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102153, className: "SWD02_153", name: "Migantis Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 270, minAtk: 2193, maxAtk: 2328, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102154, className: "SWD02_154", name: "Pevordimas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 315, minAtk: 2553, maxAtk: 2711, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102155, className: "SWD02_155", name: "Fyringy", type: "Equip", group: "Weapon", weight: 173, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 992, maxAtk: 1054, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102156, className: "SWD02_156", name: "Harvester", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1392, maxAtk: 1479, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102157, className: "SWD02_157", name: "Sketis Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102158, className: "SWD02_158", name: "Pajoritas Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 220, minAtk: 1793, maxAtk: 1903, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102159, className: "SWD02_159", name: "Raffye Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 350, minAtk: 2833, maxAtk: 3008, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102160, className: "SWD02_160", name: "Zvaigzde Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, minAtk: 3073, maxAtk: 3263, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 102161, className: "SWD02_161", name: "Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 3233, maxAtk: 3433, attackType: "Slash" }, -{ itemId: 103101, className: "SWD03_101", name: "Trinity Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 15520, sellPrice: 3334, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1092, maxAtk: 1159, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103102, className: "SWD03_102", name: "Durandal", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 695, maxAtk: 738, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103103, className: "SWD03_103", name: "Velniup", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 15520, sellPrice: 3546, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1092, maxAtk: 1159, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103104, className: "SWD03_104", name: "Fortis", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1092, maxAtk: 1159, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103105, className: "SWD03_105", name: "Flame", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24252, sellPrice: 2730, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1532, maxAtk: 1626, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103106, className: "SWD03_106", name: "Deathweaver Cutter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, minAtk: 167, maxAtk: 178, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103107, className: "SWD03_107", name: "Chapparition Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 695, maxAtk: 738, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103108, className: "SWD03_108", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 7936, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1532, maxAtk: 1626, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103109, className: "SWD03_109", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1092, maxAtk: 1159, middleSizeBonus: 48, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103110, className: "SWD03_110", name: "Shark Cutter", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 32673, sellPrice: 8256, equipType1: "Sword", equipType2: "Sword", minLevel: 220, minAtk: 1972, maxAtk: 2094, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103111, className: "SWD03_111", name: "Seimos Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1092, maxAtk: 1159, largeSizeBonus: 48, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103112, className: "SWD03_112", name: "noname", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 80, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1092, maxAtk: 1159, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103113, className: "SWD03_113", name: "Magas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1532, maxAtk: 1626, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103114, className: "SWD03_114", name: "Holy Blade", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1532, maxAtk: 1626, addDef: 22, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103115, className: "SWD03_115", name: "Ira Blade", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Sword", equipType2: "Sword", minLevel: 220, minAtk: 1972, maxAtk: 2094, attackType: "Slash", leftHandSkill: "Sword_Attack", iceRes: 56, lightningRes: 56 }, -{ itemId: 103116, className: "SWD03_116", name: "Pensara Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 220, minAtk: 1972, maxAtk: 2094, addMDef: 28, middleSizeBonus: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103120, className: "SWD03_120", name: "Pierene Sword", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Sword", equipType2: "Sword", minLevel: 315, minAtk: 2808, maxAtk: 2982, addMDef: 330, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103301, className: "SWD03_301", name: "(Faded) Fyringy", type: "Equip", group: "Weapon", weight: 173, maxStack: 1, price: 15520, sellPrice: 2730, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1092, maxAtk: 1159, addMinAtk: 15, addMaxAtk: 27, addMAtk: -1242, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103302, className: "SWD03_302", name: "(Faded) Harvester", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24252, sellPrice: 3546, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1532, maxAtk: 1626, addMAtk: -1889, attackType: "Slash", leftHandSkill: "Sword_Attack", darkRes: -72 }, -{ itemId: 103303, className: "SWD03_303", name: "(Faded) Sketis Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 695, maxAtk: 738, addMinAtk: -10, addMaxAtk: 60, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103304, className: "SWD03_304", name: "(Faded) Pajoritas Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 220, minAtk: 1972, maxAtk: 2094, addMinAtk: -15, addMaxAtk: 240, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103305, className: "SWD03_305", name: "(Faded) Purine Migantis Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Sword", equipType2: "Sword", minLevel: 270, minAtk: 2412, maxAtk: 2561, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103306, className: "SWD03_306", name: "(Faded) Purine Pevordimas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 315, minAtk: 2808, maxAtk: 2982, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103307, className: "SWD03_307", name: "Berthas Migantis Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 270, minAtk: 2412, maxAtk: 2561, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103308, className: "SWD03_308", name: "Berthas Pevordimas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 315, minAtk: 2808, maxAtk: 2982, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103309, className: "SWD03_309", name: "Berthas Fyringy", type: "Equip", group: "Weapon", weight: 173, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1092, maxAtk: 1159, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103310, className: "SWD03_310", name: "Berthas Harvester", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1532, maxAtk: 1626, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103311, className: "SWD03_311", name: "Berthas Sketis Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 695, maxAtk: 738, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103312, className: "SWD03_312", name: "Berthas Pajoritas Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 220, minAtk: 1972, maxAtk: 2094, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103313, className: "SWD03_313", name: "Berthas Raffye Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 350, minAtk: 3116, maxAtk: 3309, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103314, className: "SWD03_314", name: "Berthas Zvaigzde Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, minAtk: 3380, maxAtk: 3589, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 103315, className: "SWD03_315", name: "Berthas Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 3556, maxAtk: 3776, attackType: "Slash" }, -{ itemId: 103316, className: "SWD03_316", name: "Berthas Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 430, minAtk: 3820, maxAtk: 4057, attackType: "Slash" }, -{ itemId: 104101, className: "SWD04_101", name: "Bendras Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1240, maxAtk: 1317, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104102, className: "SWD04_102", name: "Illizia", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 15520, sellPrice: 4150, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1240, maxAtk: 1317, middleSizeBonus: 198, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104103, className: "SWD04_103", name: "Galatunis Sword", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 7936, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1240, maxAtk: 1317, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104104, className: "SWD04_104", name: "Ruma Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1240, maxAtk: 1317, attackType: "Slash", leftHandSkill: "Sword_Attack", holyRes: 26 }, -{ itemId: 104105, className: "SWD04_105", name: "noname", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1741, maxAtk: 1848, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104106, className: "SWD04_106", name: "Catacombs Blade", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1741, maxAtk: 1848, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104107, className: "SWD04_107", name: "Lolopanther Sword", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Sword", equipType2: "Sword", minLevel: 270, minAtk: 3508, maxAtk: 3725, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104108, className: "SWD04_108", name: "Solmiki Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 12952, equipType1: "Sword", equipType2: "Sword", minLevel: 330, minAtk: 4277, maxAtk: 4541, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104109, className: "SWD04_109", name: "Abdochar", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Sword", equipType2: "Sword", minLevel: 315, minAtk: 3191, maxAtk: 3388, addMaxAtk: 158, addDef: 245, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104110, className: "SWD04_110", name: "Primus Migantis Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 270, minAtk: 2741, maxAtk: 2910, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104111, className: "SWD04_111", name: "Primus Pevordimas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 315, minAtk: 3191, maxAtk: 3388, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104112, className: "SWD04_112", name: "Primus Fyringy", type: "Equip", group: "Weapon", weight: 173, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1240, maxAtk: 1317, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104113, className: "SWD04_113", name: "Primus Harvester", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 170, minAtk: 1741, maxAtk: 1848, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104114, className: "SWD04_114", name: "Primus Sketis Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 75, minAtk: 790, maxAtk: 839, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104115, className: "SWD04_115", name: "Primus Pajoritas Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 220, minAtk: 2241, maxAtk: 2379, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104116, className: "SWD04_116", name: "Primus Raffye Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 350, minAtk: 3541, maxAtk: 3760, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104117, className: "SWD04_117", name: "Masinios Sword", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 350, minAtk: 3541, maxAtk: 3760, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104118, className: "SWD04_118", name: "Primus Zvaigzde Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, minAtk: 3841, maxAtk: 4079, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104119, className: "SWD04_119", name: "Wastrel Zvaigzde Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, minAtk: 3841, maxAtk: 4079, addDef: 248, attackType: "Slash", leftHandSkill: "Sword_Attack", strike: 325 }, -{ itemId: 104120, className: "SWD04_120", name: "Asio Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, minAtk: 3841, maxAtk: 4079, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 104121, className: "SWD04_121", name: "Primus Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 4041, maxAtk: 4291, attackType: "Slash" }, -{ itemId: 104122, className: "SWD04_122", name: "Skiaclipse Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 4041, maxAtk: 4291, attackType: "Slash", slash: 305 }, -{ itemId: 104123, className: "SWD04_123", name: "Moringponia Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 4041, maxAtk: 4291, attackType: "Slash" }, -{ itemId: 104124, className: "SWD04_124", name: "Misrus Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 4041, maxAtk: 4291, addMDef: 420, attackType: "Slash" }, -{ itemId: 104125, className: "SWD04_125", name: "Primus Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 430, minAtk: 4341, maxAtk: 4610, attackType: "Slash" }, -{ itemId: 105101, className: "SWD05_101", name: "Velcoffer Sword", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 360, minAtk: 4661, maxAtk: 4949, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 105102, className: "SWD05_102", name: "Velcoffer Sword", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 360, minAtk: 4661, maxAtk: 4949, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 105103, className: "SWD05_103", name: "Savinose Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, -{ itemId: 105104, className: "SWD05_104", name: "Skiaclipse Varna Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, -{ itemId: 121101, className: "TSW01_101", name: "Scheduled for deletion", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 170, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Slash" }, +{ itemId: 101138, className: "SWD01_138", name: "Koperon Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Sword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1613, maxAtk: 1713, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101139, className: "SWD01_139", name: "Superior Koperon Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Sword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1613, maxAtk: 1713, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101140, className: "SWD01_140", name: "(Old) Replica Migantis Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 80000, sellPrice: 5000, equipType1: "Sword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 1973, maxAtk: 2095, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101141, className: "SWD01_141", name: "(Old) Replica Pevordimas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 120000, sellPrice: 5000, equipType1: "Sword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2298, maxAtk: 2440, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 101999, className: "SWD01_999", name: "Standard Sword", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102101, className: "SWD02_101", name: "Panto Sword", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 2880, sellPrice: 784, equipType1: "Sword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 152, maxAtk: 161, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102102, className: "SWD02_102", name: "Flonas Sabre", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2759, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102104, className: "SWD02_104", name: "Golden Falchion", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 1746, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102105, className: "SWD02_105", name: "Steel Falchion", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 352, maxAtk: 374, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102106, className: "SWD02_106", name: "Silver Falchion", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 352, maxAtk: 374, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102107, className: "SWD02_107", name: "Mandrapick", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 352, maxAtk: 374, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102108, className: "SWD02_108", name: "Wizard Blade", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 3546, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, addMAtk: 134, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102109, className: "SWD02_109", name: "Cheminis Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1746, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 352, maxAtk: 374, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102110, className: "SWD02_110", name: "Austas", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102111, className: "SWD02_111", name: "Miskas Sabre", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102112, className: "SWD02_112", name: "Imperni Sword", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102113, className: "SWD02_113", name: "Gritas", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, smallSizeBonus: 26, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102114, className: "SWD02_114", name: "Spatha", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 457, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 40, maxAtk: 42, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102115, className: "SWD02_115", name: "Aras' Falchion", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 106, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 88, maxAtk: 93, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102116, className: "SWD02_116", name: "Smith Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 40, maxAtk: 42, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102117, className: "SWD02_117", name: "Klavis Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 152, maxAtk: 161, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102118, className: "SWD02_118", name: "Dio Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 2880, sellPrice: 728, equipType1: "Sword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 152, maxAtk: 161, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102119, className: "SWD02_119", name: "Thresh Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1716, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 352, maxAtk: 374, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102120, className: "SWD02_120", name: "Sestas Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102121, className: "SWD02_121", name: "Dratt Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102122, className: "SWD02_122", name: "Aston Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102123, className: "SWD02_123", name: "Tenet Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 352, maxAtk: 374, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102124, className: "SWD02_124", name: "Patrice Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 352, maxAtk: 374, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102125, className: "SWD02_125", name: "Lukas Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102126, className: "SWD02_126", name: "Philis Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102127, className: "SWD02_127", name: "Escanciu Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102128, className: "SWD02_128", name: "Krag Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102129, className: "SWD02_129", name: "Pilgrim Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 2759, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102130, className: "SWD02_130", name: "Istora Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 4335, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102131, className: "SWD02_131", name: "Artie Saif", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102132, className: "SWD02_132", name: "Vienie Badelaire", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102133, className: "SWD02_133", name: "Magi Colichemarde", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102134, className: "SWD02_134", name: "Lumas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 3104, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102135, className: "SWD02_135", name: "Artie Farangi", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, addMDef: 18, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102136, className: "SWD02_136", name: "Vienie Thorn Cutter", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102137, className: "SWD02_137", name: "Duro Demion Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102138, className: "SWD02_138", name: "Vienie Koperon Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Sword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1793, maxAtk: 1903, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102139, className: "SWD02_139", name: "Futere Scimitar", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Sword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1793, maxAtk: 1903, addMinAtk: 34, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102140, className: "SWD02_140", name: "Magi Shamshir", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Sword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1793, maxAtk: 1903, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102141, className: "SWD02_141", name: "Supportive Badelaire", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102150, className: "SWD02_150", name: "Tevhrin Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1793, maxAtk: 1903, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102151, className: "SWD02_151", name: "(Faded) Migantis Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Sword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2193, maxAtk: 2328, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102152, className: "SWD02_152", name: "(Faded) Pevordimas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Sword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2553, maxAtk: 2711, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102153, className: "SWD02_153", name: "Migantis Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2193, maxAtk: 2328, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102154, className: "SWD02_154", name: "Pevordimas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2553, maxAtk: 2711, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102155, className: "SWD02_155", name: "Fyringy", type: "Equip", group: "Weapon", weight: 173, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102156, className: "SWD02_156", name: "Harvester", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102157, className: "SWD02_157", name: "Sketis Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102158, className: "SWD02_158", name: "Pajoritas Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1793, maxAtk: 1903, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102159, className: "SWD02_159", name: "Raffye Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 350, equipExpGroup: "Equip", minAtk: 2833, maxAtk: 3008, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102160, className: "SWD02_160", name: "Zvaigzde Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3073, maxAtk: 3263, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 102161, className: "SWD02_161", name: "Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3233, maxAtk: 3433, attackType: "Slash" }, +{ itemId: 103101, className: "SWD03_101", name: "Trinity Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 15520, sellPrice: 3334, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 1159, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103102, className: "SWD03_102", name: "Durandal", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 695, maxAtk: 738, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103103, className: "SWD03_103", name: "Velniup", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 15520, sellPrice: 3546, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 1159, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103104, className: "SWD03_104", name: "Fortis", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 1159, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103105, className: "SWD03_105", name: "Flame", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24252, sellPrice: 2730, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1532, maxAtk: 1626, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103106, className: "SWD03_106", name: "Deathweaver Cutter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 167, maxAtk: 178, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103107, className: "SWD03_107", name: "Chapparition Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 695, maxAtk: 738, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103108, className: "SWD03_108", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 7936, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1532, maxAtk: 1626, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103109, className: "SWD03_109", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 1159, middleSizeBonus: 48, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103110, className: "SWD03_110", name: "Shark Cutter", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 32673, sellPrice: 8256, equipType1: "Sword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1972, maxAtk: 2094, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103111, className: "SWD03_111", name: "Seimos Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 1159, largeSizeBonus: 48, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103112, className: "SWD03_112", name: "noname", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 80, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 1159, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103113, className: "SWD03_113", name: "Magas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1532, maxAtk: 1626, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103114, className: "SWD03_114", name: "Holy Blade", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1532, maxAtk: 1626, addDef: 22, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103115, className: "SWD03_115", name: "Ira Blade", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Sword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1972, maxAtk: 2094, attackType: "Slash", leftHandSkill: "Sword_Attack", iceRes: 56, lightningRes: 56 }, +{ itemId: 103116, className: "SWD03_116", name: "Pensara Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1972, maxAtk: 2094, addMDef: 28, middleSizeBonus: 337, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103120, className: "SWD03_120", name: "Pierene Sword", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Sword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2808, maxAtk: 2982, addMDef: 330, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103301, className: "SWD03_301", name: "(Faded) Fyringy", type: "Equip", group: "Weapon", weight: 173, maxStack: 1, price: 15520, sellPrice: 2730, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 1159, addMinAtk: 15, addMaxAtk: 27, addMAtk: -1242, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103302, className: "SWD03_302", name: "(Faded) Harvester", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24252, sellPrice: 3546, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1532, maxAtk: 1626, addMAtk: -1889, attackType: "Slash", leftHandSkill: "Sword_Attack", darkRes: -72 }, +{ itemId: 103303, className: "SWD03_303", name: "(Faded) Sketis Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 695, maxAtk: 738, addMinAtk: -10, addMaxAtk: 60, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103304, className: "SWD03_304", name: "(Faded) Pajoritas Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1972, maxAtk: 2094, addMinAtk: -15, addMaxAtk: 240, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103305, className: "SWD03_305", name: "(Faded) Purine Migantis Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Sword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2412, maxAtk: 2561, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103306, className: "SWD03_306", name: "(Faded) Purine Pevordimas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2808, maxAtk: 2982, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103307, className: "SWD03_307", name: "Berthas Migantis Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2412, maxAtk: 2561, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103308, className: "SWD03_308", name: "Berthas Pevordimas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2808, maxAtk: 2982, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103309, className: "SWD03_309", name: "Berthas Fyringy", type: "Equip", group: "Weapon", weight: 173, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 1159, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103310, className: "SWD03_310", name: "Berthas Harvester", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1532, maxAtk: 1626, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103311, className: "SWD03_311", name: "Berthas Sketis Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 695, maxAtk: 738, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103312, className: "SWD03_312", name: "Berthas Pajoritas Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1972, maxAtk: 2094, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103313, className: "SWD03_313", name: "Berthas Raffye Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 350, equipExpGroup: "Equip", minAtk: 3116, maxAtk: 3309, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103314, className: "SWD03_314", name: "Berthas Zvaigzde Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3380, maxAtk: 3589, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 103315, className: "SWD03_315", name: "Berthas Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3556, maxAtk: 3776, attackType: "Slash" }, +{ itemId: 103316, className: "SWD03_316", name: "Berthas Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 430, equipExpGroup: "Equip", minAtk: 3820, maxAtk: 4057, attackType: "Slash" }, +{ itemId: 104101, className: "SWD04_101", name: "Bendras Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1240, maxAtk: 1317, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104102, className: "SWD04_102", name: "Illizia", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 15520, sellPrice: 4150, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1240, maxAtk: 1317, middleSizeBonus: 198, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104103, className: "SWD04_103", name: "Galatunis Sword", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 7936, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1240, maxAtk: 1317, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104104, className: "SWD04_104", name: "Ruma Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1240, maxAtk: 1317, attackType: "Slash", leftHandSkill: "Sword_Attack", holyRes: 26 }, +{ itemId: 104105, className: "SWD04_105", name: "noname", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1741, maxAtk: 1848, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104106, className: "SWD04_106", name: "Catacombs Blade", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1741, maxAtk: 1848, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104107, className: "SWD04_107", name: "Lolopanther Sword", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Sword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 3508, maxAtk: 3725, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104108, className: "SWD04_108", name: "Solmiki Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 12952, equipType1: "Sword", equipType2: "Sword", minLevel: 330, equipExpGroup: "Equip", minAtk: 4277, maxAtk: 4541, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104109, className: "SWD04_109", name: "Abdochar", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Sword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 3191, maxAtk: 3388, addMaxAtk: 158, addDef: 245, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104110, className: "SWD04_110", name: "Primus Migantis Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2741, maxAtk: 2910, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104111, className: "SWD04_111", name: "Primus Pevordimas Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 3191, maxAtk: 3388, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104112, className: "SWD04_112", name: "Primus Fyringy", type: "Equip", group: "Weapon", weight: 173, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1240, maxAtk: 1317, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104113, className: "SWD04_113", name: "Primus Harvester", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1741, maxAtk: 1848, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104114, className: "SWD04_114", name: "Primus Sketis Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 790, maxAtk: 839, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104115, className: "SWD04_115", name: "Primus Pajoritas Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 2241, maxAtk: 2379, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104116, className: "SWD04_116", name: "Primus Raffye Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 350, equipExpGroup: "Equip", minAtk: 3541, maxAtk: 3760, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104117, className: "SWD04_117", name: "Masinios Sword", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 350, equipExpGroup: "Equip", minAtk: 3541, maxAtk: 3760, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104118, className: "SWD04_118", name: "Primus Zvaigzde Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104119, className: "SWD04_119", name: "Wastrel Zvaigzde Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, addDef: 248, attackType: "Slash", leftHandSkill: "Sword_Attack", strike: 325 }, +{ itemId: 104120, className: "SWD04_120", name: "Asio Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 104121, className: "SWD04_121", name: "Primus Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, attackType: "Slash" }, +{ itemId: 104122, className: "SWD04_122", name: "Skiaclipse Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, attackType: "Slash", slash: 305 }, +{ itemId: 104123, className: "SWD04_123", name: "Moringponia Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, attackType: "Slash" }, +{ itemId: 104124, className: "SWD04_124", name: "Misrus Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, addMDef: 420, attackType: "Slash" }, +{ itemId: 104125, className: "SWD04_125", name: "Primus Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 430, equipExpGroup: "Equip", minAtk: 4341, maxAtk: 4610, attackType: "Slash" }, +{ itemId: 105101, className: "SWD05_101", name: "Velcoffer Sword", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 360, equipExpGroup: "Equip", minAtk: 4661, maxAtk: 4949, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 105102, className: "SWD05_102", name: "Velcoffer Sword", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 360, equipExpGroup: "Equip", minAtk: 4661, maxAtk: 4949, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 105103, className: "SWD05_103", name: "Savinose Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, +{ itemId: 105104, className: "SWD05_104", name: "Skiaclipse Varna Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, +{ itemId: 121101, className: "TSW01_101", name: "Scheduled for deletion", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 170, equipType1: "THSword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 35, maxAtk: 53, attackType: "Slash" }, { itemId: 121102, className: "TSW01_102", name: "Dunkel Bastard Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, minAtk: 133, maxAtk: 200, attackType: "Slash" }, -{ itemId: 121103, className: "TSW01_103", name: "Flamberge", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, minAtk: 133, maxAtk: 200, attackType: "Slash" }, -{ itemId: 121104, className: "TSW01_104", name: "Nodachi", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 1164, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Slash" }, -{ itemId: 121105, className: "TSW01_105", name: "Claymore", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Slash" }, -{ itemId: 121106, className: "TSW01_106", name: "Colossus", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Slash" }, -{ itemId: 121107, className: "TSW01_107", name: "Caliburn", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Slash" }, -{ itemId: 121108, className: "TSW01_108", name: "Quaddara", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 555, maxAtk: 832, attackType: "Slash" }, -{ itemId: 121109, className: "TSW01_109", name: "Light Claymore", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Slash" }, -{ itemId: 121110, className: "TSW01_110", name: "Old Colossus", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Slash" }, -{ itemId: 121111, className: "TSW01_111", name: "Ilwoon", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 555, maxAtk: 832, attackType: "Slash" }, -{ itemId: 121112, className: "TSW01_112", name: "Scheduled for deletion", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 393, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Slash" }, -{ itemId: 121113, className: "TSW01_113", name: "Practice Bastard Sword", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 640, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Slash" }, -{ itemId: 121114, className: "TSW01_114", name: "Bastard Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, minAtk: 133, maxAtk: 200, attackType: "Slash" }, -{ itemId: 121115, className: "TSW01_115", name: "Superior Flamberge", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, minAtk: 133, maxAtk: 200, attackType: "Slash" }, -{ itemId: 121116, className: "TSW01_116", name: "Superior Nodachi", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Slash" }, -{ itemId: 121117, className: "TSW01_117", name: "Superior Claymore", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Slash" }, +{ itemId: 121103, className: "TSW01_103", name: "Flamberge", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 133, maxAtk: 200, attackType: "Slash" }, +{ itemId: 121104, className: "TSW01_104", name: "Nodachi", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 1164, equipType1: "THSword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Slash" }, +{ itemId: 121105, className: "TSW01_105", name: "Claymore", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Slash" }, +{ itemId: 121106, className: "TSW01_106", name: "Colossus", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Slash" }, +{ itemId: 121107, className: "TSW01_107", name: "Caliburn", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Slash" }, +{ itemId: 121108, className: "TSW01_108", name: "Quaddara", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 555, maxAtk: 832, attackType: "Slash" }, +{ itemId: 121109, className: "TSW01_109", name: "Light Claymore", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Slash" }, +{ itemId: 121110, className: "TSW01_110", name: "Old Colossus", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Slash" }, +{ itemId: 121111, className: "TSW01_111", name: "Ilwoon", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 555, maxAtk: 832, attackType: "Slash" }, +{ itemId: 121112, className: "TSW01_112", name: "Scheduled for deletion", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 393, equipType1: "THSword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 35, maxAtk: 53, attackType: "Slash" }, +{ itemId: 121113, className: "TSW01_113", name: "Practice Bastard Sword", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 640, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 35, maxAtk: 53, attackType: "Slash" }, +{ itemId: 121114, className: "TSW01_114", name: "Bastard Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 133, maxAtk: 200, attackType: "Slash" }, +{ itemId: 121115, className: "TSW01_115", name: "Superior Flamberge", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 133, maxAtk: 200, attackType: "Slash" }, +{ itemId: 121116, className: "TSW01_116", name: "Superior Nodachi", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Slash" }, +{ itemId: 121117, className: "TSW01_117", name: "Superior Claymore", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Slash" }, { itemId: 121118, className: "TSW01_118", name: "Dunkel Nodachi", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Slash" }, { itemId: 121119, className: "TSW01_119", name: "Dunkel Quaddara", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 13732, sellPrice: 2939, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 555, maxAtk: 832, attackType: "Slash" }, { itemId: 121120, className: "TSW01_120", name: "Dunkel Flamberge", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, minAtk: 133, maxAtk: 200, attackType: "Slash" }, { itemId: 121121, className: "TSW01_121", name: "Dunkel Claymore", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 2374, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Slash" }, -{ itemId: 121122, className: "TSW01_122", name: "Greatsword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 555, maxAtk: 832, attackType: "Slash" }, -{ itemId: 121123, className: "TSW01_123", name: "Katzbalger", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 870, maxAtk: 1306, attackType: "Slash" }, -{ itemId: 121124, className: "TSW01_124", name: "Dress Sword", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 870, maxAtk: 1306, attackType: "Slash" }, -{ itemId: 121125, className: "TSW01_125", name: "Zweihander", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 870, maxAtk: 1306, attackType: "Slash" }, -{ itemId: 121126, className: "TSW01_126", name: "Executioner's Sword", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 38803, sellPrice: 8030, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1221, maxAtk: 1832, attackType: "Slash" }, -{ itemId: 121127, className: "TSW01_127", name: "Lumai Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1221, maxAtk: 1832, attackType: "Slash" }, -{ itemId: 121128, className: "TSW01_128", name: "Overknife", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1221, maxAtk: 1832, attackType: "Slash" }, +{ itemId: 121122, className: "TSW01_122", name: "Greatsword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 555, maxAtk: 832, attackType: "Slash" }, +{ itemId: 121123, className: "TSW01_123", name: "Katzbalger", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 870, maxAtk: 1306, attackType: "Slash" }, +{ itemId: 121124, className: "TSW01_124", name: "Dress Sword", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 870, maxAtk: 1306, attackType: "Slash" }, +{ itemId: 121125, className: "TSW01_125", name: "Zweihander", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 870, maxAtk: 1306, attackType: "Slash" }, +{ itemId: 121126, className: "TSW01_126", name: "Executioner's Sword", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 38803, sellPrice: 8030, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1221, maxAtk: 1832, attackType: "Slash" }, +{ itemId: 121127, className: "TSW01_127", name: "Lumai Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1221, maxAtk: 1832, attackType: "Slash" }, +{ itemId: 121128, className: "TSW01_128", name: "Overknife", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1221, maxAtk: 1832, attackType: "Slash" }, { itemId: 121129, className: "TSW01_129", name: "Yorgis Katzbalger", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 24832, sellPrice: 4368, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 870, maxAtk: 1306, attackType: "Slash" }, -{ itemId: 121130, className: "TSW01_130", name: "Twin Blade", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THSword", equipType2: "Sword", minLevel: 220, minAtk: 1572, maxAtk: 2359, attackType: "Slash" }, -{ itemId: 121131, className: "TSW01_131", name: "Superior Twin Blade", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THSword", equipType2: "Sword", minLevel: 220, minAtk: 1572, maxAtk: 2359, attackType: "Slash" }, -{ itemId: 121132, className: "TSW01_132", name: "(Faded) Replica Migantis Two-handed Sword", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "THSword", equipType2: "Sword", minLevel: 270, minAtk: 1923, maxAtk: 2885, attackType: "Slash" }, -{ itemId: 121133, className: "TSW01_133", name: "(Faded) Replica Pevordimas Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 144000, sellPrice: 5000, equipType1: "THSword", equipType2: "Sword", minLevel: 315, minAtk: 2239, maxAtk: 3359, attackType: "Slash" }, -{ itemId: 121999, className: "TSW01_999", name: "Standard Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8000, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 15, minAtk: 133, maxAtk: 200, attackType: "Slash" }, -{ itemId: 122101, className: "TSW02_101", name: "Potentia", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, minAtk: 148, maxAtk: 222, attackType: "Slash" }, -{ itemId: 122102, className: "TSW02_102", name: "Temsus Flamberge", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, minAtk: 148, maxAtk: 222, attackType: "Slash" }, -{ itemId: 122103, className: "TSW02_103", name: "Didel Colossus", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 343, maxAtk: 515, attackType: "Slash" }, -{ itemId: 122104, className: "TSW02_104", name: "Collecture", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Slash" }, -{ itemId: 122105, className: "TSW02_105", name: "Hogma Greatsword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Slash" }, -{ itemId: 122106, className: "TSW02_106", name: "Cheminis Bastard Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 5824, sellPrice: 2794, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 343, maxAtk: 515, attackType: "Slash" }, -{ itemId: 122107, className: "TSW02_107", name: "Primaluce", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Slash" }, -{ itemId: 122108, className: "TSW02_108", name: "Kindzal", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 13732, sellPrice: 4414, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Slash" }, -{ itemId: 122109, className: "TSW02_109", name: "Imperni Two-handed Sword", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Slash" }, -{ itemId: 122110, className: "TSW02_110", name: "Prieblanda", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Slash" }, -{ itemId: 122111, className: "TSW02_111", name: "Lapis Katzbalger", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Slash" }, -{ itemId: 122112, className: "TSW02_112", name: "Smith Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 39, maxAtk: 59, attackType: "Slash" }, -{ itemId: 122113, className: "TSW02_113", name: "Klavis Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Slash" }, -{ itemId: 122114, className: "TSW02_114", name: "Dio Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 4608, sellPrice: 1164, equipType1: "THSword", equipType2: "Sword", minLevel: 15, minAtk: 148, maxAtk: 222, attackType: "Slash" }, -{ itemId: 122115, className: "TSW02_115", name: "Thresh Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 5824, sellPrice: 2746, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 343, maxAtk: 515, attackType: "Slash" }, -{ itemId: 122116, className: "TSW02_116", name: "Sestas Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Slash" }, -{ itemId: 122117, className: "TSW02_117", name: "Dratt Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Slash" }, -{ itemId: 122118, className: "TSW02_118", name: "Aston Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1357, maxAtk: 2036, attackType: "Slash" }, -{ itemId: 122119, className: "TSW02_119", name: "Tenet Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 343, maxAtk: 515, attackType: "Slash" }, -{ itemId: 122120, className: "TSW02_120", name: "Patrice Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 343, maxAtk: 515, attackType: "Slash" }, -{ itemId: 122121, className: "TSW02_121", name: "Lukas Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Slash" }, -{ itemId: 122122, className: "TSW02_122", name: "Philips Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Slash" }, -{ itemId: 122123, className: "TSW02_123", name: "Escanciu Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Slash" }, -{ itemId: 122124, className: "TSW02_124", name: "Krag Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Slash" }, -{ itemId: 122125, className: "TSW02_125", name: "Pilgrim Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 4414, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Slash" }, -{ itemId: 122126, className: "TSW02_126", name: "Istora Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 6936, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1357, maxAtk: 2036, attackType: "Slash" }, -{ itemId: 122127, className: "TSW02_127", name: "Jaas Katzbalger", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 967, maxAtk: 1451, smallSizeBonus: 54, attackType: "Slash" }, -{ itemId: 122128, className: "TSW02_128", name: "Earth Dress Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Slash", earthRes: 19 }, -{ itemId: 122129, className: "TSW02_129", name: "Slaake Zweihander", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Slash" }, -{ itemId: 122130, className: "TSW02_130", name: "Lumas Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 4966, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Slash" }, -{ itemId: 122131, className: "TSW02_131", name: "Magi Executioner's Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1357, maxAtk: 2036, attackType: "Slash" }, -{ itemId: 122132, className: "TSW02_132", name: "Artie Greatsword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1357, maxAtk: 2036, attackType: "Slash" }, -{ itemId: 122133, className: "TSW02_133", name: "Vienie Overknife", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1357, maxAtk: 2036, attackType: "Slash" }, -{ itemId: 122134, className: "TSW02_134", name: "Duris Twin Blade", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THSword", equipType2: "Sword", minLevel: 220, minAtk: 1747, maxAtk: 2621, middleSizeBonus: 48, attackType: "Slash" }, -{ itemId: 122135, className: "TSW02_135", name: "Eki Lumai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THSword", equipType2: "Sword", minLevel: 220, minAtk: 1747, maxAtk: 2621, attackType: "Slash" }, -{ itemId: 122136, className: "TSW02_136", name: "Vienie Twin Blade", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THSword", equipType2: "Sword", minLevel: 220, minAtk: 1747, maxAtk: 2621, attackType: "Slash" }, -{ itemId: 122137, className: "TSW02_137", name: "Supportive Katzbalger", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 13732, sellPrice: 5068, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Slash" }, -{ itemId: 122150, className: "TSW02_150", name: "Tevhrin Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 220, minAtk: 1747, maxAtk: 2621, attackType: "Slash" }, -{ itemId: 122151, className: "TSW02_151", name: "(Faded) Migantis Two-handed Sword", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THSword", equipType2: "Sword", minLevel: 270, minAtk: 2137, maxAtk: 3206, attackType: "Slash" }, -{ itemId: 122152, className: "TSW02_152", name: "(Faded) Pevordimas Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THSword", equipType2: "Sword", minLevel: 315, minAtk: 2488, maxAtk: 3732, attackType: "Slash" }, -{ itemId: 122153, className: "TSW02_153", name: "Paulownia", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Strike" }, -{ itemId: 122154, className: "TSW02_154", name: "Crystaras", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1357, maxAtk: 2036, attackType: "Slash" }, -{ itemId: 122155, className: "TSW02_155", name: "Sketis Two-Handed Sword", type: "Equip", group: "Weapon", weight: 300, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Slash" }, -{ itemId: 122156, className: "TSW02_156", name: "Pajoritas Two-Handed Sword", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 220, minAtk: 1747, maxAtk: 2621, attackType: "Slash" }, -{ itemId: 122157, className: "TSW02_157", name: "Migantis Two-handed Sword", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 270, minAtk: 2137, maxAtk: 3206, attackType: "Slash" }, -{ itemId: 122158, className: "TSW02_158", name: "Pevordimas Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 315, minAtk: 2488, maxAtk: 3732, attackType: "Slash" }, -{ itemId: 122159, className: "TSW02_159", name: "Raffye Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 350, minAtk: 2761, maxAtk: 4142, attackType: "Slash" }, -{ itemId: 122160, className: "TSW02_160", name: "Zvaigzde Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, minAtk: 2995, maxAtk: 4493, attackType: "Slash" }, -{ itemId: 122161, className: "TSW02_161", name: "Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 3151, maxAtk: 4727, attackType: "Slash" }, -{ itemId: 123101, className: "TSW03_101", name: "Flamini", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 5017, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 678, maxAtk: 1017, attackType: "Slash" }, -{ itemId: 123102, className: "TSW03_102", name: "Wizard Slayer", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 1064, maxAtk: 1596, addMDef: 16, attackType: "Slash", fireRes: 10, iceRes: 10 }, -{ itemId: 123103, className: "TSW03_103", name: "Naktis", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 1064, maxAtk: 1596, smallSizeBonus: -47, largeSizeBonus: 68, attackType: "Strike" }, -{ itemId: 123104, className: "TSW03_104", name: "Luciduce", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 38803, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1493, maxAtk: 2239, attackType: "Slash" }, -{ itemId: 123105, className: "TSW03_105", name: "Hell and Heaven", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 38803, sellPrice: 8137, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1493, maxAtk: 2239, pAtk: 117, addDef: -235, attackType: "Slash" }, -{ itemId: 123106, className: "TSW03_106", name: "Deathweaver Tooth", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, minAtk: 163, maxAtk: 245, middleSizeBonus: 23, attackType: "Slash" }, -{ itemId: 123107, className: "TSW03_107", name: "Chapparition Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 378, maxAtk: 566, largeSizeBonus: 46, attackType: "Slash" }, -{ itemId: 123108, className: "TSW03_108", name: "Saw", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 1388, equipType1: "THSword", equipType2: "Sword", minLevel: 15, minAtk: 163, maxAtk: 245, attackType: "Slash" }, -{ itemId: 123109, className: "TSW03_109", name: "noname", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 12697, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1493, maxAtk: 2239, attackType: "Slash" }, -{ itemId: 123110, className: "TSW03_110", name: "noname", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 1064, maxAtk: 1596, attackType: "Slash" }, -{ itemId: 123111, className: "TSW03_111", name: "Spell Breaker", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 52276, sellPrice: 12646, equipType1: "THSword", equipType2: "Sword", minLevel: 220, minAtk: 1922, maxAtk: 2883, addMDef: 84, attackType: "Slash" }, -{ itemId: 123112, className: "TSW03_112", name: "Seimos Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 1064, maxAtk: 1596, attackType: "Slash" }, -{ itemId: 123113, className: "TSW03_113", name: "Tilly Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 1064, maxAtk: 1596, attackType: "Slash" }, -{ itemId: 123114, className: "TSW03_114", name: "Khasti Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1493, maxAtk: 2239, addMinAtk: 38, attackType: "Slash" }, -{ itemId: 123115, className: "TSW03_115", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1493, maxAtk: 2239, attackType: "Slash" }, -{ itemId: 123116, className: "TSW03_116", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 128, equipType1: "THSword", equipType2: "Sword", minLevel: 220, minAtk: 1922, maxAtk: 2883, attackType: "Slash" }, -{ itemId: 123117, className: "TSW03_117", name: "Pensara Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 220, minAtk: 1922, maxAtk: 2883, pAtk: 57, attackType: "Slash" }, -{ itemId: 123120, className: "TSW03_120", name: "Gale Slasher", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "THSword", equipType2: "Sword", minLevel: 315, minAtk: 2737, maxAtk: 4106, pAtk: 111, addMinAtk: 358, attackType: "Slash" }, -{ itemId: 123301, className: "TSW03_301", name: "(Faded) Paulownia", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 1064, maxAtk: 1596, addMinAtk: 84, addMaxAtk: 111, addMAtk: -2483, attackType: "Strike" }, -{ itemId: 123302, className: "TSW03_302", name: "(Faded) Crystaras", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1493, maxAtk: 2239, addMAtk: -3428, attackType: "Slash" }, -{ itemId: 123303, className: "TSW03_303", name: "(Faded) Sketis Two-Handed Sword", type: "Equip", group: "Weapon", weight: 300, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 678, maxAtk: 1017, attackType: "Slash" }, -{ itemId: 123304, className: "TSW03_304", name: "(Faded) Pajoritas Two-Handed Sword", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 220, minAtk: 1922, maxAtk: 2883, attackType: "Slash" }, -{ itemId: 123305, className: "TSW03_305", name: "(Faded) Purine Migantis Two-handed Sword", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THSword", equipType2: "Sword", minLevel: 270, minAtk: 2351, maxAtk: 3526, attackType: "Slash" }, -{ itemId: 123306, className: "TSW03_306", name: "(Faded) Purine Pevordimas Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THSword", equipType2: "Sword", minLevel: 315, minAtk: 2737, maxAtk: 4106, attackType: "Slash" }, -{ itemId: 123307, className: "TSW03_307", name: "Berthas Paulownia", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 1064, maxAtk: 1596, attackType: "Strike" }, -{ itemId: 123308, className: "TSW03_308", name: "Berthas Crystaras", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1493, maxAtk: 2239, attackType: "Slash" }, -{ itemId: 123309, className: "TSW03_309", name: "Berthas Sketis Two-handed Sword", type: "Equip", group: "Weapon", weight: 300, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 678, maxAtk: 1017, attackType: "Slash" }, -{ itemId: 123310, className: "TSW03_310", name: "Berthas Pajoritas Two-handed Sword", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 220, minAtk: 1922, maxAtk: 2883, attackType: "Slash" }, -{ itemId: 123311, className: "TSW03_311", name: "Berthas Migantis Two-handed Sword", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 270, minAtk: 2351, maxAtk: 3526, attackType: "Slash" }, -{ itemId: 123312, className: "TSW03_312", name: "Berthas Pevordimas Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 315, minAtk: 2737, maxAtk: 4106, attackType: "Slash" }, -{ itemId: 123313, className: "TSW03_313", name: "Berthas Raffye Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 350, minAtk: 3037, maxAtk: 4556, attackType: "Slash" }, -{ itemId: 123314, className: "TSW03_314", name: "Berthas Zvaigzde Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, minAtk: 3295, maxAtk: 4942, attackType: "Slash" }, -{ itemId: 123315, className: "TSW03_315", name: "Berthas Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 3466, maxAtk: 5199, attackType: "Slash" }, -{ itemId: 123316, className: "TSW03_316", name: "Berthas Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 3466, maxAtk: 5199, attackType: "Slash" }, -{ itemId: 123317, className: "TSW03_317", name: "Berthas Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 430, minAtk: 3724, maxAtk: 5586, attackType: "Slash" }, -{ itemId: 124101, className: "TSW04_101", name: "Nulis", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 24832, sellPrice: 8137, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 1209, maxAtk: 1814, attackType: "Slash" }, -{ itemId: 124102, className: "TSW04_102", name: "Gravity", type: "Equip", group: "Weapon", weight: 1840, maxStack: 1, price: 24832, sellPrice: 7922, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 1209, maxAtk: 1814, smallSizeBonus: 88, middleSizeBonus: 132, largeSizeBonus: 176, attackType: "Slash" }, -{ itemId: 124103, className: "TSW04_103", name: "Galatunis Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 12697, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 1209, maxAtk: 1814, attackType: "Slash" }, -{ itemId: 124104, className: "TSW04_104", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 128, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 1209, maxAtk: 1814, attackType: "Slash" }, -{ itemId: 124105, className: "TSW04_105", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1696, maxAtk: 2545, attackType: "Slash" }, -{ itemId: 124106, className: "TSW04_106", name: "Magi Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1696, maxAtk: 2545, attackType: "Slash" }, -{ itemId: 124107, className: "TSW04_107", name: "Lolopanther Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 64000, sellPrice: 15616, equipType1: "THSword", equipType2: "Sword", minLevel: 270, minAtk: 3420, maxAtk: 5129, attackType: "Slash" }, -{ itemId: 124108, className: "TSW04_108", name: "Solmiki Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "THSword", equipType2: "Sword", minLevel: 330, minAtk: 4168, maxAtk: 6252, attackType: "Slash" }, -{ itemId: 124109, className: "TSW04_109", name: "Sarkmis", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THSword", equipType2: "Sword", minLevel: 315, minAtk: 3110, maxAtk: 4665, attackType: "Slash", darkRes: 180 }, -{ itemId: 124110, className: "TSW04_110", name: "Primus Paulownia", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 1209, maxAtk: 1814, attackType: "Strike" }, -{ itemId: 124111, className: "TSW04_111", name: "Primus Crystaras", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 170, minAtk: 1696, maxAtk: 2545, attackType: "Slash" }, -{ itemId: 124112, className: "TSW04_112", name: "Primus Sketis Two-handed Sword", type: "Equip", group: "Weapon", weight: 300, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 75, minAtk: 770, maxAtk: 1155, attackType: "Slash" }, -{ itemId: 124113, className: "TSW04_113", name: "Primus Pajoritas Two-handed Sword", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 220, minAtk: 2184, maxAtk: 3276, attackType: "Slash" }, -{ itemId: 124114, className: "TSW04_114", name: "Primus Migantis Two-handed Sword", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 270, minAtk: 2671, maxAtk: 4007, attackType: "Slash" }, -{ itemId: 124115, className: "TSW04_115", name: "Primus Pevordimas Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 315, minAtk: 3110, maxAtk: 4665, attackType: "Slash" }, -{ itemId: 124116, className: "TSW04_116", name: "Primus Raffye Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 350, minAtk: 3451, maxAtk: 5177, attackType: "Slash" }, -{ itemId: 124117, className: "TSW04_117", name: "Masinios Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 350, minAtk: 3451, maxAtk: 5177, attackType: "Slash" }, -{ itemId: 124118, className: "TSW04_118", name: "Primus Zvaigzde Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, -{ itemId: 124119, className: "TSW04_119", name: "Wastrel Zvaigzde Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, -{ itemId: 124120, className: "TSW04_120", name: "Asio Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, -{ itemId: 124121, className: "TSW04_121", name: "Primus Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, -{ itemId: 124122, className: "TSW04_122", name: "Skiaclipse Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, -{ itemId: 124123, className: "TSW04_123", name: "Moringponia Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, -{ itemId: 124124, className: "TSW04_124", name: "Misrus Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, -{ itemId: 124125, className: "TSW04_125", name: "Primus Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 430, minAtk: 4231, maxAtk: 6347, attackType: "Slash" }, -{ itemId: 125101, className: "TSW05_101", name: "Velcoffer Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 360, minAtk: 4543, maxAtk: 6814, attackType: "Slash" }, -{ itemId: 125102, className: "TSW05_102", name: "Velcoffer Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 360, minAtk: 4543, maxAtk: 6814, attackType: "Slash" }, -{ itemId: 125103, className: "TSW05_103", name: "Savinose Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, -{ itemId: 125104, className: "TSW05_104", name: "Skiaclipse Varna Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, -{ itemId: 141101, className: "STF01_101", name: "Old Short Rod", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 37, attackType: "Strike" }, -{ itemId: 141102, className: "STF01_102", name: "Short Rod", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 37, attackType: "Strike" }, -{ itemId: 141103, className: "STF01_103", name: "Crude Long Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 106, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 37, attackType: "Strike" }, -{ itemId: 141104, className: "STF01_104", name: "Crude Cane Rover", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, mAtk: 141, attackType: "Strike" }, -{ itemId: 141105, className: "STF01_105", name: "Cane", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, mAtk: 141, attackType: "Strike" }, -{ itemId: 141106, className: "STF01_106", name: "Crook", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 728, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 327, attackType: "Strike" }, -{ itemId: 141107, className: "STF01_107", name: "Pewter Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 327, attackType: "Strike" }, -{ itemId: 141108, className: "STF01_108", name: "Owl Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 327, attackType: "Strike" }, -{ itemId: 141109, className: "STF01_109", name: "Rune Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 327, attackType: "Strike" }, -{ itemId: 141110, className: "STF01_110", name: "Crystal Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 587, attackType: "Strike" }, -{ itemId: 141111, className: "STF01_111", name: "Old Puter Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 327, attackType: "Strike" }, -{ itemId: 141112, className: "STF01_112", name: "Old Owl Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 327, attackType: "Strike" }, -{ itemId: 141113, className: "STF01_113", name: "Soldier's Short Rod", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 52, attackType: "Strike" }, -{ itemId: 141114, className: "STF01_114", name: "Chieftain's Long Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 457, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 97, attackType: "Strike" }, -{ itemId: 141115, className: "STF01_115", name: "Old Cane Rover", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 37, attackType: "Strike" }, -{ itemId: 141116, className: "STF01_116", name: "Battle Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 587, attackType: "Strike" }, -{ itemId: 141117, className: "STF01_117", name: "Superior Short Rod", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 37, attackType: "Strike" }, -{ itemId: 141118, className: "STF01_118", name: "Long Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 246, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 37, attackType: "Strike" }, -{ itemId: 141119, className: "STF01_119", name: "Superior Long Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 37, attackType: "Strike" }, -{ itemId: 141120, className: "STF01_120", name: "Cane Rover", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, mAtk: 141, attackType: "Strike" }, -{ itemId: 141121, className: "STF01_121", name: "Superior Cane", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, mAtk: 141, attackType: "Strike" }, -{ itemId: 141122, className: "STF01_122", name: "Superior Crook", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 327, attackType: "Strike" }, -{ itemId: 141123, className: "STF01_123", name: "Superior Puter Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 327, attackType: "Strike" }, +{ itemId: 121130, className: "TSW01_130", name: "Twin Blade", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THSword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1572, maxAtk: 2359, attackType: "Slash" }, +{ itemId: 121131, className: "TSW01_131", name: "Superior Twin Blade", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THSword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1572, maxAtk: 2359, attackType: "Slash" }, +{ itemId: 121132, className: "TSW01_132", name: "(Faded) Replica Migantis Two-handed Sword", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "THSword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 1923, maxAtk: 2885, attackType: "Slash" }, +{ itemId: 121133, className: "TSW01_133", name: "(Faded) Replica Pevordimas Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 144000, sellPrice: 5000, equipType1: "THSword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2239, maxAtk: 3359, attackType: "Slash" }, +{ itemId: 121999, className: "TSW01_999", name: "Standard Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8000, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 133, maxAtk: 200, attackType: "Slash" }, +{ itemId: 122101, className: "TSW02_101", name: "Potentia", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 148, maxAtk: 222, attackType: "Slash" }, +{ itemId: 122102, className: "TSW02_102", name: "Temsus Flamberge", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 148, maxAtk: 222, attackType: "Slash" }, +{ itemId: 122103, className: "TSW02_103", name: "Didel Colossus", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 343, maxAtk: 515, attackType: "Slash" }, +{ itemId: 122104, className: "TSW02_104", name: "Collecture", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Slash" }, +{ itemId: 122105, className: "TSW02_105", name: "Hogma Greatsword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Slash" }, +{ itemId: 122106, className: "TSW02_106", name: "Cheminis Bastard Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 5824, sellPrice: 2794, equipType1: "THSword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 343, maxAtk: 515, attackType: "Slash" }, +{ itemId: 122107, className: "TSW02_107", name: "Primaluce", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Slash" }, +{ itemId: 122108, className: "TSW02_108", name: "Kindzal", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 13732, sellPrice: 4414, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Slash" }, +{ itemId: 122109, className: "TSW02_109", name: "Imperni Two-handed Sword", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Slash" }, +{ itemId: 122110, className: "TSW02_110", name: "Prieblanda", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Slash" }, +{ itemId: 122111, className: "TSW02_111", name: "Lapis Katzbalger", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Slash" }, +{ itemId: 122112, className: "TSW02_112", name: "Smith Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 39, maxAtk: 59, attackType: "Slash" }, +{ itemId: 122113, className: "TSW02_113", name: "Klavis Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Slash" }, +{ itemId: 122114, className: "TSW02_114", name: "Dio Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 4608, sellPrice: 1164, equipType1: "THSword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 148, maxAtk: 222, attackType: "Slash" }, +{ itemId: 122115, className: "TSW02_115", name: "Thresh Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 5824, sellPrice: 2746, equipType1: "THSword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 343, maxAtk: 515, attackType: "Slash" }, +{ itemId: 122116, className: "TSW02_116", name: "Sestas Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Slash" }, +{ itemId: 122117, className: "TSW02_117", name: "Dratt Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Slash" }, +{ itemId: 122118, className: "TSW02_118", name: "Aston Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1357, maxAtk: 2036, attackType: "Slash" }, +{ itemId: 122119, className: "TSW02_119", name: "Tenet Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 343, maxAtk: 515, attackType: "Slash" }, +{ itemId: 122120, className: "TSW02_120", name: "Patrice Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 343, maxAtk: 515, attackType: "Slash" }, +{ itemId: 122121, className: "TSW02_121", name: "Lukas Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Slash" }, +{ itemId: 122122, className: "TSW02_122", name: "Philips Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Slash" }, +{ itemId: 122123, className: "TSW02_123", name: "Escanciu Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Slash" }, +{ itemId: 122124, className: "TSW02_124", name: "Krag Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Slash" }, +{ itemId: 122125, className: "TSW02_125", name: "Pilgrim Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 4414, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Slash" }, +{ itemId: 122126, className: "TSW02_126", name: "Istora Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 6936, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1357, maxAtk: 2036, attackType: "Slash" }, +{ itemId: 122127, className: "TSW02_127", name: "Jaas Katzbalger", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, smallSizeBonus: 54, attackType: "Slash" }, +{ itemId: 122128, className: "TSW02_128", name: "Earth Dress Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Slash", earthRes: 19 }, +{ itemId: 122129, className: "TSW02_129", name: "Slaake Zweihander", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Slash" }, +{ itemId: 122130, className: "TSW02_130", name: "Lumas Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 4966, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Slash" }, +{ itemId: 122131, className: "TSW02_131", name: "Magi Executioner's Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1357, maxAtk: 2036, attackType: "Slash" }, +{ itemId: 122132, className: "TSW02_132", name: "Artie Greatsword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1357, maxAtk: 2036, attackType: "Slash" }, +{ itemId: 122133, className: "TSW02_133", name: "Vienie Overknife", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1357, maxAtk: 2036, attackType: "Slash" }, +{ itemId: 122134, className: "TSW02_134", name: "Duris Twin Blade", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THSword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1747, maxAtk: 2621, middleSizeBonus: 48, attackType: "Slash" }, +{ itemId: 122135, className: "TSW02_135", name: "Eki Lumai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THSword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1747, maxAtk: 2621, attackType: "Slash" }, +{ itemId: 122136, className: "TSW02_136", name: "Vienie Twin Blade", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THSword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1747, maxAtk: 2621, attackType: "Slash" }, +{ itemId: 122137, className: "TSW02_137", name: "Supportive Katzbalger", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 13732, sellPrice: 5068, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Slash" }, +{ itemId: 122150, className: "TSW02_150", name: "Tevhrin Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1747, maxAtk: 2621, attackType: "Slash" }, +{ itemId: 122151, className: "TSW02_151", name: "(Faded) Migantis Two-handed Sword", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THSword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2137, maxAtk: 3206, attackType: "Slash" }, +{ itemId: 122152, className: "TSW02_152", name: "(Faded) Pevordimas Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THSword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2488, maxAtk: 3732, attackType: "Slash" }, +{ itemId: 122153, className: "TSW02_153", name: "Paulownia", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Strike" }, +{ itemId: 122154, className: "TSW02_154", name: "Crystaras", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1357, maxAtk: 2036, attackType: "Slash" }, +{ itemId: 122155, className: "TSW02_155", name: "Sketis Two-Handed Sword", type: "Equip", group: "Weapon", weight: 300, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Slash" }, +{ itemId: 122156, className: "TSW02_156", name: "Pajoritas Two-Handed Sword", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1747, maxAtk: 2621, attackType: "Slash" }, +{ itemId: 122157, className: "TSW02_157", name: "Migantis Two-handed Sword", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2137, maxAtk: 3206, attackType: "Slash" }, +{ itemId: 122158, className: "TSW02_158", name: "Pevordimas Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2488, maxAtk: 3732, attackType: "Slash" }, +{ itemId: 122159, className: "TSW02_159", name: "Raffye Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 350, equipExpGroup: "Equip", minAtk: 2761, maxAtk: 4142, attackType: "Slash" }, +{ itemId: 122160, className: "TSW02_160", name: "Zvaigzde Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 2995, maxAtk: 4493, attackType: "Slash" }, +{ itemId: 122161, className: "TSW02_161", name: "Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3151, maxAtk: 4727, attackType: "Slash" }, +{ itemId: 123101, className: "TSW03_101", name: "Flamini", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 5017, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 678, maxAtk: 1017, attackType: "Slash" }, +{ itemId: 123102, className: "TSW03_102", name: "Wizard Slayer", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1064, maxAtk: 1596, addMDef: 16, attackType: "Slash", fireRes: 10, iceRes: 10 }, +{ itemId: 123103, className: "TSW03_103", name: "Naktis", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1064, maxAtk: 1596, smallSizeBonus: -47, largeSizeBonus: 68, attackType: "Strike" }, +{ itemId: 123104, className: "TSW03_104", name: "Luciduce", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 38803, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1493, maxAtk: 2239, attackType: "Slash" }, +{ itemId: 123105, className: "TSW03_105", name: "Hell and Heaven", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 38803, sellPrice: 8137, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1493, maxAtk: 2239, pAtk: 117, addDef: -235, attackType: "Slash" }, +{ itemId: 123106, className: "TSW03_106", name: "Deathweaver Tooth", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 163, maxAtk: 245, middleSizeBonus: 23, attackType: "Slash" }, +{ itemId: 123107, className: "TSW03_107", name: "Chapparition Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 378, maxAtk: 566, largeSizeBonus: 46, attackType: "Slash" }, +{ itemId: 123108, className: "TSW03_108", name: "Saw", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 1388, equipType1: "THSword", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 163, maxAtk: 245, attackType: "Slash" }, +{ itemId: 123109, className: "TSW03_109", name: "noname", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 12697, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1493, maxAtk: 2239, attackType: "Slash" }, +{ itemId: 123110, className: "TSW03_110", name: "noname", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1064, maxAtk: 1596, attackType: "Slash" }, +{ itemId: 123111, className: "TSW03_111", name: "Spell Breaker", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 52276, sellPrice: 12646, equipType1: "THSword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1922, maxAtk: 2883, addMDef: 84, attackType: "Slash" }, +{ itemId: 123112, className: "TSW03_112", name: "Seimos Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1064, maxAtk: 1596, attackType: "Slash" }, +{ itemId: 123113, className: "TSW03_113", name: "Tilly Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1064, maxAtk: 1596, attackType: "Slash" }, +{ itemId: 123114, className: "TSW03_114", name: "Khasti Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1493, maxAtk: 2239, addMinAtk: 38, attackType: "Slash" }, +{ itemId: 123115, className: "TSW03_115", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1493, maxAtk: 2239, attackType: "Slash" }, +{ itemId: 123116, className: "TSW03_116", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 128, equipType1: "THSword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1922, maxAtk: 2883, attackType: "Slash" }, +{ itemId: 123117, className: "TSW03_117", name: "Pensara Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1922, maxAtk: 2883, pAtk: 57, attackType: "Slash" }, +{ itemId: 123120, className: "TSW03_120", name: "Gale Slasher", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "THSword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2737, maxAtk: 4106, pAtk: 111, addMinAtk: 358, attackType: "Slash" }, +{ itemId: 123301, className: "TSW03_301", name: "(Faded) Paulownia", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1064, maxAtk: 1596, addMinAtk: 84, addMaxAtk: 111, addMAtk: -2483, attackType: "Strike" }, +{ itemId: 123302, className: "TSW03_302", name: "(Faded) Crystaras", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1493, maxAtk: 2239, addMAtk: -3428, attackType: "Slash" }, +{ itemId: 123303, className: "TSW03_303", name: "(Faded) Sketis Two-Handed Sword", type: "Equip", group: "Weapon", weight: 300, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 678, maxAtk: 1017, attackType: "Slash" }, +{ itemId: 123304, className: "TSW03_304", name: "(Faded) Pajoritas Two-Handed Sword", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1922, maxAtk: 2883, attackType: "Slash" }, +{ itemId: 123305, className: "TSW03_305", name: "(Faded) Purine Migantis Two-handed Sword", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THSword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2351, maxAtk: 3526, attackType: "Slash" }, +{ itemId: 123306, className: "TSW03_306", name: "(Faded) Purine Pevordimas Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THSword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2737, maxAtk: 4106, attackType: "Slash" }, +{ itemId: 123307, className: "TSW03_307", name: "Berthas Paulownia", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1064, maxAtk: 1596, attackType: "Strike" }, +{ itemId: 123308, className: "TSW03_308", name: "Berthas Crystaras", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1493, maxAtk: 2239, attackType: "Slash" }, +{ itemId: 123309, className: "TSW03_309", name: "Berthas Sketis Two-handed Sword", type: "Equip", group: "Weapon", weight: 300, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 678, maxAtk: 1017, attackType: "Slash" }, +{ itemId: 123310, className: "TSW03_310", name: "Berthas Pajoritas Two-handed Sword", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1922, maxAtk: 2883, attackType: "Slash" }, +{ itemId: 123311, className: "TSW03_311", name: "Berthas Migantis Two-handed Sword", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2351, maxAtk: 3526, attackType: "Slash" }, +{ itemId: 123312, className: "TSW03_312", name: "Berthas Pevordimas Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2737, maxAtk: 4106, attackType: "Slash" }, +{ itemId: 123313, className: "TSW03_313", name: "Berthas Raffye Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 350, equipExpGroup: "Equip", minAtk: 3037, maxAtk: 4556, attackType: "Slash" }, +{ itemId: 123314, className: "TSW03_314", name: "Berthas Zvaigzde Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3295, maxAtk: 4942, attackType: "Slash" }, +{ itemId: 123315, className: "TSW03_315", name: "Berthas Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3466, maxAtk: 5199, attackType: "Slash" }, +{ itemId: 123316, className: "TSW03_316", name: "Berthas Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3466, maxAtk: 5199, attackType: "Slash" }, +{ itemId: 123317, className: "TSW03_317", name: "Berthas Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 430, equipExpGroup: "Equip", minAtk: 3724, maxAtk: 5586, attackType: "Slash" }, +{ itemId: 124101, className: "TSW04_101", name: "Nulis", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 24832, sellPrice: 8137, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1209, maxAtk: 1814, attackType: "Slash" }, +{ itemId: 124102, className: "TSW04_102", name: "Gravity", type: "Equip", group: "Weapon", weight: 1840, maxStack: 1, price: 24832, sellPrice: 7922, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1209, maxAtk: 1814, smallSizeBonus: 88, middleSizeBonus: 132, largeSizeBonus: 176, attackType: "Slash" }, +{ itemId: 124103, className: "TSW04_103", name: "Galatunis Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 12697, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1209, maxAtk: 1814, attackType: "Slash" }, +{ itemId: 124104, className: "TSW04_104", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 128, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1209, maxAtk: 1814, attackType: "Slash" }, +{ itemId: 124105, className: "TSW04_105", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1696, maxAtk: 2545, attackType: "Slash" }, +{ itemId: 124106, className: "TSW04_106", name: "Magi Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1696, maxAtk: 2545, attackType: "Slash" }, +{ itemId: 124107, className: "TSW04_107", name: "Lolopanther Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 64000, sellPrice: 15616, equipType1: "THSword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 3420, maxAtk: 5129, attackType: "Slash" }, +{ itemId: 124108, className: "TSW04_108", name: "Solmiki Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "THSword", equipType2: "Sword", minLevel: 330, equipExpGroup: "Equip", minAtk: 4168, maxAtk: 6252, attackType: "Slash" }, +{ itemId: 124109, className: "TSW04_109", name: "Sarkmis", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THSword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 3110, maxAtk: 4665, attackType: "Slash", darkRes: 180 }, +{ itemId: 124110, className: "TSW04_110", name: "Primus Paulownia", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1209, maxAtk: 1814, attackType: "Strike" }, +{ itemId: 124111, className: "TSW04_111", name: "Primus Crystaras", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1696, maxAtk: 2545, attackType: "Slash" }, +{ itemId: 124112, className: "TSW04_112", name: "Primus Sketis Two-handed Sword", type: "Equip", group: "Weapon", weight: 300, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 770, maxAtk: 1155, attackType: "Slash" }, +{ itemId: 124113, className: "TSW04_113", name: "Primus Pajoritas Two-handed Sword", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 2184, maxAtk: 3276, attackType: "Slash" }, +{ itemId: 124114, className: "TSW04_114", name: "Primus Migantis Two-handed Sword", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2671, maxAtk: 4007, attackType: "Slash" }, +{ itemId: 124115, className: "TSW04_115", name: "Primus Pevordimas Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 3110, maxAtk: 4665, attackType: "Slash" }, +{ itemId: 124116, className: "TSW04_116", name: "Primus Raffye Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 350, equipExpGroup: "Equip", minAtk: 3451, maxAtk: 5177, attackType: "Slash" }, +{ itemId: 124117, className: "TSW04_117", name: "Masinios Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 350, equipExpGroup: "Equip", minAtk: 3451, maxAtk: 5177, attackType: "Slash" }, +{ itemId: 124118, className: "TSW04_118", name: "Primus Zvaigzde Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, +{ itemId: 124119, className: "TSW04_119", name: "Wastrel Zvaigzde Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, +{ itemId: 124120, className: "TSW04_120", name: "Asio Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, +{ itemId: 124121, className: "TSW04_121", name: "Primus Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, +{ itemId: 124122, className: "TSW04_122", name: "Skiaclipse Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, +{ itemId: 124123, className: "TSW04_123", name: "Moringponia Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, +{ itemId: 124124, className: "TSW04_124", name: "Misrus Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, +{ itemId: 124125, className: "TSW04_125", name: "Primus Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 430, equipExpGroup: "Equip", minAtk: 4231, maxAtk: 6347, attackType: "Slash" }, +{ itemId: 125101, className: "TSW05_101", name: "Velcoffer Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 360, equipExpGroup: "Equip", minAtk: 4543, maxAtk: 6814, attackType: "Slash" }, +{ itemId: 125102, className: "TSW05_102", name: "Velcoffer Two-handed Sword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 360, equipExpGroup: "Equip", minAtk: 4543, maxAtk: 6814, attackType: "Slash" }, +{ itemId: 125103, className: "TSW05_103", name: "Savinose Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, +{ itemId: 125104, className: "TSW05_104", name: "Skiaclipse Varna Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, +{ itemId: 141101, className: "STF01_101", name: "Old Short Rod", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 37, attackType: "Strike" }, +{ itemId: 141102, className: "STF01_102", name: "Short Rod", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 37, attackType: "Strike" }, +{ itemId: 141103, className: "STF01_103", name: "Crude Long Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 106, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 37, attackType: "Strike" }, +{ itemId: 141104, className: "STF01_104", name: "Crude Cane Rover", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 141, attackType: "Strike" }, +{ itemId: 141105, className: "STF01_105", name: "Cane", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 141, attackType: "Strike" }, +{ itemId: 141106, className: "STF01_106", name: "Crook", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 728, equipType1: "Staff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 327, attackType: "Strike" }, +{ itemId: 141107, className: "STF01_107", name: "Pewter Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 327, attackType: "Strike" }, +{ itemId: 141108, className: "STF01_108", name: "Owl Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 327, attackType: "Strike" }, +{ itemId: 141109, className: "STF01_109", name: "Rune Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 327, attackType: "Strike" }, +{ itemId: 141110, className: "STF01_110", name: "Crystal Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 587, attackType: "Strike" }, +{ itemId: 141111, className: "STF01_111", name: "Old Puter Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 327, attackType: "Strike" }, +{ itemId: 141112, className: "STF01_112", name: "Old Owl Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 327, attackType: "Strike" }, +{ itemId: 141113, className: "STF01_113", name: "Soldier's Short Rod", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 52, attackType: "Strike" }, +{ itemId: 141114, className: "STF01_114", name: "Chieftain's Long Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 457, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 97, attackType: "Strike" }, +{ itemId: 141115, className: "STF01_115", name: "Old Cane Rover", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 37, attackType: "Strike" }, +{ itemId: 141116, className: "STF01_116", name: "Battle Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 587, attackType: "Strike" }, +{ itemId: 141117, className: "STF01_117", name: "Superior Short Rod", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 37, attackType: "Strike" }, +{ itemId: 141118, className: "STF01_118", name: "Long Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 246, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 37, attackType: "Strike" }, +{ itemId: 141119, className: "STF01_119", name: "Superior Long Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 37, attackType: "Strike" }, +{ itemId: 141120, className: "STF01_120", name: "Cane Rover", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 141, attackType: "Strike" }, +{ itemId: 141121, className: "STF01_121", name: "Superior Cane", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 141, attackType: "Strike" }, +{ itemId: 141122, className: "STF01_122", name: "Superior Crook", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 327, attackType: "Strike" }, +{ itemId: 141123, className: "STF01_123", name: "Superior Puter Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 327, attackType: "Strike" }, { itemId: 141124, className: "STF01_124", name: "Dunkel Crook", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 327, attackType: "Strike" }, { itemId: 141125, className: "STF01_125", name: "Dunkel Crystal Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 1837, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 587, attackType: "Strike" }, { itemId: 141126, className: "STF01_126", name: "Dunkel Long Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 106, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 37, attackType: "Strike" }, { itemId: 141127, className: "STF01_127", name: "Dunkel Cane Rover", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, mAtk: 141, attackType: "Strike" }, { itemId: 141128, className: "STF01_128", name: "Dunkel Cane", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, mAtk: 141, attackType: "Strike" }, { itemId: 141129, className: "STF01_129", name: "Dunkel Pewter Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 3640, sellPrice: 1484, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 327, attackType: "Strike" }, -{ itemId: 141130, className: "STF01_130", name: "Snake Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 587, attackType: "Strike" }, -{ itemId: 141131, className: "STF01_131", name: "Alter Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 921, attackType: "Strike" }, -{ itemId: 141132, className: "STF01_132", name: "Nald Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 921, attackType: "Strike" }, -{ itemId: 141133, className: "STF01_133", name: "Elder Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 921, attackType: "Strike" }, -{ itemId: 141134, className: "STF01_134", name: "Meteor Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 5018, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1292, attackType: "Strike" }, -{ itemId: 141135, className: "STF01_135", name: "Ring Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1292, attackType: "Strike" }, -{ itemId: 141136, className: "STF01_136", name: "Servant Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1292, attackType: "Strike" }, +{ itemId: 141130, className: "STF01_130", name: "Snake Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 587, attackType: "Strike" }, +{ itemId: 141131, className: "STF01_131", name: "Alter Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 921, attackType: "Strike" }, +{ itemId: 141132, className: "STF01_132", name: "Nald Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 921, attackType: "Strike" }, +{ itemId: 141133, className: "STF01_133", name: "Elder Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 921, attackType: "Strike" }, +{ itemId: 141134, className: "STF01_134", name: "Meteor Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 5018, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1292, attackType: "Strike" }, +{ itemId: 141135, className: "STF01_135", name: "Ring Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1292, attackType: "Strike" }, +{ itemId: 141136, className: "STF01_136", name: "Servant Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1292, attackType: "Strike" }, { itemId: 141137, className: "STF01_137", name: "Yorgis Alter Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 2730, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 921, attackType: "Strike" }, -{ itemId: 141138, className: "STF01_138", name: "Corona Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Staff", equipType2: "Staff", minLevel: 220, mAtk: 1663, attackType: "Strike" }, -{ itemId: 141139, className: "STF01_139", name: "Superior Corona Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Staff", equipType2: "Staff", minLevel: 220, mAtk: 1663, attackType: "Strike" }, -{ itemId: 141140, className: "STF01_140", name: "(Faded) Replica Migantis Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 80000, sellPrice: 5000, equipType1: "Staff", equipType2: "Staff", minLevel: 270, mAtk: 2034, attackType: "Strike" }, -{ itemId: 141141, className: "STF01_141", name: "(Faded) Replica Pevordimas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 120000, sellPrice: 5000, equipType1: "Staff", equipType2: "Staff", minLevel: 315, mAtk: 2369, attackType: "Strike" }, -{ itemId: 142101, className: "STF02_101", name: "Panto Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, mAtk: 157, attackType: "Strike" }, -{ itemId: 142102, className: "STF02_102", name: "Ice Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 363, attackType: "Strike" }, -{ itemId: 142103, className: "STF02_103", name: "Fire Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2673, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 652, attackType: "Strike" }, -{ itemId: 142104, className: "STF02_104", name: "Vasia Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 652, attackType: "Strike" }, -{ itemId: 142105, className: "STF02_105", name: "Magic Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 363, attackType: "Strike" }, -{ itemId: 142106, className: "STF02_106", name: "Grynas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1023, attackType: "Strike" }, -{ itemId: 142107, className: "STF02_107", name: "Cheminis Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1746, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 652, attackType: "Strike" }, -{ itemId: 142108, className: "STF02_108", name: "Arch Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1023, attackType: "Strike", poisonRes: 12 }, -{ itemId: 142109, className: "STF02_109", name: "Imperni Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 652, attackType: "Strike", poisonRes: 12 }, -{ itemId: 142110, className: "STF02_110", name: "Soldier's Long Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 106, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 91, attackType: "Strike" }, -{ itemId: 142111, className: "STF02_111", name: "Smith Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 41, attackType: "Strike" }, -{ itemId: 142112, className: "STF02_112", name: "Klavis Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, mAtk: 157, attackType: "Strike" }, -{ itemId: 142113, className: "STF02_113", name: "Dio Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 728, equipType1: "Staff", equipType2: "Staff", minLevel: 15, mAtk: 157, attackType: "Strike" }, -{ itemId: 142114, className: "STF02_114", name: "Thresh Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1716, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 363, attackType: "Strike" }, -{ itemId: 142115, className: "STF02_115", name: "Sestas Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 652, attackType: "Strike" }, -{ itemId: 142116, className: "STF02_116", name: "Dratt Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1023, attackType: "Strike" }, -{ itemId: 142117, className: "STF02_117", name: "Aston Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1436, attackType: "Strike" }, -{ itemId: 142118, className: "STF02_118", name: "Tenet Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 363, attackType: "Strike" }, -{ itemId: 142119, className: "STF02_119", name: "Patrice Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 363, attackType: "Strike" }, -{ itemId: 142120, className: "STF02_120", name: "Lukas Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 652, attackType: "Strike" }, -{ itemId: 142121, className: "STF02_121", name: "Philis Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 652, attackType: "Strike" }, -{ itemId: 142122, className: "STF02_122", name: "Escanciu Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 652, attackType: "Strike" }, -{ itemId: 142123, className: "STF02_123", name: "Krag Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 652, attackType: "Strike" }, -{ itemId: 142124, className: "STF02_124", name: "Pilgrim Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 2759, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1023, attackType: "Strike" }, -{ itemId: 142125, className: "STF02_125", name: "Istora Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 4335, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1436, attackType: "Strike" }, -{ itemId: 142126, className: "STF02_126", name: "Magi Alter Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1023, attackType: "Strike" }, -{ itemId: 142127, className: "STF02_127", name: "Artie Nald Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1023, addMDef: 12, attackType: "Strike" }, -{ itemId: 142128, className: "STF02_128", name: "Schipell Meteor Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1023, attackType: "Strike" }, -{ itemId: 142129, className: "STF02_129", name: "Lumas Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 3104, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1023, attackType: "Strike" }, -{ itemId: 142130, className: "STF02_130", name: "Slaake Meteor Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1436, attackType: "Strike" }, -{ itemId: 142131, className: "STF02_131", name: "Hunting Ring Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1436, attackType: "Strike" }, -{ itemId: 142132, className: "STF02_132", name: "Servant Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1436, attackType: "Strike" }, -{ itemId: 142133, className: "STF02_133", name: "Vitt Corona Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Staff", equipType2: "Staff", minLevel: 220, mAtk: 1848, attackType: "Strike" }, -{ itemId: 142134, className: "STF02_134", name: "Duris Battle Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Staff", equipType2: "Staff", minLevel: 220, mAtk: 1848, middleSizeBonus: 45, attackType: "Strike" }, -{ itemId: 142135, className: "STF02_135", name: "Artie Snake Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Staff", equipType2: "Staff", minLevel: 220, mAtk: 1848, addDef: 15, attackType: "Strike" }, -{ itemId: 142136, className: "STF02_136", name: "Supportive Alter Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 652, attackType: "Strike" }, -{ itemId: 142150, className: "STF02_150", name: "Tevhrin Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 220, mAtk: 1848, attackType: "Strike" }, -{ itemId: 142151, className: "STF02_151", name: "(Faded) Migantis Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Staff", equipType2: "Staff", minLevel: 270, mAtk: 2261, attackType: "Strike" }, -{ itemId: 142152, className: "STF02_152", name: "(Faded) Pevordimas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Staff", equipType2: "Staff", minLevel: 315, mAtk: 2632, attackType: "Strike" }, -{ itemId: 142153, className: "STF02_153", name: "Baule Sphere", type: "Equip", group: "Weapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1023, attackType: "Strike" }, -{ itemId: 142154, className: "STF02_154", name: "Pamane Rod", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1436, attackType: "Strike" }, -{ itemId: 142155, className: "STF02_155", name: "Sketis Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 652, attackType: "Strike" }, -{ itemId: 142156, className: "STF02_156", name: "Pajoritas Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 220, mAtk: 1848, attackType: "Strike" }, -{ itemId: 142157, className: "STF02_157", name: "Migantis Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 270, mAtk: 2261, attackType: "Strike" }, -{ itemId: 142158, className: "STF02_158", name: "Pevordimas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 315, mAtk: 2632, attackType: "Strike" }, -{ itemId: 142159, className: "STF02_159", name: "Raffye Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 350, mAtk: 2921, attackType: "Strike" }, -{ itemId: 142160, className: "STF02_160", name: "Zvaigzde Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, mAtk: 3168, attackType: "Strike" }, -{ itemId: 142161, className: "STF02_161", name: "Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 3333, attackType: "Strike" }, -{ itemId: 143101, className: "STF03_101", name: "Temere", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4884, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1125, attackType: "Strike" }, -{ itemId: 143102, className: "STF03_102", name: "Ignition", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1579, attackType: "Strike" }, -{ itemId: 143103, className: "STF03_103", name: "Secretum", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 717, attackType: "Strike" }, -{ itemId: 143104, className: "STF03_104", name: "Deathweaver Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, mAtk: 172, attackType: "Strike" }, -{ itemId: 143105, className: "STF03_105", name: "Chapparition Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 399, attackType: "Strike" }, -{ itemId: 143106, className: "STF03_106", name: "noname", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 24252, sellPrice: 3104, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1579, attackType: "Strike" }, -{ itemId: 143107, className: "STF03_107", name: "noname", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1125, attackType: "Strike" }, -{ itemId: 143108, className: "STF03_108", name: "Circle Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 8000, equipType1: "Staff", equipType2: "Staff", minLevel: 220, mAtk: 2033, addMDef: 19, attackType: "Strike" }, -{ itemId: 143109, className: "STF03_109", name: "Seimos Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1125, addMAtk: 20, attackType: "Strike" }, -{ itemId: 143110, className: "STF03_110", name: "Tilly Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4365, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1125, attackType: "Strike" }, -{ itemId: 143111, className: "STF03_111", name: "Khasti Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1579, attackType: "Strike" }, -{ itemId: 143112, className: "STF03_112", name: "Magic Circle", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 4304, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1579, addMDef: 8, largeSizeBonus: 68, attackType: "Strike" }, -{ itemId: 143113, className: "STF03_113", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 80, equipType1: "Staff", equipType2: "Staff", minLevel: 220, mAtk: 2033, attackType: "Strike" }, -{ itemId: 143114, className: "STF03_114", name: "Pensara Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 220, mAtk: 2033, attackType: "Strike" }, -{ itemId: 143120, className: "STF03_120", name: "Windia Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Staff", equipType2: "Staff", minLevel: 315, mAtk: 2895, attackType: "Strike" }, -{ itemId: 143301, className: "STF03_301", name: "(Faded) Baule Sphere", type: "Equip", group: "Weapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 3104, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1125, attackType: "Strike" }, -{ itemId: 143302, className: "STF03_302", name: "(Faded) Pamane Rod", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 24252, sellPrice: 4850, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1579, attackType: "Strike" }, -{ itemId: 143303, className: "STF03_303", name: "(Faded) Sketis Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 717, addMDef: 40, attackType: "Strike" }, -{ itemId: 143304, className: "STF03_304", name: "(Faded) Pajoritas Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 220, mAtk: 2033, addMAtk: 30, attackType: "Strike" }, -{ itemId: 143305, className: "STF03_305", name: "(Faded) Purine Migantis Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Staff", equipType2: "Staff", minLevel: 270, mAtk: 2487, attackType: "Strike" }, -{ itemId: 143306, className: "STF03_306", name: "(Faded) Purine Pevordimas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Staff", equipType2: "Staff", minLevel: 315, mAtk: 2895, attackType: "Strike" }, -{ itemId: 143307, className: "STF03_307", name: "Berthas Baule Sphere", type: "Equip", group: "Weapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1125, attackType: "Strike" }, -{ itemId: 143308, className: "STF03_308", name: "Berthas Pamane Rod", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1579, attackType: "Strike" }, -{ itemId: 143309, className: "STF03_309", name: "Berthas Sketis Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 717, attackType: "Strike" }, -{ itemId: 143310, className: "STF03_310", name: "Berthas Pajoritas Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 220, mAtk: 2033, attackType: "Strike" }, -{ itemId: 143311, className: "STF03_311", name: "Berthas Migantis Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 270, mAtk: 2487, attackType: "Strike" }, -{ itemId: 143312, className: "STF03_312", name: "Berthas Pevordimas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 315, mAtk: 2895, attackType: "Strike" }, -{ itemId: 143313, className: "STF03_313", name: "Berthas Raffye Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 350, mAtk: 3213, attackType: "Strike" }, -{ itemId: 143314, className: "STF03_314", name: "Berthas Zvaigzde Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, mAtk: 3485, attackType: "Strike" }, -{ itemId: 143315, className: "STF03_315", name: "Berthas Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 3666, attackType: "Strike" }, -{ itemId: 143316, className: "STF03_316", name: "Berthas Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 430, mAtk: 3939, attackType: "Strike" }, -{ itemId: 144101, className: "STF04_101", name: "Zaima", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4365, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1279, addMAtk: 14, attackType: "Strike", fireRes: -46 }, -{ itemId: 144102, className: "STF04_102", name: "Epos", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1279, attackType: "Strike" }, -{ itemId: 144103, className: "STF04_103", name: "Twinkle Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, mAtk: 196, attackType: "Strike" }, -{ itemId: 144104, className: "STF04_104", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 80, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1279, attackType: "Strike" }, -{ itemId: 144105, className: "STF04_105", name: "Galatunis Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 7936, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1279, attackType: "Strike" }, -{ itemId: 144106, className: "STF04_106", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1794, attackType: "Strike" }, -{ itemId: 144107, className: "STF04_107", name: "Maga Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1794, attackType: "Strike", earthRes: 16 }, -{ itemId: 144108, className: "STF04_108", name: "Lolopanther Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Staff", equipType2: "Staff", minLevel: 270, mAtk: 3617, attackType: "Strike" }, -{ itemId: 144109, className: "STF04_109", name: "Solmiki Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 48800, sellPrice: 12952, equipType1: "Staff", equipType2: "Staff", minLevel: 330, mAtk: 4409, attackType: "Strike" }, -{ itemId: 144110, className: "STF04_110", name: "Heart of Glory", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Staff", equipType2: "Staff", minLevel: 315, mAtk: 3290, addDef: 132, attackType: "Strike" }, -{ itemId: 144111, className: "STF04_111", name: "Primus Baule Sphere", type: "Equip", group: "Weapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1279, attackType: "Strike" }, -{ itemId: 144112, className: "STF04_112", name: "Primus Pamane Rod", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 170, mAtk: 1794, attackType: "Strike" }, -{ itemId: 144113, className: "STF04_113", name: "Primus Sketis Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 75, mAtk: 815, attackType: "Strike" }, -{ itemId: 144114, className: "STF04_114", name: "Primus Pajoritas Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 220, mAtk: 2310, attackType: "Strike" }, -{ itemId: 144115, className: "STF04_115", name: "Primus Migantis Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 270, mAtk: 2826, attackType: "Strike" }, -{ itemId: 144116, className: "STF04_116", name: "Primus Pevordimas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 315, mAtk: 3290, attackType: "Strike" }, -{ itemId: 144117, className: "STF04_117", name: "Primus Raffye Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 350, mAtk: 3651, attackType: "Strike" }, -{ itemId: 144118, className: "STF04_118", name: "Masinios Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 350, mAtk: 3651, attackType: "Strike" }, -{ itemId: 144119, className: "STF04_119", name: "Primus Zvaigzde Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, mAtk: 3960, attackType: "Strike" }, -{ itemId: 144120, className: "STF04_120", name: "Asio Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, mAtk: 3960, addMDef: 325, attackType: "Strike" }, -{ itemId: 144121, className: "STF04_121", name: "Wastrel Zvaigzde Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, mAtk: 3960, addMAtk: 232, addDef: 325, attackType: "Strike" }, -{ itemId: 144122, className: "STF04_122", name: "Primus Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 4166, attackType: "Strike" }, -{ itemId: 144123, className: "STF04_123", name: "Skiaclipse Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 4166, addMAtk: 372, attackType: "Strike" }, -{ itemId: 144124, className: "STF04_124", name: "Moringponia Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 4166, attackType: "Strike" }, -{ itemId: 144125, className: "STF04_125", name: "Misrus Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 4166, attackType: "Strike" }, -{ itemId: 144126, className: "STF04_126", name: "Primus Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 430, mAtk: 4476, attackType: "Strike" }, -{ itemId: 145101, className: "STF05_101", name: "Velcoffer Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 360, mAtk: 4805, attackType: "Strike" }, -{ itemId: 145102, className: "STF05_102", name: "Velcoffer Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 360, mAtk: 4805, attackType: "Strike" }, -{ itemId: 145103, className: "STF05_103", name: "Savinose Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 5333, attackType: "Strike" }, -{ itemId: 145104, className: "STF05_104", name: "Skiaclipse Varna Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 5333, attackType: "Strike" }, -{ itemId: 161101, className: "TBW01_101", name: "Old Light Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Arrow" }, -{ itemId: 161102, className: "TBW01_102", name: "Light Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Arrow" }, -{ itemId: 161103, className: "TBW01_103", name: "Crude Short Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 170, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Arrow" }, -{ itemId: 161104, className: "TBW01_104", name: "Crude Longbow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, minAtk: 133, maxAtk: 200, attackType: "Arrow" }, -{ itemId: 161105, className: "TBW01_105", name: "Composite Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, minAtk: 133, maxAtk: 200, attackType: "Arrow" }, -{ itemId: 161106, className: "TBW01_106", name: "Self Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 1164, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Arrow" }, -{ itemId: 161107, className: "TBW01_107", name: "Rokas Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Arrow" }, -{ itemId: 161108, className: "TBW01_108", name: "Gorithos", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Arrow" }, -{ itemId: 161109, className: "TBW01_109", name: "Gulail", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Arrow" }, -{ itemId: 161110, className: "TBW01_110", name: "Kaman", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 555, maxAtk: 832, attackType: "Arrow" }, -{ itemId: 161111, className: "TBW01_111", name: "Old Rokas Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 15, minAtk: 133, maxAtk: 200, attackType: "Arrow" }, -{ itemId: 161112, className: "TBW01_112", name: "Old Gorithos", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Arrow" }, -{ itemId: 161113, className: "TBW01_113", name: "Soldier's Light Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 49, maxAtk: 74, attackType: "Arrow" }, -{ itemId: 161114, className: "TBW01_114", name: "Mayor's Short Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 731, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 91, maxAtk: 137, attackType: "Arrow" }, -{ itemId: 161115, className: "TBW01_115", name: "Old Long Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 731, equipType1: "THBow", equipType2: "Bow", minLevel: 15, minAtk: 133, maxAtk: 200, attackType: "Arrow" }, -{ itemId: 161116, className: "TBW01_116", name: "Gendawa", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 555, maxAtk: 832, attackType: "Arrow" }, -{ itemId: 161117, className: "TBW01_117", name: "Superior Light Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 640, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Arrow" }, -{ itemId: 161118, className: "TBW01_118", name: "Short Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 393, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Arrow" }, -{ itemId: 161119, className: "TBW01_119", name: "Superior Short Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 640, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Arrow" }, -{ itemId: 161120, className: "TBW01_120", name: "Long Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, minAtk: 133, maxAtk: 200, attackType: "Arrow" }, -{ itemId: 161121, className: "TBW01_121", name: "Superior Composite Bow", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, minAtk: 133, maxAtk: 200, attackType: "Arrow" }, -{ itemId: 161122, className: "TBW01_122", name: "Superior Self Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Arrow" }, -{ itemId: 161123, className: "TBW01_123", name: "Superior Rokas Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Arrow" }, +{ itemId: 141138, className: "STF01_138", name: "Corona Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Staff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 1663, attackType: "Strike" }, +{ itemId: 141139, className: "STF01_139", name: "Superior Corona Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Staff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 1663, attackType: "Strike" }, +{ itemId: 141140, className: "STF01_140", name: "(Faded) Replica Migantis Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 80000, sellPrice: 5000, equipType1: "Staff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 2034, attackType: "Strike" }, +{ itemId: 141141, className: "STF01_141", name: "(Faded) Replica Pevordimas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 120000, sellPrice: 5000, equipType1: "Staff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 2369, attackType: "Strike" }, +{ itemId: 142101, className: "STF02_101", name: "Panto Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 157, attackType: "Strike" }, +{ itemId: 142102, className: "STF02_102", name: "Ice Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 363, attackType: "Strike" }, +{ itemId: 142103, className: "STF02_103", name: "Fire Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2673, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 652, attackType: "Strike" }, +{ itemId: 142104, className: "STF02_104", name: "Vasia Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 652, attackType: "Strike" }, +{ itemId: 142105, className: "STF02_105", name: "Magic Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 363, attackType: "Strike" }, +{ itemId: 142106, className: "STF02_106", name: "Grynas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1023, attackType: "Strike" }, +{ itemId: 142107, className: "STF02_107", name: "Cheminis Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1746, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 652, attackType: "Strike" }, +{ itemId: 142108, className: "STF02_108", name: "Arch Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1023, attackType: "Strike", poisonRes: 12 }, +{ itemId: 142109, className: "STF02_109", name: "Imperni Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 652, attackType: "Strike", poisonRes: 12 }, +{ itemId: 142110, className: "STF02_110", name: "Soldier's Long Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 106, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 91, attackType: "Strike" }, +{ itemId: 142111, className: "STF02_111", name: "Smith Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 41, attackType: "Strike" }, +{ itemId: 142112, className: "STF02_112", name: "Klavis Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 157, attackType: "Strike" }, +{ itemId: 142113, className: "STF02_113", name: "Dio Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 728, equipType1: "Staff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 157, attackType: "Strike" }, +{ itemId: 142114, className: "STF02_114", name: "Thresh Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1716, equipType1: "Staff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 363, attackType: "Strike" }, +{ itemId: 142115, className: "STF02_115", name: "Sestas Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 652, attackType: "Strike" }, +{ itemId: 142116, className: "STF02_116", name: "Dratt Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1023, attackType: "Strike" }, +{ itemId: 142117, className: "STF02_117", name: "Aston Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1436, attackType: "Strike" }, +{ itemId: 142118, className: "STF02_118", name: "Tenet Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 363, attackType: "Strike" }, +{ itemId: 142119, className: "STF02_119", name: "Patrice Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 363, attackType: "Strike" }, +{ itemId: 142120, className: "STF02_120", name: "Lukas Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 652, attackType: "Strike" }, +{ itemId: 142121, className: "STF02_121", name: "Philis Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 652, attackType: "Strike" }, +{ itemId: 142122, className: "STF02_122", name: "Escanciu Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 652, attackType: "Strike" }, +{ itemId: 142123, className: "STF02_123", name: "Krag Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 652, attackType: "Strike" }, +{ itemId: 142124, className: "STF02_124", name: "Pilgrim Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 2759, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1023, attackType: "Strike" }, +{ itemId: 142125, className: "STF02_125", name: "Istora Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 4335, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1436, attackType: "Strike" }, +{ itemId: 142126, className: "STF02_126", name: "Magi Alter Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1023, attackType: "Strike" }, +{ itemId: 142127, className: "STF02_127", name: "Artie Nald Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1023, addMDef: 12, attackType: "Strike" }, +{ itemId: 142128, className: "STF02_128", name: "Schipell Meteor Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1023, attackType: "Strike" }, +{ itemId: 142129, className: "STF02_129", name: "Lumas Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 3104, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1023, attackType: "Strike" }, +{ itemId: 142130, className: "STF02_130", name: "Slaake Meteor Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1436, attackType: "Strike" }, +{ itemId: 142131, className: "STF02_131", name: "Hunting Ring Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1436, attackType: "Strike" }, +{ itemId: 142132, className: "STF02_132", name: "Servant Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1436, attackType: "Strike" }, +{ itemId: 142133, className: "STF02_133", name: "Vitt Corona Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Staff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 1848, attackType: "Strike" }, +{ itemId: 142134, className: "STF02_134", name: "Duris Battle Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Staff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 1848, middleSizeBonus: 45, attackType: "Strike" }, +{ itemId: 142135, className: "STF02_135", name: "Artie Snake Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Staff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 1848, addDef: 15, attackType: "Strike" }, +{ itemId: 142136, className: "STF02_136", name: "Supportive Alter Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 652, attackType: "Strike" }, +{ itemId: 142150, className: "STF02_150", name: "Tevhrin Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 1848, attackType: "Strike" }, +{ itemId: 142151, className: "STF02_151", name: "(Faded) Migantis Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Staff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 2261, attackType: "Strike" }, +{ itemId: 142152, className: "STF02_152", name: "(Faded) Pevordimas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Staff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 2632, attackType: "Strike" }, +{ itemId: 142153, className: "STF02_153", name: "Baule Sphere", type: "Equip", group: "Weapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1023, attackType: "Strike" }, +{ itemId: 142154, className: "STF02_154", name: "Pamane Rod", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1436, attackType: "Strike" }, +{ itemId: 142155, className: "STF02_155", name: "Sketis Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 652, attackType: "Strike" }, +{ itemId: 142156, className: "STF02_156", name: "Pajoritas Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 1848, attackType: "Strike" }, +{ itemId: 142157, className: "STF02_157", name: "Migantis Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 2261, attackType: "Strike" }, +{ itemId: 142158, className: "STF02_158", name: "Pevordimas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 2632, attackType: "Strike" }, +{ itemId: 142159, className: "STF02_159", name: "Raffye Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 350, equipExpGroup: "Equip", mAtk: 2921, attackType: "Strike" }, +{ itemId: 142160, className: "STF02_160", name: "Zvaigzde Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 3168, attackType: "Strike" }, +{ itemId: 142161, className: "STF02_161", name: "Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 3333, attackType: "Strike" }, +{ itemId: 143101, className: "STF03_101", name: "Temere", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4884, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1125, attackType: "Strike" }, +{ itemId: 143102, className: "STF03_102", name: "Ignition", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1579, attackType: "Strike" }, +{ itemId: 143103, className: "STF03_103", name: "Secretum", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 717, attackType: "Strike" }, +{ itemId: 143104, className: "STF03_104", name: "Deathweaver Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 172, attackType: "Strike" }, +{ itemId: 143105, className: "STF03_105", name: "Chapparition Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 399, attackType: "Strike" }, +{ itemId: 143106, className: "STF03_106", name: "noname", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 24252, sellPrice: 3104, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1579, attackType: "Strike" }, +{ itemId: 143107, className: "STF03_107", name: "noname", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1125, attackType: "Strike" }, +{ itemId: 143108, className: "STF03_108", name: "Circle Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 8000, equipType1: "Staff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2033, addMDef: 19, attackType: "Strike" }, +{ itemId: 143109, className: "STF03_109", name: "Seimos Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1125, addMAtk: 20, attackType: "Strike" }, +{ itemId: 143110, className: "STF03_110", name: "Tilly Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4365, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1125, attackType: "Strike" }, +{ itemId: 143111, className: "STF03_111", name: "Khasti Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1579, attackType: "Strike" }, +{ itemId: 143112, className: "STF03_112", name: "Magic Circle", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 4304, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1579, addMDef: 8, largeSizeBonus: 68, attackType: "Strike" }, +{ itemId: 143113, className: "STF03_113", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 80, equipType1: "Staff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2033, attackType: "Strike" }, +{ itemId: 143114, className: "STF03_114", name: "Pensara Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2033, attackType: "Strike" }, +{ itemId: 143120, className: "STF03_120", name: "Windia Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Staff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 2895, attackType: "Strike" }, +{ itemId: 143301, className: "STF03_301", name: "(Faded) Baule Sphere", type: "Equip", group: "Weapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 3104, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1125, attackType: "Strike" }, +{ itemId: 143302, className: "STF03_302", name: "(Faded) Pamane Rod", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 24252, sellPrice: 4850, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1579, attackType: "Strike" }, +{ itemId: 143303, className: "STF03_303", name: "(Faded) Sketis Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 717, addMDef: 40, attackType: "Strike" }, +{ itemId: 143304, className: "STF03_304", name: "(Faded) Pajoritas Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2033, addMAtk: 30, attackType: "Strike" }, +{ itemId: 143305, className: "STF03_305", name: "(Faded) Purine Migantis Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Staff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 2487, attackType: "Strike" }, +{ itemId: 143306, className: "STF03_306", name: "(Faded) Purine Pevordimas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Staff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 2895, attackType: "Strike" }, +{ itemId: 143307, className: "STF03_307", name: "Berthas Baule Sphere", type: "Equip", group: "Weapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1125, attackType: "Strike" }, +{ itemId: 143308, className: "STF03_308", name: "Berthas Pamane Rod", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1579, attackType: "Strike" }, +{ itemId: 143309, className: "STF03_309", name: "Berthas Sketis Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 717, attackType: "Strike" }, +{ itemId: 143310, className: "STF03_310", name: "Berthas Pajoritas Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2033, attackType: "Strike" }, +{ itemId: 143311, className: "STF03_311", name: "Berthas Migantis Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 2487, attackType: "Strike" }, +{ itemId: 143312, className: "STF03_312", name: "Berthas Pevordimas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 2895, attackType: "Strike" }, +{ itemId: 143313, className: "STF03_313", name: "Berthas Raffye Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 350, equipExpGroup: "Equip", mAtk: 3213, attackType: "Strike" }, +{ itemId: 143314, className: "STF03_314", name: "Berthas Zvaigzde Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 3485, attackType: "Strike" }, +{ itemId: 143315, className: "STF03_315", name: "Berthas Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 3666, attackType: "Strike" }, +{ itemId: 143316, className: "STF03_316", name: "Berthas Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 430, equipExpGroup: "Equip", mAtk: 3939, attackType: "Strike" }, +{ itemId: 144101, className: "STF04_101", name: "Zaima", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4365, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1279, addMAtk: 14, attackType: "Strike", fireRes: -46 }, +{ itemId: 144102, className: "STF04_102", name: "Epos", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 6534, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1279, attackType: "Strike" }, +{ itemId: 144103, className: "STF04_103", name: "Twinkle Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 196, attackType: "Strike" }, +{ itemId: 144104, className: "STF04_104", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 80, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1279, attackType: "Strike" }, +{ itemId: 144105, className: "STF04_105", name: "Galatunis Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 7936, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1279, attackType: "Strike" }, +{ itemId: 144106, className: "STF04_106", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1794, attackType: "Strike" }, +{ itemId: 144107, className: "STF04_107", name: "Maga Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1794, attackType: "Strike", earthRes: 16 }, +{ itemId: 144108, className: "STF04_108", name: "Lolopanther Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Staff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 3617, attackType: "Strike" }, +{ itemId: 144109, className: "STF04_109", name: "Solmiki Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 48800, sellPrice: 12952, equipType1: "Staff", equipType2: "Staff", minLevel: 330, equipExpGroup: "Equip", mAtk: 4409, attackType: "Strike" }, +{ itemId: 144110, className: "STF04_110", name: "Heart of Glory", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Staff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 3290, addDef: 132, attackType: "Strike" }, +{ itemId: 144111, className: "STF04_111", name: "Primus Baule Sphere", type: "Equip", group: "Weapon", weight: 85, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1279, attackType: "Strike" }, +{ itemId: 144112, className: "STF04_112", name: "Primus Pamane Rod", type: "Equip", group: "Weapon", weight: 90, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1794, attackType: "Strike" }, +{ itemId: 144113, className: "STF04_113", name: "Primus Sketis Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 815, attackType: "Strike" }, +{ itemId: 144114, className: "STF04_114", name: "Primus Pajoritas Rod", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2310, attackType: "Strike" }, +{ itemId: 144115, className: "STF04_115", name: "Primus Migantis Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 2826, attackType: "Strike" }, +{ itemId: 144116, className: "STF04_116", name: "Primus Pevordimas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 3290, attackType: "Strike" }, +{ itemId: 144117, className: "STF04_117", name: "Primus Raffye Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 350, equipExpGroup: "Equip", mAtk: 3651, attackType: "Strike" }, +{ itemId: 144118, className: "STF04_118", name: "Masinios Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 350, equipExpGroup: "Equip", mAtk: 3651, attackType: "Strike" }, +{ itemId: 144119, className: "STF04_119", name: "Primus Zvaigzde Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 3960, attackType: "Strike" }, +{ itemId: 144120, className: "STF04_120", name: "Asio Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 3960, addMDef: 325, attackType: "Strike" }, +{ itemId: 144121, className: "STF04_121", name: "Wastrel Zvaigzde Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 3960, addMAtk: 232, addDef: 325, attackType: "Strike" }, +{ itemId: 144122, className: "STF04_122", name: "Primus Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4166, attackType: "Strike" }, +{ itemId: 144123, className: "STF04_123", name: "Skiaclipse Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4166, addMAtk: 372, attackType: "Strike" }, +{ itemId: 144124, className: "STF04_124", name: "Moringponia Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4166, attackType: "Strike" }, +{ itemId: 144125, className: "STF04_125", name: "Misrus Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4166, attackType: "Strike" }, +{ itemId: 144126, className: "STF04_126", name: "Primus Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 430, equipExpGroup: "Equip", mAtk: 4476, attackType: "Strike" }, +{ itemId: 145101, className: "STF05_101", name: "Velcoffer Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 360, equipExpGroup: "Equip", mAtk: 4805, attackType: "Strike" }, +{ itemId: 145102, className: "STF05_102", name: "Velcoffer Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 360, equipExpGroup: "Equip", mAtk: 4805, attackType: "Strike" }, +{ itemId: 145103, className: "STF05_103", name: "Savinose Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 5333, attackType: "Strike" }, +{ itemId: 145104, className: "STF05_104", name: "Skiaclipse Varna Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 5333, attackType: "Strike" }, +{ itemId: 161101, className: "TBW01_101", name: "Old Light Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 35, maxAtk: 53, attackType: "Arrow" }, +{ itemId: 161102, className: "TBW01_102", name: "Light Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 35, maxAtk: 53, attackType: "Arrow" }, +{ itemId: 161103, className: "TBW01_103", name: "Crude Short Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 170, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 35, maxAtk: 53, attackType: "Arrow" }, +{ itemId: 161104, className: "TBW01_104", name: "Crude Longbow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 133, maxAtk: 200, attackType: "Arrow" }, +{ itemId: 161105, className: "TBW01_105", name: "Composite Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 133, maxAtk: 200, attackType: "Arrow" }, +{ itemId: 161106, className: "TBW01_106", name: "Self Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 1164, equipType1: "THBow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Arrow" }, +{ itemId: 161107, className: "TBW01_107", name: "Rokas Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Arrow" }, +{ itemId: 161108, className: "TBW01_108", name: "Gorithos", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Arrow" }, +{ itemId: 161109, className: "TBW01_109", name: "Gulail", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Arrow" }, +{ itemId: 161110, className: "TBW01_110", name: "Kaman", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 555, maxAtk: 832, attackType: "Arrow" }, +{ itemId: 161111, className: "TBW01_111", name: "Old Rokas Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 133, maxAtk: 200, attackType: "Arrow" }, +{ itemId: 161112, className: "TBW01_112", name: "Old Gorithos", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Arrow" }, +{ itemId: 161113, className: "TBW01_113", name: "Soldier's Light Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 49, maxAtk: 74, attackType: "Arrow" }, +{ itemId: 161114, className: "TBW01_114", name: "Mayor's Short Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 731, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 91, maxAtk: 137, attackType: "Arrow" }, +{ itemId: 161115, className: "TBW01_115", name: "Old Long Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 731, equipType1: "THBow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 133, maxAtk: 200, attackType: "Arrow" }, +{ itemId: 161116, className: "TBW01_116", name: "Gendawa", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 555, maxAtk: 832, attackType: "Arrow" }, +{ itemId: 161117, className: "TBW01_117", name: "Superior Light Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 640, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 35, maxAtk: 53, attackType: "Arrow" }, +{ itemId: 161118, className: "TBW01_118", name: "Short Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 393, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 35, maxAtk: 53, attackType: "Arrow" }, +{ itemId: 161119, className: "TBW01_119", name: "Superior Short Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 640, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 35, maxAtk: 53, attackType: "Arrow" }, +{ itemId: 161120, className: "TBW01_120", name: "Long Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 133, maxAtk: 200, attackType: "Arrow" }, +{ itemId: 161121, className: "TBW01_121", name: "Superior Composite Bow", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 133, maxAtk: 200, attackType: "Arrow" }, +{ itemId: 161122, className: "TBW01_122", name: "Superior Self Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Arrow" }, +{ itemId: 161123, className: "TBW01_123", name: "Superior Rokas Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 309, maxAtk: 463, attackType: "Arrow" }, { itemId: 161124, className: "TBW01_124", name: "Dunkel Self Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Arrow" }, { itemId: 161125, className: "TBW01_125", name: "Dunkel Kaman", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 2939, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 555, maxAtk: 832, attackType: "Arrow" }, { itemId: 161126, className: "TBW01_126", name: "Dunkel Short Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 170, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Arrow" }, { itemId: 161127, className: "TBW01_127", name: "Dunkel Long Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, minAtk: 133, maxAtk: 200, attackType: "Arrow" }, { itemId: 161128, className: "TBW01_128", name: "Dunkel Composite Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, minAtk: 133, maxAtk: 200, attackType: "Arrow" }, { itemId: 161129, className: "TBW01_129", name: "Dunkel Rokas Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 5824, sellPrice: 2374, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 309, maxAtk: 463, attackType: "Arrow" }, -{ itemId: 161130, className: "TBW01_130", name: "Recurve Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 555, maxAtk: 832, attackType: "Arrow" }, -{ itemId: 161131, className: "TBW01_131", name: "Siege Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 870, maxAtk: 1306, attackType: "Arrow" }, -{ itemId: 161132, className: "TBW01_132", name: "Sniper Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 870, maxAtk: 1306, attackType: "Arrow" }, -{ itemId: 161133, className: "TBW01_133", name: "Skull Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 870, maxAtk: 1306, attackType: "Arrow" }, -{ itemId: 161134, className: "TBW01_134", name: "Wooden Compound Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 8030, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1221, maxAtk: 1832, attackType: "Arrow" }, -{ itemId: 161135, className: "TBW01_135", name: "Tag Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1221, maxAtk: 1832, attackType: "Arrow" }, -{ itemId: 161136, className: "TBW01_136", name: "Rogue Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1221, maxAtk: 1832, attackType: "Arrow" }, +{ itemId: 161130, className: "TBW01_130", name: "Recurve Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 555, maxAtk: 832, attackType: "Arrow" }, +{ itemId: 161131, className: "TBW01_131", name: "Siege Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 870, maxAtk: 1306, attackType: "Arrow" }, +{ itemId: 161132, className: "TBW01_132", name: "Sniper Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 870, maxAtk: 1306, attackType: "Arrow" }, +{ itemId: 161133, className: "TBW01_133", name: "Skull Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 870, maxAtk: 1306, attackType: "Arrow" }, +{ itemId: 161134, className: "TBW01_134", name: "Wooden Compound Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 8030, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1221, maxAtk: 1832, attackType: "Arrow" }, +{ itemId: 161135, className: "TBW01_135", name: "Tag Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1221, maxAtk: 1832, attackType: "Arrow" }, +{ itemId: 161136, className: "TBW01_136", name: "Rogue Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1221, maxAtk: 1832, attackType: "Arrow" }, { itemId: 161137, className: "TBW01_137", name: "Yorgis Siege Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 4368, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 870, maxAtk: 1306, attackType: "Arrow" }, -{ itemId: 161138, className: "TBW01_138", name: "Wreech Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THBow", equipType2: "Bow", minLevel: 220, minAtk: 1572, maxAtk: 2359, attackType: "Arrow" }, -{ itemId: 161139, className: "TBW01_139", name: "Superior Wreech Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THBow", equipType2: "Bow", minLevel: 220, minAtk: 1572, maxAtk: 2359, attackType: "Arrow" }, -{ itemId: 161140, className: "TBW01_140", name: "(Faded) Replica Migantis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "THBow", equipType2: "Bow", minLevel: 270, minAtk: 1923, maxAtk: 2885, attackType: "Arrow" }, -{ itemId: 161141, className: "TBW01_141", name: "(Faded) Replica Pevordimas Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 144000, sellPrice: 5000, equipType1: "THBow", equipType2: "Bow", minLevel: 315, minAtk: 2239, maxAtk: 3359, attackType: "Arrow" }, -{ itemId: 161999, className: "TBW01_999", name: "Standard Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 13209, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Arrow" }, -{ itemId: 162101, className: "TBW02_101", name: "Seeker", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, minAtk: 148, maxAtk: 222, attackType: "Arrow" }, -{ itemId: 162102, className: "TBW02_102", name: "Iron Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 343, maxAtk: 515, attackType: "Arrow" }, -{ itemId: 162103, className: "TBW02_103", name: "Hawk Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 343, maxAtk: 515, attackType: "Arrow" }, -{ itemId: 162104, className: "TBW02_104", name: "Cheminis Bow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 5824, sellPrice: 2794, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 343, maxAtk: 515, attackType: "Arrow" }, -{ itemId: 162105, className: "TBW02_105", name: "Hunting Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 2842, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Arrow" }, -{ itemId: 162106, className: "TBW02_106", name: "Maker Bow", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 13732, sellPrice: 3322, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Arrow" }, -{ itemId: 162107, className: "TBW02_107", name: "Savage Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Arrow" }, -{ itemId: 162108, className: "TBW02_108", name: "Snake Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 5335, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Arrow" }, -{ itemId: 162109, className: "TBW02_109", name: "Imperni Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 616, maxAtk: 924, middleSizeBonus: 72, attackType: "Arrow" }, -{ itemId: 162110, className: "TBW02_110", name: "Lethena Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1357, maxAtk: 2036, attackType: "Arrow" }, -{ itemId: 162111, className: "TBW02_111", name: "Strong Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 39, maxAtk: 59, attackType: "Arrow" }, -{ itemId: 162112, className: "TBW02_112", name: "Soldier's Short Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 170, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 86, maxAtk: 129, attackType: "Arrow" }, -{ itemId: 162113, className: "TBW02_113", name: "Pulley Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, minAtk: 148, maxAtk: 222, attackType: "Arrow" }, -{ itemId: 162114, className: "TBW02_114", name: "Smith Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 640, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 39, maxAtk: 59, attackType: "Arrow" }, -{ itemId: 162115, className: "TBW02_115", name: "Klavis Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, minAtk: 148, maxAtk: 222, attackType: "Arrow" }, -{ itemId: 162116, className: "TBW02_116", name: "Dio Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 1164, equipType1: "THBow", equipType2: "Bow", minLevel: 15, minAtk: 148, maxAtk: 222, attackType: "Arrow" }, -{ itemId: 162117, className: "TBW02_117", name: "Thresh Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 5824, sellPrice: 2746, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 343, maxAtk: 515, attackType: "Arrow" }, -{ itemId: 162118, className: "TBW02_118", name: "Sestas Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Arrow" }, -{ itemId: 162119, className: "TBW02_119", name: "Dratt Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Arrow" }, -{ itemId: 162120, className: "TBW02_120", name: "Aston Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1357, maxAtk: 2036, attackType: "Arrow" }, -{ itemId: 162121, className: "TBW02_121", name: "Tenet Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 343, maxAtk: 515, attackType: "Arrow" }, -{ itemId: 162122, className: "TBW02_122", name: "Patrice Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 343, maxAtk: 515, attackType: "Arrow" }, -{ itemId: 162123, className: "TBW02_123", name: "Lukas Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Arrow" }, -{ itemId: 162124, className: "TBW02_124", name: "Philies Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Arrow" }, -{ itemId: 162125, className: "TBW02_125", name: "Escanciu Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Arrow" }, -{ itemId: 162126, className: "TBW02_126", name: "Krag Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Arrow" }, -{ itemId: 162127, className: "TBW02_127", name: "Pilgrim Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24832, sellPrice: 4414, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Arrow" }, -{ itemId: 162128, className: "TBW02_128", name: "Istora Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 38803, sellPrice: 6936, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1357, maxAtk: 2036, attackType: "Arrow" }, -{ itemId: 162129, className: "TBW02_129", name: "Lightning Siege Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Arrow" }, -{ itemId: 162130, className: "TBW02_130", name: "Vienie Sniper Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Arrow" }, -{ itemId: 162131, className: "TBW02_131", name: "Earth Skull Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Arrow", earthRes: 15 }, -{ itemId: 162132, className: "TBW02_132", name: "Lumas Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 4966, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Arrow" }, -{ itemId: 162133, className: "TBW02_133", name: "Poison Wooden Compound Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1357, maxAtk: 2036, attackType: "Arrow" }, -{ itemId: 162134, className: "TBW02_134", name: "Futere Tag Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1357, maxAtk: 2036, addMaxAtk: 20, attackType: "Arrow" }, -{ itemId: 162135, className: "TBW02_135", name: "Vienie Rogue Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1357, maxAtk: 2036, attackType: "Arrow" }, -{ itemId: 162136, className: "TBW02_136", name: "Hunting Wreech Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THBow", equipType2: "Bow", minLevel: 220, minAtk: 1747, maxAtk: 2621, attackType: "Arrow" }, -{ itemId: 162137, className: "TBW02_137", name: "Magi Kaman", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THBow", equipType2: "Bow", minLevel: 220, minAtk: 1747, maxAtk: 2621, attackType: "Arrow" }, -{ itemId: 162138, className: "TBW02_138", name: "Light Gorithos", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THBow", equipType2: "Bow", minLevel: 220, minAtk: 1747, maxAtk: 2621, attackType: "Arrow" }, -{ itemId: 162139, className: "TBW02_139", name: "Supportive Siege Bow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Arrow" }, -{ itemId: 162150, className: "TBW02_150", name: "Tevhrin Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 220, minAtk: 1747, maxAtk: 2621, attackType: "Arrow" }, -{ itemId: 162151, className: "TBW02_151", name: "(Faded) Migantis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THBow", equipType2: "Bow", minLevel: 270, minAtk: 2137, maxAtk: 3206, attackType: "Arrow" }, -{ itemId: 162152, className: "TBW02_152", name: "(Faded) Pevordimas Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THBow", equipType2: "Bow", minLevel: 315, minAtk: 2488, maxAtk: 3732, attackType: "Arrow" }, -{ itemId: 162153, className: "TBW02_153", name: "Even Eye", type: "Equip", group: "Weapon", weight: 192, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 967, maxAtk: 1451, attackType: "Arrow" }, -{ itemId: 162154, className: "TBW02_154", name: "Devini Bow", type: "Equip", group: "Weapon", weight: 214, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1357, maxAtk: 2036, attackType: "Arrow" }, -{ itemId: 162155, className: "TBW02_155", name: "Sketis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 616, maxAtk: 924, attackType: "Arrow" }, -{ itemId: 162156, className: "TBW02_156", name: "Pajoritas Bow", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 220, minAtk: 1747, maxAtk: 2621, attackType: "Arrow" }, -{ itemId: 162157, className: "TBW02_157", name: "Migantis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 270, minAtk: 2137, maxAtk: 3206, attackType: "Arrow" }, -{ itemId: 162158, className: "TBW02_158", name: "Pevordimas Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 315, minAtk: 2488, maxAtk: 3732, attackType: "Arrow" }, -{ itemId: 162159, className: "TBW02_159", name: "Raffye Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 350, minAtk: 2761, maxAtk: 4142, attackType: "Arrow" }, -{ itemId: 162160, className: "TBW02_160", name: "Zvaigzde Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, minAtk: 2995, maxAtk: 4493, attackType: "Arrow" }, -{ itemId: 162161, className: "TBW02_161", name: "Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 3151, maxAtk: 4727, attackType: "Arrow" }, -{ itemId: 163101, className: "TBW03_101", name: "Wildling Bane", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 4966, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 1064, maxAtk: 1596, attackType: "Arrow" }, -{ itemId: 163102, className: "TBW03_102", name: "Equalizer", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 678, maxAtk: 1017, pAtk: 25, attackType: "Arrow" }, -{ itemId: 163103, className: "TBW03_103", name: "Heart Seeker", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 678, maxAtk: 1017, attackType: "Arrow" }, -{ itemId: 163104, className: "TBW03_104", name: "Viper", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 38803, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1493, maxAtk: 2239, attackType: "Arrow", poisonRes: -186 }, -{ itemId: 163105, className: "TBW03_105", name: "Deathweaver Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, minAtk: 163, maxAtk: 245, largeSizeBonus: 21, attackType: "Arrow" }, -{ itemId: 163106, className: "TBW03_106", name: "Chapparition Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, minAtk: 378, maxAtk: 566, largeSizeBonus: 21, attackType: "Arrow" }, -{ itemId: 163107, className: "TBW03_107", name: "noname", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 12697, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1493, maxAtk: 2239, attackType: "Arrow" }, -{ itemId: 163108, className: "TBW03_108", name: "Excel Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 1064, maxAtk: 1596, attackType: "Arrow" }, -{ itemId: 163109, className: "TBW03_109", name: "Marksman", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 12800, equipType1: "THBow", equipType2: "Bow", minLevel: 220, minAtk: 1922, maxAtk: 2883, attackType: "Arrow" }, -{ itemId: 163110, className: "TBW03_110", name: "Seimos Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 1064, maxAtk: 1596, addMDef: 20, attackType: "Arrow" }, -{ itemId: 163111, className: "TBW03_111", name: "Tilly Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 7868, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 1064, maxAtk: 1596, addMinAtk: 47, attackType: "Arrow" }, -{ itemId: 163112, className: "TBW03_112", name: "Khasti Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1493, maxAtk: 2239, attackType: "Arrow" }, -{ itemId: 163113, className: "TBW03_113", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1493, maxAtk: 2239, attackType: "Arrow" }, -{ itemId: 163114, className: "TBW03_114", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 220, minAtk: 1922, maxAtk: 2883, attackType: "Arrow" }, -{ itemId: 163115, className: "TBW03_115", name: "Pensara Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 220, minAtk: 1922, maxAtk: 2883, addMDef: 23, attackType: "Arrow" }, -{ itemId: 163120, className: "TBW03_120", name: "Aufgowle Bow", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "THBow", equipType2: "Bow", minLevel: 315, minAtk: 2737, maxAtk: 4106, addMinAtk: 148, addMaxAtk: 246, attackType: "Arrow" }, -{ itemId: 163301, className: "TBW03_301", name: "(Faded) Even Eye", type: "Equip", group: "Weapon", weight: 192, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 1064, maxAtk: 1596, attackType: "Arrow" }, -{ itemId: 163302, className: "TBW03_302", name: "(Faded) Devini Bow", type: "Equip", group: "Weapon", weight: 214, maxStack: 1, price: 38803, sellPrice: 8030, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1493, maxAtk: 2239, attackType: "Arrow", darkRes: -93 }, -{ itemId: 163303, className: "TBW03_303", name: "(Faded) Sketis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 678, maxAtk: 1017, largeSizeBonus: 20, attackType: "Arrow" }, -{ itemId: 163304, className: "TBW03_304", name: "(Faded) Pajoritas Bow", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 220, minAtk: 1922, maxAtk: 2883, attackType: "Arrow" }, -{ itemId: 163305, className: "TBW03_305", name: "(Faded) Purine Migantis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THBow", equipType2: "Bow", minLevel: 270, minAtk: 2351, maxAtk: 3526, attackType: "Arrow" }, -{ itemId: 163306, className: "TBW03_306", name: "(Faded) Purine Pevordimas Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THBow", equipType2: "Bow", minLevel: 315, minAtk: 2737, maxAtk: 4106, attackType: "Arrow" }, -{ itemId: 163307, className: "TBW03_307", name: "Berthas Even Eye", type: "Equip", group: "Weapon", weight: 192, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 1064, maxAtk: 1596, attackType: "Arrow" }, -{ itemId: 163308, className: "TBW03_308", name: "Berthas Devini Bow", type: "Equip", group: "Weapon", weight: 214, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1493, maxAtk: 2239, attackType: "Arrow" }, -{ itemId: 163309, className: "TBW03_309", name: "Berthas Sketis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 678, maxAtk: 1017, attackType: "Arrow" }, -{ itemId: 163310, className: "TBW03_310", name: "Berthas Pajoritas Bow", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 220, minAtk: 1922, maxAtk: 2883, attackType: "Arrow" }, -{ itemId: 163311, className: "TBW03_311", name: "Berthas Migantis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 270, minAtk: 2351, maxAtk: 3526, attackType: "Arrow" }, -{ itemId: 163312, className: "TBW03_312", name: "Berthas Pevordimas Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 315, minAtk: 2737, maxAtk: 4106, attackType: "Arrow" }, -{ itemId: 163313, className: "TBW03_313", name: "Berthas Raffye Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 350, minAtk: 3037, maxAtk: 4556, attackType: "Arrow" }, -{ itemId: 163314, className: "TBW03_314", name: "Berthas Zvaigzde Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, minAtk: 3295, maxAtk: 4942, attackType: "Arrow" }, -{ itemId: 163315, className: "TBW03_315", name: "Berthas Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 3466, maxAtk: 5199, attackType: "Arrow" }, -{ itemId: 163316, className: "TBW03_316", name: "Berthas Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 430, minAtk: 3724, maxAtk: 5586, attackType: "Arrow" }, -{ itemId: 164101, className: "TBW04_101", name: "Blood Gain", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 24832, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 1209, maxAtk: 1814, attackType: "Arrow" }, -{ itemId: 164102, className: "TBW04_102", name: "Tempest Shooter", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 1209, maxAtk: 1814, attackType: "Arrow" }, -{ itemId: 164103, className: "TBW04_103", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 1209, maxAtk: 1814, attackType: "Arrow" }, -{ itemId: 164104, className: "TBW04_104", name: "Galatunis Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 12697, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 1209, maxAtk: 1814, attackType: "Arrow" }, -{ itemId: 164105, className: "TBW04_105", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1696, maxAtk: 2545, attackType: "Arrow" }, -{ itemId: 164106, className: "TBW04_106", name: "Maga Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 12697, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1696, maxAtk: 2545, largeSizeBonus: 184, attackType: "Arrow" }, -{ itemId: 164107, className: "TBW04_107", name: "Lolopanther Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 64000, sellPrice: 15616, equipType1: "THBow", equipType2: "Bow", minLevel: 270, minAtk: 3420, maxAtk: 5129, attackType: "Arrow" }, -{ itemId: 164108, className: "TBW04_108", name: "Solmiki Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "THBow", equipType2: "Bow", minLevel: 330, minAtk: 4168, maxAtk: 6252, attackType: "Arrow" }, -{ itemId: 164109, className: "TBW04_109", name: "Astra Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THBow", equipType2: "Bow", minLevel: 315, minAtk: 3110, maxAtk: 4665, attackType: "Arrow" }, -{ itemId: 164110, className: "TBW04_110", name: "Primus Even Eye", type: "Equip", group: "Weapon", weight: 192, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 1209, maxAtk: 1814, attackType: "Arrow" }, -{ itemId: 164111, className: "TBW04_111", name: "Primus Devini Bow", type: "Equip", group: "Weapon", weight: 214, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 170, minAtk: 1696, maxAtk: 2545, attackType: "Arrow" }, -{ itemId: 164112, className: "TBW04_112", name: "Primus Sketis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 75, minAtk: 770, maxAtk: 1155, attackType: "Arrow" }, -{ itemId: 164113, className: "TBW04_113", name: "Primus Pajoritas Bow", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 220, minAtk: 2184, maxAtk: 3276, attackType: "Arrow" }, -{ itemId: 164114, className: "TBW04_114", name: "Primus Migantis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 270, minAtk: 2671, maxAtk: 4007, attackType: "Arrow" }, -{ itemId: 164115, className: "TBW04_115", name: "Primus Pevordimas Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 315, minAtk: 3110, maxAtk: 4665, attackType: "Arrow" }, -{ itemId: 164116, className: "TBW04_116", name: "Primus Raffye Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 350, minAtk: 3451, maxAtk: 5177, attackType: "Arrow" }, -{ itemId: 164117, className: "TBW04_117", name: "Masinios Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 350, minAtk: 3451, maxAtk: 5177, attackType: "Arrow" }, -{ itemId: 164118, className: "TBW04_118", name: "Primus Zvaigzde Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, -{ itemId: 164119, className: "TBW04_119", name: "Wastrel Zvaigzde Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, -{ itemId: 164120, className: "TBW04_120", name: "Asio Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, -{ itemId: 164121, className: "TBW04_121", name: "Primus Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, -{ itemId: 164122, className: "TBW04_122", name: "Skiaclipse Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, -{ itemId: 164123, className: "TBW04_123", name: "Moringponia Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, -{ itemId: 164124, className: "TBW04_124", name: "Misrus Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, -{ itemId: 164125, className: "TBW04_125", name: "Primus Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 430, minAtk: 4231, maxAtk: 6347, attackType: "Arrow" }, -{ itemId: 164999, className: "TBW04_999", name: "Fixed Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 100, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 49, maxAtk: 73, attackType: "Arrow" }, -{ itemId: 165101, className: "TBW05_101", name: "Velcoffer Bow", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 360, minAtk: 4543, maxAtk: 6814, attackType: "Arrow" }, -{ itemId: 165102, className: "TBW05_102", name: "Velcoffer Bow", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 360, minAtk: 4543, maxAtk: 6814, attackType: "Arrow" }, -{ itemId: 165103, className: "TBW05_103", name: "Savinose Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, -{ itemId: 165104, className: "TBW05_104", name: "Skiaclipse Varna Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, +{ itemId: 161138, className: "TBW01_138", name: "Wreech Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THBow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1572, maxAtk: 2359, attackType: "Arrow" }, +{ itemId: 161139, className: "TBW01_139", name: "Superior Wreech Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THBow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1572, maxAtk: 2359, attackType: "Arrow" }, +{ itemId: 161140, className: "TBW01_140", name: "(Faded) Replica Migantis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "THBow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 1923, maxAtk: 2885, attackType: "Arrow" }, +{ itemId: 161141, className: "TBW01_141", name: "(Faded) Replica Pevordimas Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 144000, sellPrice: 5000, equipType1: "THBow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 2239, maxAtk: 3359, attackType: "Arrow" }, +{ itemId: 161999, className: "TBW01_999", name: "Standard Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 13209, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 35, maxAtk: 53, attackType: "Arrow" }, +{ itemId: 162101, className: "TBW02_101", name: "Seeker", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 148, maxAtk: 222, attackType: "Arrow" }, +{ itemId: 162102, className: "TBW02_102", name: "Iron Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 343, maxAtk: 515, attackType: "Arrow" }, +{ itemId: 162103, className: "TBW02_103", name: "Hawk Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 343, maxAtk: 515, attackType: "Arrow" }, +{ itemId: 162104, className: "TBW02_104", name: "Cheminis Bow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 5824, sellPrice: 2794, equipType1: "THBow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 343, maxAtk: 515, attackType: "Arrow" }, +{ itemId: 162105, className: "TBW02_105", name: "Hunting Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 2842, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Arrow" }, +{ itemId: 162106, className: "TBW02_106", name: "Maker Bow", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 13732, sellPrice: 3322, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Arrow" }, +{ itemId: 162107, className: "TBW02_107", name: "Savage Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Arrow" }, +{ itemId: 162108, className: "TBW02_108", name: "Snake Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 5335, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Arrow" }, +{ itemId: 162109, className: "TBW02_109", name: "Imperni Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, middleSizeBonus: 72, attackType: "Arrow" }, +{ itemId: 162110, className: "TBW02_110", name: "Lethena Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1357, maxAtk: 2036, attackType: "Arrow" }, +{ itemId: 162111, className: "TBW02_111", name: "Strong Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 39, maxAtk: 59, attackType: "Arrow" }, +{ itemId: 162112, className: "TBW02_112", name: "Soldier's Short Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 170, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 86, maxAtk: 129, attackType: "Arrow" }, +{ itemId: 162113, className: "TBW02_113", name: "Pulley Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 148, maxAtk: 222, attackType: "Arrow" }, +{ itemId: 162114, className: "TBW02_114", name: "Smith Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 640, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 39, maxAtk: 59, attackType: "Arrow" }, +{ itemId: 162115, className: "TBW02_115", name: "Klavis Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 148, maxAtk: 222, attackType: "Arrow" }, +{ itemId: 162116, className: "TBW02_116", name: "Dio Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 1164, equipType1: "THBow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 148, maxAtk: 222, attackType: "Arrow" }, +{ itemId: 162117, className: "TBW02_117", name: "Thresh Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 5824, sellPrice: 2746, equipType1: "THBow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 343, maxAtk: 515, attackType: "Arrow" }, +{ itemId: 162118, className: "TBW02_118", name: "Sestas Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Arrow" }, +{ itemId: 162119, className: "TBW02_119", name: "Dratt Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Arrow" }, +{ itemId: 162120, className: "TBW02_120", name: "Aston Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1357, maxAtk: 2036, attackType: "Arrow" }, +{ itemId: 162121, className: "TBW02_121", name: "Tenet Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 343, maxAtk: 515, attackType: "Arrow" }, +{ itemId: 162122, className: "TBW02_122", name: "Patrice Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 343, maxAtk: 515, attackType: "Arrow" }, +{ itemId: 162123, className: "TBW02_123", name: "Lukas Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Arrow" }, +{ itemId: 162124, className: "TBW02_124", name: "Philies Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Arrow" }, +{ itemId: 162125, className: "TBW02_125", name: "Escanciu Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Arrow" }, +{ itemId: 162126, className: "TBW02_126", name: "Krag Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Arrow" }, +{ itemId: 162127, className: "TBW02_127", name: "Pilgrim Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24832, sellPrice: 4414, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Arrow" }, +{ itemId: 162128, className: "TBW02_128", name: "Istora Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 38803, sellPrice: 6936, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1357, maxAtk: 2036, attackType: "Arrow" }, +{ itemId: 162129, className: "TBW02_129", name: "Lightning Siege Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Arrow" }, +{ itemId: 162130, className: "TBW02_130", name: "Vienie Sniper Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Arrow" }, +{ itemId: 162131, className: "TBW02_131", name: "Earth Skull Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Arrow", earthRes: 15 }, +{ itemId: 162132, className: "TBW02_132", name: "Lumas Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 4966, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Arrow" }, +{ itemId: 162133, className: "TBW02_133", name: "Poison Wooden Compound Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1357, maxAtk: 2036, attackType: "Arrow" }, +{ itemId: 162134, className: "TBW02_134", name: "Futere Tag Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1357, maxAtk: 2036, addMaxAtk: 20, attackType: "Arrow" }, +{ itemId: 162135, className: "TBW02_135", name: "Vienie Rogue Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1357, maxAtk: 2036, attackType: "Arrow" }, +{ itemId: 162136, className: "TBW02_136", name: "Hunting Wreech Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THBow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1747, maxAtk: 2621, attackType: "Arrow" }, +{ itemId: 162137, className: "TBW02_137", name: "Magi Kaman", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THBow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1747, maxAtk: 2621, attackType: "Arrow" }, +{ itemId: 162138, className: "TBW02_138", name: "Light Gorithos", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THBow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1747, maxAtk: 2621, attackType: "Arrow" }, +{ itemId: 162139, className: "TBW02_139", name: "Supportive Siege Bow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Arrow" }, +{ itemId: 162150, className: "TBW02_150", name: "Tevhrin Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1747, maxAtk: 2621, attackType: "Arrow" }, +{ itemId: 162151, className: "TBW02_151", name: "(Faded) Migantis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THBow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 2137, maxAtk: 3206, attackType: "Arrow" }, +{ itemId: 162152, className: "TBW02_152", name: "(Faded) Pevordimas Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THBow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 2488, maxAtk: 3732, attackType: "Arrow" }, +{ itemId: 162153, className: "TBW02_153", name: "Even Eye", type: "Equip", group: "Weapon", weight: 192, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 967, maxAtk: 1451, attackType: "Arrow" }, +{ itemId: 162154, className: "TBW02_154", name: "Devini Bow", type: "Equip", group: "Weapon", weight: 214, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1357, maxAtk: 2036, attackType: "Arrow" }, +{ itemId: 162155, className: "TBW02_155", name: "Sketis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 616, maxAtk: 924, attackType: "Arrow" }, +{ itemId: 162156, className: "TBW02_156", name: "Pajoritas Bow", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1747, maxAtk: 2621, attackType: "Arrow" }, +{ itemId: 162157, className: "TBW02_157", name: "Migantis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 2137, maxAtk: 3206, attackType: "Arrow" }, +{ itemId: 162158, className: "TBW02_158", name: "Pevordimas Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 2488, maxAtk: 3732, attackType: "Arrow" }, +{ itemId: 162159, className: "TBW02_159", name: "Raffye Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 350, equipExpGroup: "Equip", minAtk: 2761, maxAtk: 4142, attackType: "Arrow" }, +{ itemId: 162160, className: "TBW02_160", name: "Zvaigzde Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 2995, maxAtk: 4493, attackType: "Arrow" }, +{ itemId: 162161, className: "TBW02_161", name: "Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 3151, maxAtk: 4727, attackType: "Arrow" }, +{ itemId: 163101, className: "TBW03_101", name: "Wildling Bane", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 4966, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1064, maxAtk: 1596, attackType: "Arrow" }, +{ itemId: 163102, className: "TBW03_102", name: "Equalizer", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 678, maxAtk: 1017, pAtk: 25, attackType: "Arrow" }, +{ itemId: 163103, className: "TBW03_103", name: "Heart Seeker", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 678, maxAtk: 1017, attackType: "Arrow" }, +{ itemId: 163104, className: "TBW03_104", name: "Viper", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 38803, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1493, maxAtk: 2239, attackType: "Arrow", poisonRes: -186 }, +{ itemId: 163105, className: "TBW03_105", name: "Deathweaver Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 163, maxAtk: 245, largeSizeBonus: 21, attackType: "Arrow" }, +{ itemId: 163106, className: "TBW03_106", name: "Chapparition Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 378, maxAtk: 566, largeSizeBonus: 21, attackType: "Arrow" }, +{ itemId: 163107, className: "TBW03_107", name: "noname", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 12697, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1493, maxAtk: 2239, attackType: "Arrow" }, +{ itemId: 163108, className: "TBW03_108", name: "Excel Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1064, maxAtk: 1596, attackType: "Arrow" }, +{ itemId: 163109, className: "TBW03_109", name: "Marksman", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 12800, equipType1: "THBow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1922, maxAtk: 2883, attackType: "Arrow" }, +{ itemId: 163110, className: "TBW03_110", name: "Seimos Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1064, maxAtk: 1596, addMDef: 20, attackType: "Arrow" }, +{ itemId: 163111, className: "TBW03_111", name: "Tilly Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 7868, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1064, maxAtk: 1596, addMinAtk: 47, attackType: "Arrow" }, +{ itemId: 163112, className: "TBW03_112", name: "Khasti Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1493, maxAtk: 2239, attackType: "Arrow" }, +{ itemId: 163113, className: "TBW03_113", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1493, maxAtk: 2239, attackType: "Arrow" }, +{ itemId: 163114, className: "TBW03_114", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1922, maxAtk: 2883, attackType: "Arrow" }, +{ itemId: 163115, className: "TBW03_115", name: "Pensara Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1922, maxAtk: 2883, addMDef: 23, attackType: "Arrow" }, +{ itemId: 163120, className: "TBW03_120", name: "Aufgowle Bow", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "THBow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 2737, maxAtk: 4106, addMinAtk: 148, addMaxAtk: 246, attackType: "Arrow" }, +{ itemId: 163301, className: "TBW03_301", name: "(Faded) Even Eye", type: "Equip", group: "Weapon", weight: 192, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1064, maxAtk: 1596, attackType: "Arrow" }, +{ itemId: 163302, className: "TBW03_302", name: "(Faded) Devini Bow", type: "Equip", group: "Weapon", weight: 214, maxStack: 1, price: 38803, sellPrice: 8030, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1493, maxAtk: 2239, attackType: "Arrow", darkRes: -93 }, +{ itemId: 163303, className: "TBW03_303", name: "(Faded) Sketis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 678, maxAtk: 1017, largeSizeBonus: 20, attackType: "Arrow" }, +{ itemId: 163304, className: "TBW03_304", name: "(Faded) Pajoritas Bow", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THBow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1922, maxAtk: 2883, attackType: "Arrow" }, +{ itemId: 163305, className: "TBW03_305", name: "(Faded) Purine Migantis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THBow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 2351, maxAtk: 3526, attackType: "Arrow" }, +{ itemId: 163306, className: "TBW03_306", name: "(Faded) Purine Pevordimas Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THBow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 2737, maxAtk: 4106, attackType: "Arrow" }, +{ itemId: 163307, className: "TBW03_307", name: "Berthas Even Eye", type: "Equip", group: "Weapon", weight: 192, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1064, maxAtk: 1596, attackType: "Arrow" }, +{ itemId: 163308, className: "TBW03_308", name: "Berthas Devini Bow", type: "Equip", group: "Weapon", weight: 214, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1493, maxAtk: 2239, attackType: "Arrow" }, +{ itemId: 163309, className: "TBW03_309", name: "Berthas Sketis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 678, maxAtk: 1017, attackType: "Arrow" }, +{ itemId: 163310, className: "TBW03_310", name: "Berthas Pajoritas Bow", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1922, maxAtk: 2883, attackType: "Arrow" }, +{ itemId: 163311, className: "TBW03_311", name: "Berthas Migantis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 2351, maxAtk: 3526, attackType: "Arrow" }, +{ itemId: 163312, className: "TBW03_312", name: "Berthas Pevordimas Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 2737, maxAtk: 4106, attackType: "Arrow" }, +{ itemId: 163313, className: "TBW03_313", name: "Berthas Raffye Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 350, equipExpGroup: "Equip", minAtk: 3037, maxAtk: 4556, attackType: "Arrow" }, +{ itemId: 163314, className: "TBW03_314", name: "Berthas Zvaigzde Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3295, maxAtk: 4942, attackType: "Arrow" }, +{ itemId: 163315, className: "TBW03_315", name: "Berthas Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 3466, maxAtk: 5199, attackType: "Arrow" }, +{ itemId: 163316, className: "TBW03_316", name: "Berthas Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 430, equipExpGroup: "Equip", minAtk: 3724, maxAtk: 5586, attackType: "Arrow" }, +{ itemId: 164101, className: "TBW04_101", name: "Blood Gain", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 24832, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1209, maxAtk: 1814, attackType: "Arrow" }, +{ itemId: 164102, className: "TBW04_102", name: "Tempest Shooter", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1209, maxAtk: 1814, attackType: "Arrow" }, +{ itemId: 164103, className: "TBW04_103", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1209, maxAtk: 1814, attackType: "Arrow" }, +{ itemId: 164104, className: "TBW04_104", name: "Galatunis Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 12697, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1209, maxAtk: 1814, attackType: "Arrow" }, +{ itemId: 164105, className: "TBW04_105", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1696, maxAtk: 2545, attackType: "Arrow" }, +{ itemId: 164106, className: "TBW04_106", name: "Maga Bow", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 12697, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1696, maxAtk: 2545, largeSizeBonus: 184, attackType: "Arrow" }, +{ itemId: 164107, className: "TBW04_107", name: "Lolopanther Bow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 64000, sellPrice: 15616, equipType1: "THBow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 3420, maxAtk: 5129, attackType: "Arrow" }, +{ itemId: 164108, className: "TBW04_108", name: "Solmiki Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "THBow", equipType2: "Bow", minLevel: 330, equipExpGroup: "Equip", minAtk: 4168, maxAtk: 6252, attackType: "Arrow" }, +{ itemId: 164109, className: "TBW04_109", name: "Astra Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THBow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 3110, maxAtk: 4665, attackType: "Arrow" }, +{ itemId: 164110, className: "TBW04_110", name: "Primus Even Eye", type: "Equip", group: "Weapon", weight: 192, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1209, maxAtk: 1814, attackType: "Arrow" }, +{ itemId: 164111, className: "TBW04_111", name: "Primus Devini Bow", type: "Equip", group: "Weapon", weight: 214, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1696, maxAtk: 2545, attackType: "Arrow" }, +{ itemId: 164112, className: "TBW04_112", name: "Primus Sketis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 770, maxAtk: 1155, attackType: "Arrow" }, +{ itemId: 164113, className: "TBW04_113", name: "Primus Pajoritas Bow", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 2184, maxAtk: 3276, attackType: "Arrow" }, +{ itemId: 164114, className: "TBW04_114", name: "Primus Migantis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 2671, maxAtk: 4007, attackType: "Arrow" }, +{ itemId: 164115, className: "TBW04_115", name: "Primus Pevordimas Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 3110, maxAtk: 4665, attackType: "Arrow" }, +{ itemId: 164116, className: "TBW04_116", name: "Primus Raffye Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 350, equipExpGroup: "Equip", minAtk: 3451, maxAtk: 5177, attackType: "Arrow" }, +{ itemId: 164117, className: "TBW04_117", name: "Masinios Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 350, equipExpGroup: "Equip", minAtk: 3451, maxAtk: 5177, attackType: "Arrow" }, +{ itemId: 164118, className: "TBW04_118", name: "Primus Zvaigzde Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, +{ itemId: 164119, className: "TBW04_119", name: "Wastrel Zvaigzde Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, +{ itemId: 164120, className: "TBW04_120", name: "Asio Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, +{ itemId: 164121, className: "TBW04_121", name: "Primus Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, +{ itemId: 164122, className: "TBW04_122", name: "Skiaclipse Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, +{ itemId: 164123, className: "TBW04_123", name: "Moringponia Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, +{ itemId: 164124, className: "TBW04_124", name: "Misrus Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, +{ itemId: 164125, className: "TBW04_125", name: "Primus Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 430, equipExpGroup: "Equip", minAtk: 4231, maxAtk: 6347, attackType: "Arrow" }, +{ itemId: 164999, className: "TBW04_999", name: "Fixed Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 100, sellPrice: 4323, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 49, maxAtk: 73, attackType: "Arrow" }, +{ itemId: 165101, className: "TBW05_101", name: "Velcoffer Bow", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 360, equipExpGroup: "Equip", minAtk: 4543, maxAtk: 6814, attackType: "Arrow" }, +{ itemId: 165102, className: "TBW05_102", name: "Velcoffer Bow", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 360, equipExpGroup: "Equip", minAtk: 4543, maxAtk: 6814, attackType: "Arrow" }, +{ itemId: 165103, className: "TBW05_103", name: "Savinose Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, +{ itemId: 165104, className: "TBW05_104", name: "Skiaclipse Varna Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, { itemId: 181101, className: "BOW01_101", name: "Crude Light Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 400, sellPrice: 106, equipType1: "Bow", equipType2: "Bow", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Arrow" }, -{ itemId: 181102, className: "BOW01_102", name: "Crude Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, minAtk: 137, maxAtk: 145, attackType: "Arrow" }, -{ itemId: 181103, className: "BOW01_103", name: "Dokyu", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, minAtk: 137, maxAtk: 145, attackType: "Arrow" }, -{ itemId: 181104, className: "BOW01_104", name: "Quarrel Bow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 728, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Arrow" }, -{ itemId: 181105, className: "BOW01_105", name: "Oak Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Arrow" }, -{ itemId: 181106, className: "BOW01_106", name: "Seal Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Arrow" }, -{ itemId: 181107, className: "BOW01_107", name: "Catapult", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Arrow" }, -{ itemId: 181108, className: "BOW01_108", name: "Cranequin", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 569, maxAtk: 604, attackType: "Arrow" }, -{ itemId: 181109, className: "BOW01_109", name: "Old Oak Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 15, minAtk: 137, maxAtk: 145, attackType: "Arrow" }, -{ itemId: 181110, className: "BOW01_110", name: "Old Seal Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Arrow" }, -{ itemId: 181111, className: "BOW01_111", name: "Sniper Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 569, maxAtk: 604, attackType: "Arrow" }, -{ itemId: 181112, className: "BOW01_112", name: "Light Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 400, sellPrice: 246, equipType1: "Bow", equipType2: "Bow", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Arrow" }, -{ itemId: 181113, className: "BOW01_113", name: "Superior Light Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Arrow" }, -{ itemId: 181114, className: "BOW01_114", name: "Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, minAtk: 137, maxAtk: 145, attackType: "Arrow" }, -{ itemId: 181115, className: "BOW01_115", name: "Superior Dokyu", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, minAtk: 137, maxAtk: 145, attackType: "Arrow" }, -{ itemId: 181116, className: "BOW01_116", name: "Superior Quarrel Bow", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Arrow" }, -{ itemId: 181117, className: "BOW01_117", name: "Superior Oak Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Arrow" }, +{ itemId: 181102, className: "BOW01_102", name: "Crude Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 137, maxAtk: 145, attackType: "Arrow" }, +{ itemId: 181103, className: "BOW01_103", name: "Dokyu", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 137, maxAtk: 145, attackType: "Arrow" }, +{ itemId: 181104, className: "BOW01_104", name: "Quarrel Bow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 728, equipType1: "Bow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Arrow" }, +{ itemId: 181105, className: "BOW01_105", name: "Oak Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Arrow" }, +{ itemId: 181106, className: "BOW01_106", name: "Seal Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Arrow" }, +{ itemId: 181107, className: "BOW01_107", name: "Catapult", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Arrow" }, +{ itemId: 181108, className: "BOW01_108", name: "Cranequin", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 569, maxAtk: 604, attackType: "Arrow" }, +{ itemId: 181109, className: "BOW01_109", name: "Old Oak Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 137, maxAtk: 145, attackType: "Arrow" }, +{ itemId: 181110, className: "BOW01_110", name: "Old Seal Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Arrow" }, +{ itemId: 181111, className: "BOW01_111", name: "Sniper Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 569, maxAtk: 604, attackType: "Arrow" }, +{ itemId: 181112, className: "BOW01_112", name: "Light Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 400, sellPrice: 246, equipType1: "Bow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 36, maxAtk: 38, attackType: "Arrow" }, +{ itemId: 181113, className: "BOW01_113", name: "Superior Light Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 36, maxAtk: 38, attackType: "Arrow" }, +{ itemId: 181114, className: "BOW01_114", name: "Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 137, maxAtk: 145, attackType: "Arrow" }, +{ itemId: 181115, className: "BOW01_115", name: "Superior Dokyu", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 137, maxAtk: 145, attackType: "Arrow" }, +{ itemId: 181116, className: "BOW01_116", name: "Superior Quarrel Bow", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Arrow" }, +{ itemId: 181117, className: "BOW01_117", name: "Superior Oak Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 317, maxAtk: 337, attackType: "Arrow" }, { itemId: 181118, className: "BOW01_118", name: "Dunkel Quarrel Bow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Arrow" }, { itemId: 181119, className: "BOW01_119", name: "Dunkel Cranequin", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 1837, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 569, maxAtk: 604, attackType: "Arrow" }, { itemId: 181120, className: "BOW01_120", name: "Dunkel Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, minAtk: 137, maxAtk: 145, attackType: "Arrow" }, { itemId: 181121, className: "BOW01_121", name: "Dunkel Dokyu", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, minAtk: 137, maxAtk: 145, attackType: "Arrow" }, { itemId: 181122, className: "BOW01_122", name: "Dunkel Oak Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1484, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 317, maxAtk: 337, attackType: "Arrow" }, -{ itemId: 181123, className: "BOW01_123", name: "Arbalest", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 569, maxAtk: 604, attackType: "Arrow" }, -{ itemId: 181124, className: "BOW01_124", name: "Fedimian Turret", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 893, maxAtk: 948, attackType: "Arrow" }, -{ itemId: 181125, className: "BOW01_125", name: "Veteran Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 893, maxAtk: 948, attackType: "Arrow" }, -{ itemId: 181126, className: "BOW01_126", name: "Bullet Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 893, maxAtk: 948, attackType: "Arrow" }, -{ itemId: 181127, className: "BOW01_127", name: "Black Tip Bow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 24252, sellPrice: 5018, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1253, maxAtk: 1331, attackType: "Arrow" }, -{ itemId: 181128, className: "BOW01_128", name: "Spiked Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1253, maxAtk: 1331, attackType: "Arrow" }, -{ itemId: 181129, className: "BOW01_129", name: "Windlass", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1253, maxAtk: 1331, attackType: "Arrow" }, +{ itemId: 181123, className: "BOW01_123", name: "Arbalest", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 569, maxAtk: 604, attackType: "Arrow" }, +{ itemId: 181124, className: "BOW01_124", name: "Fedimian Turret", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 893, maxAtk: 948, attackType: "Arrow" }, +{ itemId: 181125, className: "BOW01_125", name: "Veteran Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 893, maxAtk: 948, attackType: "Arrow" }, +{ itemId: 181126, className: "BOW01_126", name: "Bullet Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 893, maxAtk: 948, attackType: "Arrow" }, +{ itemId: 181127, className: "BOW01_127", name: "Black Tip Bow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 24252, sellPrice: 5018, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1253, maxAtk: 1331, attackType: "Arrow" }, +{ itemId: 181128, className: "BOW01_128", name: "Spiked Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1253, maxAtk: 1331, attackType: "Arrow" }, +{ itemId: 181129, className: "BOW01_129", name: "Windlass", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1253, maxAtk: 1331, attackType: "Arrow" }, { itemId: 181130, className: "BOW01_130", name: "Yorgis Fedimian Turret", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 2730, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 893, maxAtk: 948, attackType: "Arrow" }, -{ itemId: 181131, className: "BOW01_131", name: "Kracked Shooter", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Bow", equipType2: "Bow", minLevel: 220, minAtk: 1613, maxAtk: 1713, attackType: "Arrow" }, -{ itemId: 181132, className: "BOW01_132", name: "Superior Kracked Shooter", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Bow", equipType2: "Bow", minLevel: 220, minAtk: 1613, maxAtk: 1713, attackType: "Arrow" }, -{ itemId: 181133, className: "BOW01_133", name: "(Faded) Replica Migantis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 80000, sellPrice: 5000, equipType1: "Bow", equipType2: "Bow", minLevel: 270, minAtk: 1973, maxAtk: 2095, attackType: "Arrow" }, -{ itemId: 181134, className: "BOW01_134", name: "(Faded) Replica Pevordimas Crossbow", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 120000, sellPrice: 5000, equipType1: "Bow", equipType2: "Bow", minLevel: 315, minAtk: 2298, maxAtk: 2440, attackType: "Arrow" }, -{ itemId: 181999, className: "BOW01_999", name: "Standard Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 8256, equipType1: "Bow", equipType2: "Bow", minLevel: 15, minAtk: 137, maxAtk: 145, attackType: "Arrow" }, -{ itemId: 182101, className: "BOW02_101", name: "Superior Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, minAtk: 152, maxAtk: 161, attackType: "Arrow" }, -{ itemId: 182102, className: "BOW02_102", name: "Wide Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 352, maxAtk: 374, attackType: "Arrow" }, -{ itemId: 182103, className: "BOW02_103", name: "Grand Cross", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 352, maxAtk: 374, attackType: "Arrow" }, -{ itemId: 182104, className: "BOW02_104", name: "Cheminis Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1746, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 352, maxAtk: 374, attackType: "Arrow" }, -{ itemId: 182105, className: "BOW02_105", name: "Medina Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 2076, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Arrow" }, -{ itemId: 182106, className: "BOW02_106", name: "Regina Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Arrow" }, -{ itemId: 182107, className: "BOW02_107", name: "Accuracy Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 992, maxAtk: 1054, attackType: "Arrow" }, -{ itemId: 182108, className: "BOW02_108", name: "Imperni Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Arrow" }, -{ itemId: 182109, className: "BOW02_109", name: "Grave Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1392, maxAtk: 1479, attackType: "Arrow" }, -{ itemId: 182110, className: "BOW02_110", name: "Smith Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 1, minAtk: 40, maxAtk: 42, attackType: "Arrow" }, -{ itemId: 182111, className: "BOW02_111", name: "Klavis Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, minAtk: 152, maxAtk: 161, attackType: "Arrow" }, -{ itemId: 182112, className: "BOW02_112", name: "Dio Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 728, equipType1: "Bow", equipType2: "Bow", minLevel: 15, minAtk: 152, maxAtk: 161, attackType: "Arrow" }, -{ itemId: 182113, className: "BOW02_113", name: "Thresh Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1716, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 352, maxAtk: 374, attackType: "Arrow" }, -{ itemId: 182114, className: "BOW02_114", name: "Sestas Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Arrow" }, -{ itemId: 182115, className: "BOW02_115", name: "Dratt Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 992, maxAtk: 1054, attackType: "Arrow" }, -{ itemId: 182116, className: "BOW02_116", name: "Aston Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1392, maxAtk: 1479, attackType: "Arrow" }, -{ itemId: 182117, className: "BOW02_117", name: "Tenet Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 352, maxAtk: 374, attackType: "Arrow" }, -{ itemId: 182118, className: "BOW02_118", name: "Patrice Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 352, maxAtk: 374, attackType: "Arrow" }, -{ itemId: 182119, className: "BOW02_119", name: "Lukas Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Arrow" }, -{ itemId: 182120, className: "BOW02_120", name: "Philis Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Arrow" }, -{ itemId: 182121, className: "BOW02_121", name: "Escanciu Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Arrow" }, -{ itemId: 182122, className: "BOW02_122", name: "Krag Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Arrow" }, -{ itemId: 182123, className: "BOW02_123", name: "Pilgrim Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 2759, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 992, maxAtk: 1054, attackType: "Arrow" }, -{ itemId: 182124, className: "BOW02_124", name: "Istora Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 4335, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1392, maxAtk: 1479, attackType: "Arrow" }, -{ itemId: 182125, className: "BOW02_125", name: "Eki Fedimian Turret", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 992, maxAtk: 1054, attackType: "Arrow" }, -{ itemId: 182126, className: "BOW02_126", name: "Eki Veteran Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 992, maxAtk: 1054, addDef: 13, attackType: "Arrow" }, -{ itemId: 182127, className: "BOW02_127", name: "Holy Bullet Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 992, maxAtk: 1054, attackType: "Arrow" }, -{ itemId: 182128, className: "BOW02_128", name: "Lumas Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 3104, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 992, maxAtk: 1054, attackType: "Arrow" }, -{ itemId: 182129, className: "BOW02_129", name: "Vitt Black Tip Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1392, maxAtk: 1479, attackType: "Arrow" }, -{ itemId: 182130, className: "BOW02_130", name: "Vienie Spiked Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1392, maxAtk: 1479, attackType: "Arrow" }, -{ itemId: 182131, className: "BOW02_131", name: "Vienie Windlass", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1392, maxAtk: 1479, attackType: "Arrow" }, -{ itemId: 182132, className: "BOW02_132", name: "Light Kracked Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Bow", equipType2: "Bow", minLevel: 220, minAtk: 1793, maxAtk: 1903, attackType: "Arrow" }, -{ itemId: 182133, className: "BOW02_133", name: "Adata Cranequin", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Bow", equipType2: "Bow", minLevel: 220, minAtk: 1793, maxAtk: 1903, attackType: "Arrow" }, -{ itemId: 182134, className: "BOW02_134", name: "Didel Kracked Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Bow", equipType2: "Bow", minLevel: 220, minAtk: 1793, maxAtk: 1903, addMinAtk: 26, attackType: "Arrow" }, -{ itemId: 182135, className: "BOW02_135", name: "Supportive Fedimian Turret", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Arrow" }, -{ itemId: 182150, className: "BOW02_150", name: "Tevhrin Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 220, minAtk: 1793, maxAtk: 1903, attackType: "Arrow" }, -{ itemId: 182151, className: "BOW02_151", name: "(Faded) Migantis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Bow", equipType2: "Bow", minLevel: 270, minAtk: 2193, maxAtk: 2328, attackType: "Arrow" }, -{ itemId: 182152, className: "BOW02_152", name: "(Faded) Pevordimas Crossbow", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Bow", equipType2: "Bow", minLevel: 315, minAtk: 2553, maxAtk: 2711, attackType: "Arrow" }, -{ itemId: 182153, className: "BOW02_153", name: "Star Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 992, maxAtk: 1054, attackType: "Arrow" }, -{ itemId: 182154, className: "BOW02_154", name: "Chrisius Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1392, maxAtk: 1479, attackType: "Arrow" }, -{ itemId: 182155, className: "BOW02_155", name: "Sketis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 632, maxAtk: 671, attackType: "Arrow" }, -{ itemId: 182156, className: "BOW02_156", name: "Pajoritas Crossbow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 220, minAtk: 1793, maxAtk: 1903, attackType: "Arrow" }, -{ itemId: 182157, className: "BOW02_157", name: "Migantis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 270, minAtk: 2193, maxAtk: 2328, attackType: "Arrow" }, -{ itemId: 182158, className: "BOW02_158", name: "Pevordimas Crossbow", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 315, minAtk: 2553, maxAtk: 2711, attackType: "Arrow" }, -{ itemId: 182159, className: "BOW02_159", name: "Raffye Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 350, minAtk: 2833, maxAtk: 3008, attackType: "Arrow" }, -{ itemId: 182160, className: "BOW02_160", name: "Zvaigzde Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, minAtk: 3073, maxAtk: 3263, attackType: "Arrow" }, -{ itemId: 182161, className: "BOW02_161", name: "Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 3233, maxAtk: 3433, attackType: "Arrow" }, -{ itemId: 183101, className: "BOW03_101", name: "Shooting Star", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2673, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 695, maxAtk: 738, smallSizeBonus: 76, attackType: "Arrow" }, -{ itemId: 183102, className: "BOW03_102", name: "Kateen Blaster", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 695, maxAtk: 738, attackType: "Arrow" }, -{ itemId: 183103, className: "BOW03_103", name: "Grajus", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1532, maxAtk: 1626, largeSizeBonus: 110, attackType: "Arrow" }, -{ itemId: 183104, className: "BOW03_104", name: "Deathweaver Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, minAtk: 167, maxAtk: 178, attackType: "Arrow" }, -{ itemId: 183105, className: "BOW03_105", name: "Chapparition Shooter", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, minAtk: 387, maxAtk: 411, attackType: "Arrow" }, -{ itemId: 183106, className: "BOW03_106", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 7936, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1532, maxAtk: 1626, attackType: "Arrow" }, -{ itemId: 183107, className: "BOW03_107", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 1092, maxAtk: 1159, attackType: "Arrow" }, -{ itemId: 183108, className: "BOW03_108", name: "Karacha Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1532, maxAtk: 1626, middleSizeBonus: 54, attackType: "Arrow" }, -{ itemId: 183109, className: "BOW03_109", name: "Bandit", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 32673, sellPrice: 5086, equipType1: "Bow", equipType2: "Bow", minLevel: 220, minAtk: 1972, maxAtk: 2094, attackType: "Arrow" }, -{ itemId: 183110, className: "BOW03_110", name: "Didel Grand Cross", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Bow", equipType2: "Bow", minLevel: 220, minAtk: 1972, maxAtk: 2094, attackType: "Arrow" }, -{ itemId: 183111, className: "BOW03_111", name: "Seimos Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 1092, maxAtk: 1159, attackType: "Arrow" }, -{ itemId: 183112, className: "BOW03_112", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 80, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 1092, maxAtk: 1159, attackType: "Arrow" }, -{ itemId: 183113, className: "BOW03_113", name: "Magas Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1532, maxAtk: 1626, attackType: "Arrow" }, -{ itemId: 183114, className: "BOW03_114", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1532, maxAtk: 1626, attackType: "Arrow" }, -{ itemId: 183115, className: "BOW03_115", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 32673, sellPrice: 80, equipType1: "Bow", equipType2: "Bow", minLevel: 220, minAtk: 1972, maxAtk: 2094, attackType: "Arrow" }, -{ itemId: 183116, className: "BOW03_116", name: "Pensara Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Bow", equipType2: "Bow", minLevel: 220, minAtk: 1972, maxAtk: 2094, addMaxAtk: 29, attackType: "Arrow" }, -{ itemId: 183201, className: "BOW03_201", name: "Marble Grand Cross", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Bow", equipType2: "Bow", minLevel: 270, minAtk: 2412, maxAtk: 2561, attackType: "Arrow" }, -{ itemId: 183202, className: "BOW03_202", name: "Silver Hawk", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Bow", equipType2: "Bow", minLevel: 315, minAtk: 2808, maxAtk: 2982, addMinAtk: 102, addMaxAtk: 211, attackType: "Arrow" }, -{ itemId: 183301, className: "BOW03_301", name: "(Faded) Star Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 2730, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 1092, maxAtk: 1159, attackType: "Arrow" }, -{ itemId: 183302, className: "BOW03_302", name: "(Faded) Chrisius Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 3546, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1532, maxAtk: 1626, attackType: "Arrow" }, -{ itemId: 183303, className: "BOW03_303", name: "(Faded) Sketis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 695, maxAtk: 738, attackType: "Arrow", darkRes: -60 }, -{ itemId: 183304, className: "BOW03_304", name: "(Faded) Pajoritas Crossbow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 220, minAtk: 1972, maxAtk: 2094, attackType: "Arrow" }, -{ itemId: 183305, className: "BOW03_305", name: "(Faded) Purine Migantis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Bow", equipType2: "Bow", minLevel: 270, minAtk: 2412, maxAtk: 2561, attackType: "Arrow" }, -{ itemId: 183306, className: "BOW03_306", name: "(Faded) Purine Pevordimas Crossbow", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Bow", equipType2: "Bow", minLevel: 315, minAtk: 2808, maxAtk: 2982, attackType: "Arrow" }, -{ itemId: 183307, className: "BOW03_307", name: "Berthas Star Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 1092, maxAtk: 1159, attackType: "Arrow" }, -{ itemId: 183308, className: "BOW03_308", name: "Berthas Chrisius Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1532, maxAtk: 1626, attackType: "Arrow" }, -{ itemId: 183309, className: "BOW03_309", name: "Berthas Sketis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 695, maxAtk: 738, attackType: "Arrow" }, -{ itemId: 183310, className: "BOW03_310", name: "Berthas Pajoritas Crossbow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 220, minAtk: 1972, maxAtk: 2094, attackType: "Arrow" }, -{ itemId: 183311, className: "BOW03_311", name: "Berthas Migantis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 270, minAtk: 2412, maxAtk: 2561, attackType: "Arrow" }, -{ itemId: 183312, className: "BOW03_312", name: "Berthas Pevordimas Crossbow", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 315, minAtk: 2808, maxAtk: 2982, attackType: "Arrow" }, -{ itemId: 183313, className: "BOW03_313", name: "Berthas Raffye Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 350, minAtk: 3116, maxAtk: 3309, attackType: "Arrow" }, -{ itemId: 183314, className: "BOW03_314", name: "Berthas Zvaigzde Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, minAtk: 3380, maxAtk: 3589, attackType: "Arrow" }, -{ itemId: 183315, className: "BOW03_315", name: "Berthas Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 3556, maxAtk: 3776, attackType: "Arrow" }, -{ itemId: 183316, className: "BOW03_316", name: "Berthas Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 430, minAtk: 3820, maxAtk: 4057, attackType: "Arrow" }, -{ itemId: 184101, className: "BOW04_101", name: "Isbality", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1741, maxAtk: 1848, attackType: "Arrow", darkRes: 39 }, -{ itemId: 184102, className: "BOW04_102", name: "Morto", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1741, maxAtk: 1848, attackType: "Arrow" }, -{ itemId: 184103, className: "BOW04_103", name: "Ruma Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 1240, maxAtk: 1317, middleSizeBonus: 44, attackType: "Arrow" }, -{ itemId: 184104, className: "BOW04_104", name: "Galatunis Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 7936, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 1240, maxAtk: 1317, attackType: "Arrow" }, -{ itemId: 184105, className: "BOW04_105", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1741, maxAtk: 1848, attackType: "Arrow" }, -{ itemId: 184106, className: "BOW04_106", name: "Catacombs Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1741, maxAtk: 1848, pAtk: 31, attackType: "Arrow", iceRes: 43 }, -{ itemId: 184107, className: "BOW04_107", name: "Lolopanther Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Bow", equipType2: "Bow", minLevel: 270, minAtk: 3508, maxAtk: 3725, addMDef: 34, largeSizeBonus: 198, attackType: "Arrow" }, -{ itemId: 184108, className: "BOW04_108", name: "Solmiki Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 12952, equipType1: "Bow", equipType2: "Bow", minLevel: 330, minAtk: 4277, maxAtk: 4541, largeSizeBonus: 451, attackType: "Arrow" }, -{ itemId: 184109, className: "BOW04_109", name: "Regard Horn Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Bow", equipType2: "Bow", minLevel: 315, minAtk: 3191, maxAtk: 3388, attackType: "Arrow" }, -{ itemId: 184110, className: "BOW04_110", name: "Primus Star Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 1240, maxAtk: 1317, attackType: "Arrow" }, -{ itemId: 184111, className: "BOW04_111", name: "Primus Crisius Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 170, minAtk: 1741, maxAtk: 1848, attackType: "Arrow" }, -{ itemId: 184112, className: "BOW04_112", name: "Primus Sketis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 75, minAtk: 790, maxAtk: 839, attackType: "Arrow" }, -{ itemId: 184113, className: "BOW04_113", name: "Primus Pajoritas Crossbow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 220, minAtk: 2241, maxAtk: 2379, attackType: "Arrow" }, -{ itemId: 184114, className: "BOW04_114", name: "Primus Migantis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 270, minAtk: 2741, maxAtk: 2910, attackType: "Arrow" }, -{ itemId: 184115, className: "BOW04_115", name: "Primus Pevordimas Crossbow", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 315, minAtk: 3191, maxAtk: 3388, attackType: "Arrow" }, -{ itemId: 184116, className: "BOW04_116", name: "Primus Raffye Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 350, minAtk: 3541, maxAtk: 3760, attackType: "Arrow" }, -{ itemId: 184117, className: "BOW04_117", name: "Masinios Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 350, minAtk: 3541, maxAtk: 3760, attackType: "Arrow" }, -{ itemId: 184118, className: "BOW04_118", name: "Primus Zvaigzde Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, minAtk: 3841, maxAtk: 4079, attackType: "Arrow" }, -{ itemId: 184119, className: "BOW04_119", name: "Wastrel Zvaigzde Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, minAtk: 3841, maxAtk: 4079, addMinAtk: 152, addMaxAtk: 352, attackType: "Arrow" }, -{ itemId: 184120, className: "BOW04_120", name: "Asio Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, minAtk: 3841, maxAtk: 4079, attackType: "Arrow" }, -{ itemId: 184121, className: "BOW04_121", name: "Primus Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 4041, maxAtk: 4291, attackType: "Arrow" }, -{ itemId: 184122, className: "BOW04_122", name: "Skiaclipse Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 4041, maxAtk: 4291, attackType: "Arrow" }, -{ itemId: 184123, className: "BOW04_123", name: "Moringponia Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 4041, maxAtk: 4291, addMaxAtk: 339, attackType: "Arrow" }, -{ itemId: 184124, className: "BOW04_124", name: "Misrus Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 4041, maxAtk: 4291, attackType: "Arrow" }, -{ itemId: 184125, className: "BOW04_125", name: "Primus Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 430, minAtk: 4341, maxAtk: 4610, attackType: "Arrow" }, -{ itemId: 185101, className: "BOW05_101", name: "Velcoffer Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 360, minAtk: 4661, maxAtk: 4949, attackType: "Arrow" }, -{ itemId: 185102, className: "BOW05_102", name: "Velcoffer Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 360, minAtk: 4661, maxAtk: 4949, attackType: "Arrow" }, -{ itemId: 185103, className: "BOW05_103", name: "Savinose Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, -{ itemId: 185104, className: "BOW05_104", name: "Skiaclipse Varna Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, -{ itemId: 201101, className: "MAC01_101", name: "Old Wooden Club", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, -{ itemId: 201102, className: "MAC01_102", name: "Wooden Club", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, +{ itemId: 181131, className: "BOW01_131", name: "Kracked Shooter", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Bow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1613, maxAtk: 1713, attackType: "Arrow" }, +{ itemId: 181132, className: "BOW01_132", name: "Superior Kracked Shooter", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Bow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1613, maxAtk: 1713, attackType: "Arrow" }, +{ itemId: 181133, className: "BOW01_133", name: "(Faded) Replica Migantis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 80000, sellPrice: 5000, equipType1: "Bow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 1973, maxAtk: 2095, attackType: "Arrow" }, +{ itemId: 181134, className: "BOW01_134", name: "(Faded) Replica Pevordimas Crossbow", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 120000, sellPrice: 5000, equipType1: "Bow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 2298, maxAtk: 2440, attackType: "Arrow" }, +{ itemId: 181999, className: "BOW01_999", name: "Standard Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 8256, equipType1: "Bow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 137, maxAtk: 145, attackType: "Arrow" }, +{ itemId: 182101, className: "BOW02_101", name: "Superior Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 152, maxAtk: 161, attackType: "Arrow" }, +{ itemId: 182102, className: "BOW02_102", name: "Wide Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 352, maxAtk: 374, attackType: "Arrow" }, +{ itemId: 182103, className: "BOW02_103", name: "Grand Cross", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 352, maxAtk: 374, attackType: "Arrow" }, +{ itemId: 182104, className: "BOW02_104", name: "Cheminis Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1746, equipType1: "Bow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 352, maxAtk: 374, attackType: "Arrow" }, +{ itemId: 182105, className: "BOW02_105", name: "Medina Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 2076, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Arrow" }, +{ itemId: 182106, className: "BOW02_106", name: "Regina Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Arrow" }, +{ itemId: 182107, className: "BOW02_107", name: "Accuracy Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, attackType: "Arrow" }, +{ itemId: 182108, className: "BOW02_108", name: "Imperni Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Arrow" }, +{ itemId: 182109, className: "BOW02_109", name: "Grave Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, attackType: "Arrow" }, +{ itemId: 182110, className: "BOW02_110", name: "Smith Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 40, maxAtk: 42, attackType: "Arrow" }, +{ itemId: 182111, className: "BOW02_111", name: "Klavis Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 152, maxAtk: 161, attackType: "Arrow" }, +{ itemId: 182112, className: "BOW02_112", name: "Dio Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 728, equipType1: "Bow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 152, maxAtk: 161, attackType: "Arrow" }, +{ itemId: 182113, className: "BOW02_113", name: "Thresh Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1716, equipType1: "Bow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 352, maxAtk: 374, attackType: "Arrow" }, +{ itemId: 182114, className: "BOW02_114", name: "Sestas Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Arrow" }, +{ itemId: 182115, className: "BOW02_115", name: "Dratt Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, attackType: "Arrow" }, +{ itemId: 182116, className: "BOW02_116", name: "Aston Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, attackType: "Arrow" }, +{ itemId: 182117, className: "BOW02_117", name: "Tenet Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 352, maxAtk: 374, attackType: "Arrow" }, +{ itemId: 182118, className: "BOW02_118", name: "Patrice Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 352, maxAtk: 374, attackType: "Arrow" }, +{ itemId: 182119, className: "BOW02_119", name: "Lukas Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Arrow" }, +{ itemId: 182120, className: "BOW02_120", name: "Philis Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Arrow" }, +{ itemId: 182121, className: "BOW02_121", name: "Escanciu Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Arrow" }, +{ itemId: 182122, className: "BOW02_122", name: "Krag Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Arrow" }, +{ itemId: 182123, className: "BOW02_123", name: "Pilgrim Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 2759, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, attackType: "Arrow" }, +{ itemId: 182124, className: "BOW02_124", name: "Istora Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 4335, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, attackType: "Arrow" }, +{ itemId: 182125, className: "BOW02_125", name: "Eki Fedimian Turret", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, attackType: "Arrow" }, +{ itemId: 182126, className: "BOW02_126", name: "Eki Veteran Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, addDef: 13, attackType: "Arrow" }, +{ itemId: 182127, className: "BOW02_127", name: "Holy Bullet Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, attackType: "Arrow" }, +{ itemId: 182128, className: "BOW02_128", name: "Lumas Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 3104, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, attackType: "Arrow" }, +{ itemId: 182129, className: "BOW02_129", name: "Vitt Black Tip Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, attackType: "Arrow" }, +{ itemId: 182130, className: "BOW02_130", name: "Vienie Spiked Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, attackType: "Arrow" }, +{ itemId: 182131, className: "BOW02_131", name: "Vienie Windlass", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, attackType: "Arrow" }, +{ itemId: 182132, className: "BOW02_132", name: "Light Kracked Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Bow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1793, maxAtk: 1903, attackType: "Arrow" }, +{ itemId: 182133, className: "BOW02_133", name: "Adata Cranequin", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Bow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1793, maxAtk: 1903, attackType: "Arrow" }, +{ itemId: 182134, className: "BOW02_134", name: "Didel Kracked Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Bow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1793, maxAtk: 1903, addMinAtk: 26, attackType: "Arrow" }, +{ itemId: 182135, className: "BOW02_135", name: "Supportive Fedimian Turret", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Arrow" }, +{ itemId: 182150, className: "BOW02_150", name: "Tevhrin Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1793, maxAtk: 1903, attackType: "Arrow" }, +{ itemId: 182151, className: "BOW02_151", name: "(Faded) Migantis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Bow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 2193, maxAtk: 2328, attackType: "Arrow" }, +{ itemId: 182152, className: "BOW02_152", name: "(Faded) Pevordimas Crossbow", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Bow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 2553, maxAtk: 2711, attackType: "Arrow" }, +{ itemId: 182153, className: "BOW02_153", name: "Star Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 992, maxAtk: 1054, attackType: "Arrow" }, +{ itemId: 182154, className: "BOW02_154", name: "Chrisius Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1392, maxAtk: 1479, attackType: "Arrow" }, +{ itemId: 182155, className: "BOW02_155", name: "Sketis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 632, maxAtk: 671, attackType: "Arrow" }, +{ itemId: 182156, className: "BOW02_156", name: "Pajoritas Crossbow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1793, maxAtk: 1903, attackType: "Arrow" }, +{ itemId: 182157, className: "BOW02_157", name: "Migantis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 2193, maxAtk: 2328, attackType: "Arrow" }, +{ itemId: 182158, className: "BOW02_158", name: "Pevordimas Crossbow", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 2553, maxAtk: 2711, attackType: "Arrow" }, +{ itemId: 182159, className: "BOW02_159", name: "Raffye Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 350, equipExpGroup: "Equip", minAtk: 2833, maxAtk: 3008, attackType: "Arrow" }, +{ itemId: 182160, className: "BOW02_160", name: "Zvaigzde Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3073, maxAtk: 3263, attackType: "Arrow" }, +{ itemId: 182161, className: "BOW02_161", name: "Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 3233, maxAtk: 3433, attackType: "Arrow" }, +{ itemId: 183101, className: "BOW03_101", name: "Shooting Star", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2673, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 695, maxAtk: 738, smallSizeBonus: 76, attackType: "Arrow" }, +{ itemId: 183102, className: "BOW03_102", name: "Kateen Blaster", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 695, maxAtk: 738, attackType: "Arrow" }, +{ itemId: 183103, className: "BOW03_103", name: "Grajus", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1532, maxAtk: 1626, largeSizeBonus: 110, attackType: "Arrow" }, +{ itemId: 183104, className: "BOW03_104", name: "Deathweaver Crossbow", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Bow", equipType2: "Bow", minLevel: 15, equipExpGroup: "Equip", minAtk: 167, maxAtk: 178, attackType: "Arrow" }, +{ itemId: 183105, className: "BOW03_105", name: "Chapparition Shooter", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 40, equipExpGroup: "Equip", minAtk: 387, maxAtk: 411, attackType: "Arrow" }, +{ itemId: 183106, className: "BOW03_106", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 7936, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1532, maxAtk: 1626, attackType: "Arrow" }, +{ itemId: 183107, className: "BOW03_107", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 1159, attackType: "Arrow" }, +{ itemId: 183108, className: "BOW03_108", name: "Karacha Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1532, maxAtk: 1626, middleSizeBonus: 54, attackType: "Arrow" }, +{ itemId: 183109, className: "BOW03_109", name: "Bandit", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 32673, sellPrice: 5086, equipType1: "Bow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1972, maxAtk: 2094, attackType: "Arrow" }, +{ itemId: 183110, className: "BOW03_110", name: "Didel Grand Cross", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Bow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1972, maxAtk: 2094, attackType: "Arrow" }, +{ itemId: 183111, className: "BOW03_111", name: "Seimos Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 1159, attackType: "Arrow" }, +{ itemId: 183112, className: "BOW03_112", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 80, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 1159, attackType: "Arrow" }, +{ itemId: 183113, className: "BOW03_113", name: "Magas Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1532, maxAtk: 1626, attackType: "Arrow" }, +{ itemId: 183114, className: "BOW03_114", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1532, maxAtk: 1626, attackType: "Arrow" }, +{ itemId: 183115, className: "BOW03_115", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 32673, sellPrice: 80, equipType1: "Bow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1972, maxAtk: 2094, attackType: "Arrow" }, +{ itemId: 183116, className: "BOW03_116", name: "Pensara Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Bow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1972, maxAtk: 2094, addMaxAtk: 29, attackType: "Arrow" }, +{ itemId: 183201, className: "BOW03_201", name: "Marble Grand Cross", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Bow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 2412, maxAtk: 2561, attackType: "Arrow" }, +{ itemId: 183202, className: "BOW03_202", name: "Silver Hawk", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Bow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 2808, maxAtk: 2982, addMinAtk: 102, addMaxAtk: 211, attackType: "Arrow" }, +{ itemId: 183301, className: "BOW03_301", name: "(Faded) Star Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 2730, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 1159, attackType: "Arrow" }, +{ itemId: 183302, className: "BOW03_302", name: "(Faded) Chrisius Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 3546, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1532, maxAtk: 1626, attackType: "Arrow" }, +{ itemId: 183303, className: "BOW03_303", name: "(Faded) Sketis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 695, maxAtk: 738, attackType: "Arrow", darkRes: -60 }, +{ itemId: 183304, className: "BOW03_304", name: "(Faded) Pajoritas Crossbow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1972, maxAtk: 2094, attackType: "Arrow" }, +{ itemId: 183305, className: "BOW03_305", name: "(Faded) Purine Migantis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Bow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 2412, maxAtk: 2561, attackType: "Arrow" }, +{ itemId: 183306, className: "BOW03_306", name: "(Faded) Purine Pevordimas Crossbow", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Bow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 2808, maxAtk: 2982, attackType: "Arrow" }, +{ itemId: 183307, className: "BOW03_307", name: "Berthas Star Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 1159, attackType: "Arrow" }, +{ itemId: 183308, className: "BOW03_308", name: "Berthas Chrisius Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1532, maxAtk: 1626, attackType: "Arrow" }, +{ itemId: 183309, className: "BOW03_309", name: "Berthas Sketis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 695, maxAtk: 738, attackType: "Arrow" }, +{ itemId: 183310, className: "BOW03_310", name: "Berthas Pajoritas Crossbow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 1972, maxAtk: 2094, attackType: "Arrow" }, +{ itemId: 183311, className: "BOW03_311", name: "Berthas Migantis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 2412, maxAtk: 2561, attackType: "Arrow" }, +{ itemId: 183312, className: "BOW03_312", name: "Berthas Pevordimas Crossbow", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 2808, maxAtk: 2982, attackType: "Arrow" }, +{ itemId: 183313, className: "BOW03_313", name: "Berthas Raffye Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 350, equipExpGroup: "Equip", minAtk: 3116, maxAtk: 3309, attackType: "Arrow" }, +{ itemId: 183314, className: "BOW03_314", name: "Berthas Zvaigzde Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3380, maxAtk: 3589, attackType: "Arrow" }, +{ itemId: 183315, className: "BOW03_315", name: "Berthas Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 3556, maxAtk: 3776, attackType: "Arrow" }, +{ itemId: 183316, className: "BOW03_316", name: "Berthas Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 430, equipExpGroup: "Equip", minAtk: 3820, maxAtk: 4057, attackType: "Arrow" }, +{ itemId: 184101, className: "BOW04_101", name: "Isbality", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1741, maxAtk: 1848, attackType: "Arrow", darkRes: 39 }, +{ itemId: 184102, className: "BOW04_102", name: "Morto", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1741, maxAtk: 1848, attackType: "Arrow" }, +{ itemId: 184103, className: "BOW04_103", name: "Ruma Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1240, maxAtk: 1317, middleSizeBonus: 44, attackType: "Arrow" }, +{ itemId: 184104, className: "BOW04_104", name: "Galatunis Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 7936, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1240, maxAtk: 1317, attackType: "Arrow" }, +{ itemId: 184105, className: "BOW04_105", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1741, maxAtk: 1848, attackType: "Arrow" }, +{ itemId: 184106, className: "BOW04_106", name: "Catacombs Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1741, maxAtk: 1848, pAtk: 31, attackType: "Arrow", iceRes: 43 }, +{ itemId: 184107, className: "BOW04_107", name: "Lolopanther Crossbow", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Bow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 3508, maxAtk: 3725, addMDef: 34, largeSizeBonus: 198, attackType: "Arrow" }, +{ itemId: 184108, className: "BOW04_108", name: "Solmiki Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 12952, equipType1: "Bow", equipType2: "Bow", minLevel: 330, equipExpGroup: "Equip", minAtk: 4277, maxAtk: 4541, largeSizeBonus: 451, attackType: "Arrow" }, +{ itemId: 184109, className: "BOW04_109", name: "Regard Horn Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Bow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 3191, maxAtk: 3388, attackType: "Arrow" }, +{ itemId: 184110, className: "BOW04_110", name: "Primus Star Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1240, maxAtk: 1317, attackType: "Arrow" }, +{ itemId: 184111, className: "BOW04_111", name: "Primus Crisius Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 170, equipExpGroup: "Equip", minAtk: 1741, maxAtk: 1848, attackType: "Arrow" }, +{ itemId: 184112, className: "BOW04_112", name: "Primus Sketis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 75, equipExpGroup: "Equip", minAtk: 790, maxAtk: 839, attackType: "Arrow" }, +{ itemId: 184113, className: "BOW04_113", name: "Primus Pajoritas Crossbow", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 220, equipExpGroup: "Equip", minAtk: 2241, maxAtk: 2379, attackType: "Arrow" }, +{ itemId: 184114, className: "BOW04_114", name: "Primus Migantis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 2741, maxAtk: 2910, attackType: "Arrow" }, +{ itemId: 184115, className: "BOW04_115", name: "Primus Pevordimas Crossbow", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 3191, maxAtk: 3388, attackType: "Arrow" }, +{ itemId: 184116, className: "BOW04_116", name: "Primus Raffye Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 350, equipExpGroup: "Equip", minAtk: 3541, maxAtk: 3760, attackType: "Arrow" }, +{ itemId: 184117, className: "BOW04_117", name: "Masinios Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 350, equipExpGroup: "Equip", minAtk: 3541, maxAtk: 3760, attackType: "Arrow" }, +{ itemId: 184118, className: "BOW04_118", name: "Primus Zvaigzde Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, attackType: "Arrow" }, +{ itemId: 184119, className: "BOW04_119", name: "Wastrel Zvaigzde Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, addMinAtk: 152, addMaxAtk: 352, attackType: "Arrow" }, +{ itemId: 184120, className: "BOW04_120", name: "Asio Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, attackType: "Arrow" }, +{ itemId: 184121, className: "BOW04_121", name: "Primus Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, attackType: "Arrow" }, +{ itemId: 184122, className: "BOW04_122", name: "Skiaclipse Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, attackType: "Arrow" }, +{ itemId: 184123, className: "BOW04_123", name: "Moringponia Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, addMaxAtk: 339, attackType: "Arrow" }, +{ itemId: 184124, className: "BOW04_124", name: "Misrus Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, attackType: "Arrow" }, +{ itemId: 184125, className: "BOW04_125", name: "Primus Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 430, equipExpGroup: "Equip", minAtk: 4341, maxAtk: 4610, attackType: "Arrow" }, +{ itemId: 185101, className: "BOW05_101", name: "Velcoffer Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 360, equipExpGroup: "Equip", minAtk: 4661, maxAtk: 4949, attackType: "Arrow" }, +{ itemId: 185102, className: "BOW05_102", name: "Velcoffer Crossbow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 360, equipExpGroup: "Equip", minAtk: 4661, maxAtk: 4949, attackType: "Arrow" }, +{ itemId: 185103, className: "BOW05_103", name: "Savinose Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, +{ itemId: 185104, className: "BOW05_104", name: "Skiaclipse Varna Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, +{ itemId: 201101, className: "MAC01_101", name: "Old Wooden Club", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, +{ itemId: 201102, className: "MAC01_102", name: "Wooden Club", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, { itemId: 201103, className: "MAC01_103", name: "Dunkel Iron Club", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 106, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, -{ itemId: 201104, className: "MAC01_104", name: "Crude Mace", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, minAtk: 140, maxAtk: 142, mAtk: 141, attackType: "Strike" }, -{ itemId: 201105, className: "MAC01_105", name: "Morning Star", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, minAtk: 140, maxAtk: 142, mAtk: 141, attackType: "Strike" }, -{ itemId: 201106, className: "MAC01_106", name: "Mallet", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 728, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, -{ itemId: 201107, className: "MAC01_107", name: "Goedendag", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, -{ itemId: 201108, className: "MAC01_108", name: "Warpick", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, -{ itemId: 201109, className: "MAC01_109", name: "Maul", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, -{ itemId: 201110, className: "MAC01_110", name: "Battle Hammer", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 581, maxAtk: 592, mAtk: 587, attackType: "Strike" }, -{ itemId: 201111, className: "MAC01_111", name: "Old Goedendag", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 15, minAtk: 140, maxAtk: 142, mAtk: 141, attackType: "Strike" }, -{ itemId: 201112, className: "MAC01_112", name: "Old Warpick", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, -{ itemId: 201113, className: "MAC01_113", name: "Soldier's Club", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 51, maxAtk: 52, mAtk: 52, attackType: "Strike" }, -{ itemId: 201114, className: "MAC01_114", name: "Mayor's Iron Club", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 457, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 96, maxAtk: 97, mAtk: 97, attackType: "Strike" }, -{ itemId: 201115, className: "MAC01_115", name: "Old Mace", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 457, equipType1: "Mace", equipType2: "Mace", minLevel: 15, minAtk: 140, maxAtk: 142, mAtk: 141, attackType: "Strike" }, -{ itemId: 201116, className: "MAC01_116", name: "Chekan", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 581, maxAtk: 592, mAtk: 587, attackType: "Strike" }, -{ itemId: 201117, className: "MAC01_117", name: "Superior Wooden Club", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, -{ itemId: 201118, className: "MAC01_118", name: "Iron Club", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 246, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, -{ itemId: 201119, className: "MAC01_119", name: "Superior Iron Club", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, -{ itemId: 201120, className: "MAC01_120", name: "Mace", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, minAtk: 140, maxAtk: 142, mAtk: 141, attackType: "Strike" }, -{ itemId: 201121, className: "MAC01_121", name: "Superior Morning Star", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, minAtk: 140, maxAtk: 142, mAtk: 141, attackType: "Strike" }, -{ itemId: 201122, className: "MAC01_122", name: "Superior Mallet", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, -{ itemId: 201123, className: "MAC01_123", name: "Superior Goedendag", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, +{ itemId: 201104, className: "MAC01_104", name: "Crude Mace", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, equipExpGroup: "Equip", minAtk: 140, maxAtk: 142, mAtk: 141, attackType: "Strike" }, +{ itemId: 201105, className: "MAC01_105", name: "Morning Star", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, equipExpGroup: "Equip", minAtk: 140, maxAtk: 142, mAtk: 141, attackType: "Strike" }, +{ itemId: 201106, className: "MAC01_106", name: "Mallet", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 728, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, +{ itemId: 201107, className: "MAC01_107", name: "Goedendag", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, +{ itemId: 201108, className: "MAC01_108", name: "Warpick", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, +{ itemId: 201109, className: "MAC01_109", name: "Maul", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, +{ itemId: 201110, className: "MAC01_110", name: "Battle Hammer", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 581, maxAtk: 592, mAtk: 587, attackType: "Strike" }, +{ itemId: 201111, className: "MAC01_111", name: "Old Goedendag", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 15, equipExpGroup: "Equip", minAtk: 140, maxAtk: 142, mAtk: 141, attackType: "Strike" }, +{ itemId: 201112, className: "MAC01_112", name: "Old Warpick", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, +{ itemId: 201113, className: "MAC01_113", name: "Soldier's Club", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 51, maxAtk: 52, mAtk: 52, attackType: "Strike" }, +{ itemId: 201114, className: "MAC01_114", name: "Mayor's Iron Club", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 457, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 96, maxAtk: 97, mAtk: 97, attackType: "Strike" }, +{ itemId: 201115, className: "MAC01_115", name: "Old Mace", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 457, equipType1: "Mace", equipType2: "Mace", minLevel: 15, equipExpGroup: "Equip", minAtk: 140, maxAtk: 142, mAtk: 141, attackType: "Strike" }, +{ itemId: 201116, className: "MAC01_116", name: "Chekan", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 581, maxAtk: 592, mAtk: 587, attackType: "Strike" }, +{ itemId: 201117, className: "MAC01_117", name: "Superior Wooden Club", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, +{ itemId: 201118, className: "MAC01_118", name: "Iron Club", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 246, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, +{ itemId: 201119, className: "MAC01_119", name: "Superior Iron Club", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, +{ itemId: 201120, className: "MAC01_120", name: "Mace", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, equipExpGroup: "Equip", minAtk: 140, maxAtk: 142, mAtk: 141, attackType: "Strike" }, +{ itemId: 201121, className: "MAC01_121", name: "Superior Morning Star", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, equipExpGroup: "Equip", minAtk: 140, maxAtk: 142, mAtk: 141, attackType: "Strike" }, +{ itemId: 201122, className: "MAC01_122", name: "Superior Mallet", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, +{ itemId: 201123, className: "MAC01_123", name: "Superior Goedendag", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, { itemId: 201124, className: "MAC01_124", name: "Dunkel Maul", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, { itemId: 201125, className: "MAC01_125", name: "Dunkel Battle Hammer", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 1837, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 581, maxAtk: 592, mAtk: 587, attackType: "Strike" }, { itemId: 201126, className: "MAC01_126", name: "Dunkel Mace", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, minAtk: 140, maxAtk: 142, mAtk: 141, attackType: "Strike" }, { itemId: 201127, className: "MAC01_127", name: "Dunkel Morning Star", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, minAtk: 140, maxAtk: 142, mAtk: 141, attackType: "Strike" }, { itemId: 201128, className: "MAC01_128", name: "Dunkel Goedendag", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1484, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 323, maxAtk: 330, mAtk: 327, attackType: "Strike" }, -{ itemId: 201129, className: "MAC01_129", name: "Battle Maul", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 581, maxAtk: 592, mAtk: 587, attackType: "Strike" }, -{ itemId: 201130, className: "MAC01_130", name: "Fedimian Club", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 911, maxAtk: 930, mAtk: 921, attackType: "Strike" }, -{ itemId: 201131, className: "MAC01_131", name: "Rune Mace", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 911, maxAtk: 930, mAtk: 921, attackType: "Strike" }, -{ itemId: 201132, className: "MAC01_132", name: "Spiked Club", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 911, maxAtk: 930, mAtk: 921, attackType: "Strike" }, -{ itemId: 201133, className: "MAC01_133", name: "Stirus Hammer", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 5018, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1279, maxAtk: 1305, mAtk: 1292, attackType: "Strike" }, -{ itemId: 201134, className: "MAC01_134", name: "War Hammer", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1279, maxAtk: 1305, mAtk: 1292, attackType: "Strike" }, -{ itemId: 201135, className: "MAC01_135", name: "Sledgehammer", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1279, maxAtk: 1305, mAtk: 1292, attackType: "Strike" }, +{ itemId: 201129, className: "MAC01_129", name: "Battle Maul", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 581, maxAtk: 592, mAtk: 587, attackType: "Strike" }, +{ itemId: 201130, className: "MAC01_130", name: "Fedimian Club", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 911, maxAtk: 930, mAtk: 921, attackType: "Strike" }, +{ itemId: 201131, className: "MAC01_131", name: "Rune Mace", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 911, maxAtk: 930, mAtk: 921, attackType: "Strike" }, +{ itemId: 201132, className: "MAC01_132", name: "Spiked Club", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 911, maxAtk: 930, mAtk: 921, attackType: "Strike" }, +{ itemId: 201133, className: "MAC01_133", name: "Stirus Hammer", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 5018, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1279, maxAtk: 1305, mAtk: 1292, attackType: "Strike" }, +{ itemId: 201134, className: "MAC01_134", name: "War Hammer", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1279, maxAtk: 1305, mAtk: 1292, attackType: "Strike" }, +{ itemId: 201135, className: "MAC01_135", name: "Sledgehammer", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1279, maxAtk: 1305, mAtk: 1292, attackType: "Strike" }, { itemId: 201136, className: "MAC01_136", name: "Yorgis' Fedimian Club", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 911, maxAtk: 930, mAtk: 921, attackType: "Strike" }, -{ itemId: 201137, className: "MAC01_137", name: "Burawa", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Mace", equipType2: "Mace", minLevel: 220, minAtk: 1647, maxAtk: 1680, mAtk: 1663, attackType: "Strike" }, -{ itemId: 201138, className: "MAC01_138", name: "Superior Burawa", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Mace", equipType2: "Mace", minLevel: 220, minAtk: 1647, maxAtk: 1680, mAtk: 1663, attackType: "Strike" }, -{ itemId: 201139, className: "MAC01_139", name: "(Faded) Replica Migantis Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 80000, sellPrice: 5000, equipType1: "Mace", equipType2: "Mace", minLevel: 270, minAtk: 2014, maxAtk: 2055, mAtk: 2034, attackType: "Strike" }, -{ itemId: 201140, className: "MAC01_140", name: "(Faded) Replica Pevordimas Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 120000, sellPrice: 5000, equipType1: "Mace", equipType2: "Mace", minLevel: 315, minAtk: 2345, maxAtk: 2392, mAtk: 2369, attackType: "Strike" }, -{ itemId: 202101, className: "MAC02_101", name: "Five Hammer", type: "Equip", group: "Weapon", weight: 55, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 359, maxAtk: 367, mAtk: 363, attackType: "Strike" }, -{ itemId: 202102, className: "MAC02_102", name: "Spiked Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 359, maxAtk: 367, mAtk: 363, attackType: "Aries", darkRes: 14 }, -{ itemId: 202103, className: "MAC02_103", name: "Shield Breaker", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, -{ itemId: 202104, className: "MAC02_104", name: "Skull Crusher", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, -{ itemId: 202105, className: "MAC02_105", name: "Cheminis Maul", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1746, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 359, maxAtk: 367, mAtk: 363, attackType: "Strike" }, -{ itemId: 202106, className: "MAC02_106", name: "Mauros Club", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, -{ itemId: 202107, className: "MAC02_107", name: "Valtas Morning Star", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, -{ itemId: 202108, className: "MAC02_108", name: "Imperni Mace", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, -{ itemId: 202109, className: "MAC02_109", name: "Suncus Maul", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1421, maxAtk: 1450, mAtk: 1436, attackType: "Strike" }, -{ itemId: 202110, className: "MAC02_110", name: "Miner Hammer", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, minAtk: 155, maxAtk: 158, mAtk: 157, middleSizeBonus: 13, attackType: "Strike" }, -{ itemId: 202111, className: "MAC02_111", name: "Soldier's Iron Club", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 106, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 90, maxAtk: 92, mAtk: 91, attackType: "Strike" }, -{ itemId: 202112, className: "MAC02_112", name: "Smith Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 41, maxAtk: 42, mAtk: 41, attackType: "Strike" }, -{ itemId: 202113, className: "MAC02_113", name: "Klavis Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, minAtk: 155, maxAtk: 158, mAtk: 157, attackType: "Strike" }, -{ itemId: 202114, className: "MAC02_114", name: "Dio Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 2880, sellPrice: 728, equipType1: "Mace", equipType2: "Mace", minLevel: 15, minAtk: 155, maxAtk: 158, mAtk: 157, attackType: "Strike" }, -{ itemId: 202115, className: "MAC02_115", name: "Thresh Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 3640, sellPrice: 1716, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 359, maxAtk: 367, mAtk: 363, attackType: "Strike" }, -{ itemId: 202116, className: "MAC02_116", name: "Sestas Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, -{ itemId: 202117, className: "MAC02_117", name: "Dratt Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, -{ itemId: 202118, className: "MAC02_118", name: "Aston Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1421, maxAtk: 1450, mAtk: 1436, attackType: "Strike" }, -{ itemId: 202119, className: "MAC02_119", name: "Krausas Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 359, maxAtk: 367, mAtk: 363, attackType: "Strike" }, -{ itemId: 202120, className: "MAC02_120", name: "Tenet Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 359, maxAtk: 367, mAtk: 363, attackType: "Strike" }, -{ itemId: 202121, className: "MAC02_121", name: "Patrice Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 359, maxAtk: 367, mAtk: 363, attackType: "Strike" }, -{ itemId: 202122, className: "MAC02_122", name: "Lukas Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, -{ itemId: 202123, className: "MAC02_123", name: "Philis Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, -{ itemId: 202124, className: "MAC02_124", name: "Escanciu Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, -{ itemId: 202125, className: "MAC02_125", name: "Krag Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, -{ itemId: 202126, className: "MAC02_126", name: "Pilgrim Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 2759, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, -{ itemId: 202127, className: "MAC02_127", name: "Istora Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 4335, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1421, maxAtk: 1450, mAtk: 1436, attackType: "Strike" }, -{ itemId: 202128, className: "MAC02_128", name: "Vienie Fedimian Club", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, -{ itemId: 202129, className: "MAC02_129", name: "Slaake Rune Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, -{ itemId: 202130, className: "MAC02_130", name: "Lightning Spiked Club", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, -{ itemId: 202131, className: "MAC02_131", name: "Lumas Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 3104, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, -{ itemId: 202132, className: "MAC02_132", name: "Magi Stirus Hammer", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1421, maxAtk: 1450, mAtk: 1436, attackType: "Strike" }, -{ itemId: 202133, className: "MAC02_133", name: "Vienie War Hammer", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1421, maxAtk: 1450, mAtk: 1436, attackType: "Strike" }, -{ itemId: 202134, className: "MAC02_134", name: "Eki Sledgehammer", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1421, maxAtk: 1450, mAtk: 1436, attackType: "Strike" }, -{ itemId: 202135, className: "MAC02_135", name: "Dark Burawa", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Mace", equipType2: "Mace", minLevel: 220, minAtk: 1830, maxAtk: 1866, mAtk: 1848, attackType: "Strike" }, -{ itemId: 202136, className: "MAC02_136", name: "Artie Battle Hammer", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Mace", equipType2: "Mace", minLevel: 220, minAtk: 1830, maxAtk: 1866, mAtk: 1848, addMDef: 14, attackType: "Strike" }, -{ itemId: 202137, className: "MAC02_137", name: "Didel Burawa", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Mace", equipType2: "Mace", minLevel: 220, minAtk: 1830, maxAtk: 1866, mAtk: 1848, attackType: "Strike" }, -{ itemId: 202138, className: "MAC02_138", name: "Supportive Fedimian Club", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, -{ itemId: 202150, className: "MAC02_150", name: "Tevhrin Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 220, minAtk: 1830, maxAtk: 1866, mAtk: 1848, attackType: "Strike" }, -{ itemId: 202151, className: "MAC02_151", name: "(Faded) Migantis Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Mace", equipType2: "Mace", minLevel: 270, minAtk: 2238, maxAtk: 2283, mAtk: 2261, attackType: "Strike" }, -{ itemId: 202152, className: "MAC02_152", name: "(Faded) Pevordimas Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Mace", equipType2: "Mace", minLevel: 315, minAtk: 2605, maxAtk: 2658, mAtk: 2632, attackType: "Strike" }, -{ itemId: 202153, className: "MAC02_153", name: "Krendall Mace", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, -{ itemId: 202154, className: "MAC02_154", name: "Reine Mace", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1421, maxAtk: 1450, mAtk: 1436, attackType: "Strike" }, -{ itemId: 202155, className: "MAC02_155", name: "Sketis Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, -{ itemId: 202156, className: "MAC02_156", name: "Pajoritas Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 220, minAtk: 1830, maxAtk: 1866, mAtk: 1848, attackType: "Strike" }, -{ itemId: 202157, className: "MAC02_157", name: "Migantis Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 270, minAtk: 2238, maxAtk: 2283, mAtk: 2261, attackType: "Strike" }, -{ itemId: 202158, className: "MAC02_158", name: "Pevordimas Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 315, minAtk: 2605, maxAtk: 2658, mAtk: 2632, attackType: "Strike" }, -{ itemId: 202159, className: "MAC02_159", name: "Raffye Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 350, minAtk: 2891, maxAtk: 2950, mAtk: 2921, attackType: "Strike" }, -{ itemId: 202160, className: "MAC02_160", name: "Zvaigzde Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, minAtk: 3136, maxAtk: 3200, mAtk: 3168, attackType: "Strike" }, -{ itemId: 202161, className: "MAC02_161", name: "Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 3300, maxAtk: 3366, mAtk: 3333, attackType: "Strike" }, -{ itemId: 203101, className: "MAC03_101", name: "Holy Smasher", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 395, maxAtk: 403, mAtk: 399, attackType: "Strike" }, -{ itemId: 203102, className: "MAC03_102", name: "Kaloo Hammer", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4365, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1114, maxAtk: 1137, mAtk: 1125, attackType: "Strike" }, -{ itemId: 203103, className: "MAC03_103", name: "Drake Tail", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1563, maxAtk: 1595, mAtk: 1579, attackType: "Strike" }, -{ itemId: 203104, className: "MAC03_104", name: "Royal Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 3640, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 395, maxAtk: 403, mAtk: 399, attackType: "Strike" }, -{ itemId: 203105, className: "MAC03_105", name: "Vubbe Morning Star", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, minAtk: 171, maxAtk: 174, mAtk: 172, attackType: "Strike" }, -{ itemId: 203106, className: "MAC03_106", name: "Deathweaver Club", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, minAtk: 171, maxAtk: 174, mAtk: 172, attackType: "Strike" }, -{ itemId: 203107, className: "MAC03_107", name: "Chapparition Mace", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 395, maxAtk: 403, mAtk: 399, attackType: "Strike" }, -{ itemId: 203108, className: "MAC03_108", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 7936, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1563, maxAtk: 1595, mAtk: 1579, attackType: "Strike" }, -{ itemId: 203109, className: "MAC03_109", name: "noname", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1114, maxAtk: 1137, mAtk: 1125, attackType: "Strike" }, -{ itemId: 203110, className: "MAC03_110", name: "Iron Fist", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 32673, sellPrice: 9760, equipType1: "Mace", equipType2: "Mace", minLevel: 220, minAtk: 2012, maxAtk: 2053, mAtk: 2033, attackType: "Strike" }, -{ itemId: 203111, className: "MAC03_111", name: "Seimos Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1114, maxAtk: 1137, mAtk: 1125, attackType: "Strike" }, -{ itemId: 203112, className: "MAC03_112", name: "noname", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1114, maxAtk: 1137, mAtk: 1125, attackType: "Strike" }, -{ itemId: 203113, className: "MAC03_113", name: "Magas Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1563, maxAtk: 1595, mAtk: 1579, addDef: 11, attackType: "Strike" }, -{ itemId: 203114, className: "MAC03_114", name: "noname", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1563, maxAtk: 1595, mAtk: 1579, attackType: "Strike" }, -{ itemId: 203115, className: "MAC03_115", name: "noname", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 220, minAtk: 2012, maxAtk: 2053, mAtk: 2033, attackType: "Strike" }, -{ itemId: 203116, className: "MAC03_116", name: "Pensara Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 220, minAtk: 2012, maxAtk: 2053, mAtk: 2033, addMDef: 17, attackType: "Strike" }, -{ itemId: 203201, className: "MAC03_201", name: "Aghaas Breaker", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Mace", equipType2: "Mace", minLevel: 220, minAtk: 2012, maxAtk: 2053, mAtk: 2033, addDef: 11, attackType: "Strike" }, -{ itemId: 203202, className: "MAC03_202", name: "Vieretta Mace", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Mace", equipType2: "Mace", minLevel: 270, minAtk: 2462, maxAtk: 2511, mAtk: 2487, attackType: "Strike" }, -{ itemId: 203203, className: "MAC03_203", name: "Attilla", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Mace", equipType2: "Mace", minLevel: 270, minAtk: 2462, maxAtk: 2511, mAtk: 2487, attackType: "Strike", holyRes: 181 }, -{ itemId: 203204, className: "MAC03_204", name: "Vienarazis Mace", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Mace", equipType2: "Mace", minLevel: 315, minAtk: 2866, maxAtk: 2924, mAtk: 2895, addMinAtk: 168, addMaxAtk: 320, attackType: "Strike" }, -{ itemId: 203301, className: "MAC03_301", name: "(Faded) Krendall Mace", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1114, maxAtk: 1137, mAtk: 1125, addMinAtk: 64, addMaxAtk: 80, attackType: "Strike" }, -{ itemId: 203302, className: "MAC03_302", name: "(Faded) Reine Mace", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 24252, sellPrice: 3546, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1563, maxAtk: 1595, mAtk: 1579, attackType: "Strike" }, -{ itemId: 203303, className: "MAC03_303", name: "(Faded) Sketis Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 710, maxAtk: 724, mAtk: 717, attackType: "Strike" }, -{ itemId: 203304, className: "MAC03_304", name: "(Faded) Pajoritas Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 220, minAtk: 2012, maxAtk: 2053, mAtk: 2033, attackType: "Strike" }, -{ itemId: 203305, className: "MAC03_305", name: "(Faded) Purine Migantis Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Mace", equipType2: "Mace", minLevel: 270, minAtk: 2462, maxAtk: 2511, mAtk: 2487, attackType: "Strike" }, -{ itemId: 203306, className: "MAC03_306", name: "(Faded) Purine Pevordimas Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Mace", equipType2: "Mace", minLevel: 315, minAtk: 2866, maxAtk: 2924, mAtk: 2895, attackType: "Strike" }, -{ itemId: 203307, className: "MAC03_307", name: "Berthas Krendall Mace", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1114, maxAtk: 1137, mAtk: 1125, attackType: "Strike" }, -{ itemId: 203308, className: "MAC03_308", name: "Berthas Reine Mace", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1563, maxAtk: 1595, mAtk: 1579, attackType: "Strike" }, -{ itemId: 203309, className: "MAC03_309", name: "Berthas Sketis Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 710, maxAtk: 724, mAtk: 717, attackType: "Strike" }, -{ itemId: 203310, className: "MAC03_310", name: "Berthas Pajoritas Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 220, minAtk: 2012, maxAtk: 2053, mAtk: 2033, attackType: "Strike" }, -{ itemId: 203311, className: "MAC03_311", name: "Berthas Migantis Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 270, minAtk: 2462, maxAtk: 2511, mAtk: 2487, attackType: "Strike" }, -{ itemId: 203312, className: "MAC03_312", name: "Berthas Pevordimas Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 315, minAtk: 2866, maxAtk: 2924, mAtk: 2895, attackType: "Strike" }, -{ itemId: 203313, className: "MAC03_313", name: "Berthas Raffye Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 350, minAtk: 3180, maxAtk: 3245, mAtk: 3213, attackType: "Strike" }, -{ itemId: 203314, className: "MAC03_314", name: "Berthas Zvaigzde Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, minAtk: 3450, maxAtk: 3520, mAtk: 3485, attackType: "Strike" }, -{ itemId: 203315, className: "MAC03_315", name: "Berthas Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 3630, maxAtk: 3703, mAtk: 3666, attackType: "Strike" }, -{ itemId: 203316, className: "MAC03_316", name: "Berthas Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 430, minAtk: 3899, maxAtk: 3978, mAtk: 3939, attackType: "Strike" }, -{ itemId: 204101, className: "MAC04_101", name: "Stunner", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 15520, sellPrice: 3104, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1266, maxAtk: 1292, mAtk: 1279, attackType: "Strike" }, -{ itemId: 204102, className: "MAC04_102", name: "Valia", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1266, maxAtk: 1292, mAtk: 1279, addMDef: 11, attackType: "Strike" }, -{ itemId: 204103, className: "MAC04_103", name: "Spearfish Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, minAtk: 449, maxAtk: 458, mAtk: 454, attackType: "Strike" }, -{ itemId: 204104, className: "MAC04_104", name: "Toy Hammer", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 807, maxAtk: 823, mAtk: 815, attackType: "Strike" }, -{ itemId: 204105, className: "MAC04_105", name: "Ruma Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1266, maxAtk: 1292, mAtk: 1279, attackType: "Strike" }, -{ itemId: 204106, className: "MAC04_106", name: "Galatunis Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 7936, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1266, maxAtk: 1292, mAtk: 1279, attackType: "Strike" }, -{ itemId: 204107, className: "MAC04_107", name: "noname", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1776, maxAtk: 1812, mAtk: 1794, attackType: "Strike" }, -{ itemId: 204108, className: "MAC04_108", name: "Catacombs Club", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1776, maxAtk: 1812, mAtk: 1794, attackType: "Strike" }, -{ itemId: 204109, className: "MAC04_109", name: "Lolopanther Club", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Mace", equipType2: "Mace", minLevel: 270, minAtk: 3581, maxAtk: 3653, mAtk: 3617, attackType: "Strike" }, -{ itemId: 204110, className: "MAC04_110", name: "Solmiki Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 12952, equipType1: "Mace", equipType2: "Mace", minLevel: 330, minAtk: 4365, maxAtk: 4453, mAtk: 4409, attackType: "Strike" }, -{ itemId: 204111, className: "MAC04_111", name: "Skull Smasher", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Mace", equipType2: "Mace", minLevel: 315, minAtk: 3257, maxAtk: 3323, mAtk: 3290, attackType: "Strike" }, -{ itemId: 204112, className: "MAC04_112", name: "Primus Krendall Mace", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1266, maxAtk: 1292, mAtk: 1279, attackType: "Strike" }, -{ itemId: 204113, className: "MAC04_113", name: "Primus Reine Mace", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 170, minAtk: 1776, maxAtk: 1812, mAtk: 1794, attackType: "Strike" }, -{ itemId: 204114, className: "MAC04_114", name: "Primus Sketis Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 75, minAtk: 807, maxAtk: 823, mAtk: 815, attackType: "Strike" }, -{ itemId: 204115, className: "MAC04_115", name: "Primus Pajoritas Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 220, minAtk: 2287, maxAtk: 2333, mAtk: 2310, attackType: "Strike" }, -{ itemId: 204116, className: "MAC04_116", name: "Primus Migantis Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 270, minAtk: 2797, maxAtk: 2854, mAtk: 2826, attackType: "Strike" }, -{ itemId: 204117, className: "MAC04_117", name: "Primus Pevordimas Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 315, minAtk: 3257, maxAtk: 3323, mAtk: 3290, attackType: "Strike" }, -{ itemId: 204118, className: "MAC04_118", name: "Primus Raffye Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 350, minAtk: 3614, maxAtk: 3687, mAtk: 3651, attackType: "Strike" }, -{ itemId: 204119, className: "MAC04_119", name: "Masinios Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 350, minAtk: 3614, maxAtk: 3687, mAtk: 3651, attackType: "Strike" }, -{ itemId: 204120, className: "MAC04_120", name: "Primus Zvaigzde Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, -{ itemId: 204121, className: "MAC04_121", name: "Wastrel Zvaigzde Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, -{ itemId: 204122, className: "MAC04_122", name: "Asio Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, -{ itemId: 204123, className: "MAC04_123", name: "Primus Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 4125, maxAtk: 4208, mAtk: 4166, attackType: "Strike" }, -{ itemId: 204124, className: "MAC04_124", name: "Skiaclipse Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 4125, maxAtk: 4208, mAtk: 4166, attackType: "Strike" }, -{ itemId: 204125, className: "MAC04_125", name: "Skiaclipse Maul", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 4125, maxAtk: 4208, mAtk: 4166, attackType: "Strike" }, -{ itemId: 204126, className: "MAC04_126", name: "Moringponia Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 4125, maxAtk: 4208, mAtk: 4166, addDef: 410, attackType: "Strike" }, -{ itemId: 204127, className: "MAC04_127", name: "Misrus Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 4125, maxAtk: 4208, mAtk: 4166, addMDef: 398, attackType: "Strike" }, -{ itemId: 204128, className: "MAC04_128", name: "Primus Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 430, minAtk: 4431, maxAtk: 4520, mAtk: 4476, attackType: "Strike" }, -{ itemId: 205101, className: "MAC05_101", name: "Velcoffer Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 360, minAtk: 4757, maxAtk: 4853, mAtk: 4805, attackType: "Strike" }, -{ itemId: 205102, className: "MAC05_102", name: "Velcoffer Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 360, minAtk: 4757, maxAtk: 4853, mAtk: 4805, attackType: "Strike" }, -{ itemId: 205103, className: "MAC05_103", name: "Savinose Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, -{ itemId: 205104, className: "MAC05_104", name: "Skiaclipse Varna Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, -{ itemId: 210100, className: "TMAC01_101", name: "Two-handed Battle Maul", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 2939, equipType1: "THMace", equipType2: "Mace", minLevel: 75, minAtk: 624, maxAtk: 763, mAtk: 693, attackType: "Strike" }, -{ itemId: 210101, className: "TMAC01_102", name: "Two-handed Rune Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THMace", equipType2: "Mace", minLevel: 120, minAtk: 979, maxAtk: 1197, mAtk: 1088, attackType: "Strike" }, -{ itemId: 210200, className: "TMAC02_101", name: "(Faded) Migantis Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THMace", equipType2: "Mace", minLevel: 270, minAtk: 2404, maxAtk: 2939, mAtk: 2671, attackType: "Strike" }, -{ itemId: 210201, className: "TMAC02_102", name: "(Faded) Pevordimas Two-handed Mace", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THMace", equipType2: "Mace", minLevel: 315, minAtk: 2799, maxAtk: 3421, mAtk: 3110, attackType: "Strike" }, -{ itemId: 210202, className: "TMAC02_103", name: "Krendall Two-handed Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 120, minAtk: 1088, maxAtk: 1330, mAtk: 1209, attackType: "Strike" }, -{ itemId: 210203, className: "TMAC02_104", name: "Reine Two-handed Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 170, minAtk: 1527, maxAtk: 1866, mAtk: 1696, attackType: "Strike" }, -{ itemId: 210204, className: "TMAC02_105", name: "Pajoritas Two-Handed Mace", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 220, minAtk: 1966, maxAtk: 2402, mAtk: 2184, attackType: "Strike" }, -{ itemId: 210205, className: "TMAC02_106", name: "Migantis Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 270, minAtk: 2404, maxAtk: 2939, mAtk: 2671, attackType: "Strike" }, -{ itemId: 210206, className: "TMAC02_107", name: "Pevordimas Two-handed Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 315, minAtk: 2799, maxAtk: 3421, mAtk: 3110, attackType: "Strike" }, -{ itemId: 210207, className: "TMAC02_108", name: "Raffye Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 350, minAtk: 3106, maxAtk: 3797, mAtk: 3451, attackType: "Strike" }, -{ itemId: 210208, className: "TMAC02_109", name: "Zvaigzde Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, minAtk: 3370, maxAtk: 4118, mAtk: 3744, attackType: "Strike" }, -{ itemId: 210209, className: "TMAC02_110", name: "Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 3545, maxAtk: 4333, mAtk: 3939, attackType: "Strike" }, -{ itemId: 210300, className: "TMAC03_101", name: "(Faded) Krendall Two-handed Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24832, sellPrice: 2730, equipType1: "THMace", equipType2: "Mace", minLevel: 120, minAtk: 1197, maxAtk: 1463, mAtk: 1330, addMinAtk: 77, addMaxAtk: 96, attackType: "Strike" }, -{ itemId: 210301, className: "TMAC03_102", name: "(Faded) Reine Two-handed Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 38803, sellPrice: 3546, equipType1: "THMace", equipType2: "Mace", minLevel: 170, minAtk: 1680, maxAtk: 2053, mAtk: 1866, attackType: "Strike" }, -{ itemId: 210302, className: "TMAC03_103", name: "(Faded) Pajoritas Two-Handed Mace", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 52276, sellPrice: 6534, equipType1: "THMace", equipType2: "Mace", minLevel: 220, minAtk: 2162, maxAtk: 2643, mAtk: 2402, attackType: "Strike" }, -{ itemId: 210303, className: "TMAC03_104", name: "(Faded) Purine Migantis Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THMace", equipType2: "Mace", minLevel: 270, minAtk: 2645, maxAtk: 3233, mAtk: 2939, attackType: "Strike" }, -{ itemId: 210304, className: "TMAC03_105", name: "(Faded) Purine Pevordimas Two-handed Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THMace", equipType2: "Mace", minLevel: 315, minAtk: 3079, maxAtk: 3763, mAtk: 3421, attackType: "Strike" }, -{ itemId: 210305, className: "TMAC03_106", name: "Vienarazis Two-handed Mace", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "THMace", equipType2: "Mace", minLevel: 315, minAtk: 3079, maxAtk: 3763, mAtk: 3421, addMinAtk: 202, addMaxAtk: 384, attackType: "Strike" }, -{ itemId: 210306, className: "TMAC03_107", name: "Berthas Krendall Two-handed Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 120, minAtk: 1197, maxAtk: 1463, mAtk: 1330, attackType: "Strike" }, -{ itemId: 210307, className: "TMAC03_108", name: "Berthas Reine Two-handed Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 170, minAtk: 1680, maxAtk: 2053, mAtk: 1866, attackType: "Strike" }, -{ itemId: 210308, className: "TMAC03_109", name: "Berthas Pajoritas Two-handed Mace", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 220, minAtk: 2162, maxAtk: 2643, mAtk: 2402, attackType: "Strike" }, -{ itemId: 210309, className: "TMAC03_110", name: "Berthas Migantis Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 270, minAtk: 2645, maxAtk: 3233, mAtk: 2939, attackType: "Strike" }, -{ itemId: 210310, className: "TMAC03_111", name: "Berthas Pevordimas Two-handed Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 315, minAtk: 3079, maxAtk: 3763, mAtk: 3421, attackType: "Strike" }, -{ itemId: 210311, className: "TMAC03_112", name: "Berthas Raffye Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 350, minAtk: 3417, maxAtk: 4176, mAtk: 3797, attackType: "Strike" }, -{ itemId: 210312, className: "TMAC03_113", name: "Berthas Zvaigzde Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, minAtk: 3707, maxAtk: 4530, mAtk: 4118, attackType: "Strike" }, -{ itemId: 210313, className: "TMAC03_114", name: "Berthas Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 3900, maxAtk: 4766, mAtk: 4333, attackType: "Strike" }, -{ itemId: 210314, className: "TMAC03_115", name: "Berthas Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 430, minAtk: 4189, maxAtk: 5120, mAtk: 4655, attackType: "Strike" }, -{ itemId: 210400, className: "TMAC04_101", name: "Skull Breaker", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THMace", equipType2: "Mace", minLevel: 315, minAtk: 3499, maxAtk: 4277, mAtk: 3888, attackType: "Strike" }, -{ itemId: 210401, className: "TMAC04_102", name: "Primus Krendall Two-handed Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 120, minAtk: 1360, maxAtk: 1662, mAtk: 1511, attackType: "Strike" }, -{ itemId: 210402, className: "TMAC04_103", name: "Primus Reine Two-handed Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 170, minAtk: 1909, maxAtk: 2333, mAtk: 2121, attackType: "Strike" }, -{ itemId: 210403, className: "TMAC04_104", name: "Primus Pajoritas Two-handed Mace", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 220, minAtk: 2457, maxAtk: 3003, mAtk: 2730, attackType: "Strike" }, -{ itemId: 210404, className: "TMAC04_105", name: "Primus Migantis Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 270, minAtk: 3005, maxAtk: 3673, mAtk: 3339, attackType: "Strike" }, -{ itemId: 210405, className: "TMAC04_106", name: "Primus Pevordimas Two-handed Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 315, minAtk: 3499, maxAtk: 4277, mAtk: 3888, attackType: "Strike" }, -{ itemId: 210406, className: "TMAC04_107", name: "Primus Raffye Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 350, minAtk: 3883, maxAtk: 4746, mAtk: 4314, attackType: "Strike" }, -{ itemId: 210407, className: "TMAC04_108", name: "Masinios Two-handed Mace", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 350, minAtk: 3883, maxAtk: 4746, mAtk: 4314, attackType: "Strike" }, -{ itemId: 210409, className: "TMAC04_109", name: "Primus Zvaigzde Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, -{ itemId: 210410, className: "TMAC04_110", name: "Wastrel Zvaigzde Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, -{ itemId: 210411, className: "TMAC04_111", name: "Asio Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, -{ itemId: 210412, className: "TMAC04_112", name: "Primus Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike" }, -{ itemId: 210413, className: "TMAC04_113", name: "Skiaclipse Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 4431, maxAtk: 5416, mAtk: 4924, addMaxAtk: 762, attackType: "Strike" }, -{ itemId: 210414, className: "TMAC04_114", name: "Skiaclipse Two-handed Maul", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike" }, -{ itemId: 210415, className: "TMAC04_115", name: "Moringponia Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike", strike: 291 }, -{ itemId: 210416, className: "TMAC04_116", name: "Misrus Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike" }, -{ itemId: 210417, className: "TMAC04_117", name: "Primus Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 430, minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike" }, -{ itemId: 210500, className: "TMAC05_101", name: "Lolopanther Two-handed Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64000, sellPrice: 9760, equipType1: "THMace", equipType2: "Mace", minLevel: 270, minAtk: 3847, maxAtk: 4702, mAtk: 4274, attackType: "Strike" }, -{ itemId: 210501, className: "TMAC05_102", name: "Solmiki Two-handed Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 78080, sellPrice: 12952, equipType1: "THMace", equipType2: "Mace", minLevel: 330, minAtk: 4689, maxAtk: 5731, mAtk: 5210, attackType: "Strike" }, -{ itemId: 210502, className: "TMAC05_103", name: "Velcoffer Two-handed Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 360, minAtk: 5111, maxAtk: 6246, mAtk: 5678, attackType: "Strike" }, -{ itemId: 210504, className: "TMAC05_104", name: "Velcoffer Two-handed Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 360, minAtk: 5111, maxAtk: 6246, mAtk: 5678, attackType: "Strike" }, -{ itemId: 210505, className: "TMAC05_105", name: "Savinose Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, -{ itemId: 210506, className: "TMAC05_106", name: "Skiaclipse Varna Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, -{ itemId: 241101, className: "SPR01_101", name: "Short Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 294, maxAtk: 359, attackType: "Aries" }, -{ itemId: 241102, className: "SPR01_102", name: "Espontoon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1164, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 294, maxAtk: 359, attackType: "Aries" }, -{ itemId: 241103, className: "SPR01_103", name: "Winged Espontoon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 2419, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 294, maxAtk: 359, attackType: "Aries" }, -{ itemId: 241104, className: "SPR01_104", name: "Spontoon", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 3640, sellPrice: 2419, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 294, maxAtk: 359, attackType: "Aries" }, -{ itemId: 241105, className: "SPR01_105", name: "Hasta", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2419, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 528, maxAtk: 645, attackType: "Aries" }, -{ itemId: 241106, className: "SPR01_106", name: "Long Hasta", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 8583, sellPrice: 2939, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 528, maxAtk: 645, attackType: "Aries" }, -{ itemId: 241107, className: "SPR01_107", name: "Superior Short Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 921, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 294, maxAtk: 359, attackType: "Aries" }, -{ itemId: 241108, className: "SPR01_108", name: "Superior Espontoon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 2374, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 294, maxAtk: 359, attackType: "Aries" }, +{ itemId: 201137, className: "MAC01_137", name: "Burawa", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Mace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 1647, maxAtk: 1680, mAtk: 1663, attackType: "Strike" }, +{ itemId: 201138, className: "MAC01_138", name: "Superior Burawa", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Mace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 1647, maxAtk: 1680, mAtk: 1663, attackType: "Strike" }, +{ itemId: 201139, className: "MAC01_139", name: "(Faded) Replica Migantis Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 80000, sellPrice: 5000, equipType1: "Mace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 2014, maxAtk: 2055, mAtk: 2034, attackType: "Strike" }, +{ itemId: 201140, className: "MAC01_140", name: "(Faded) Replica Pevordimas Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 120000, sellPrice: 5000, equipType1: "Mace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 2345, maxAtk: 2392, mAtk: 2369, attackType: "Strike" }, +{ itemId: 202101, className: "MAC02_101", name: "Five Hammer", type: "Equip", group: "Weapon", weight: 55, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 359, maxAtk: 367, mAtk: 363, attackType: "Strike" }, +{ itemId: 202102, className: "MAC02_102", name: "Spiked Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 359, maxAtk: 367, mAtk: 363, attackType: "Aries", darkRes: 14 }, +{ itemId: 202103, className: "MAC02_103", name: "Shield Breaker", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, +{ itemId: 202104, className: "MAC02_104", name: "Skull Crusher", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, +{ itemId: 202105, className: "MAC02_105", name: "Cheminis Maul", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1746, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 359, maxAtk: 367, mAtk: 363, attackType: "Strike" }, +{ itemId: 202106, className: "MAC02_106", name: "Mauros Club", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 8583, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, +{ itemId: 202107, className: "MAC02_107", name: "Valtas Morning Star", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, +{ itemId: 202108, className: "MAC02_108", name: "Imperni Mace", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, +{ itemId: 202109, className: "MAC02_109", name: "Suncus Maul", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1421, maxAtk: 1450, mAtk: 1436, attackType: "Strike" }, +{ itemId: 202110, className: "MAC02_110", name: "Miner Hammer", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, equipExpGroup: "Equip", minAtk: 155, maxAtk: 158, mAtk: 157, middleSizeBonus: 13, attackType: "Strike" }, +{ itemId: 202111, className: "MAC02_111", name: "Soldier's Iron Club", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 106, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 90, maxAtk: 92, mAtk: 91, attackType: "Strike" }, +{ itemId: 202112, className: "MAC02_112", name: "Smith Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 41, maxAtk: 42, mAtk: 41, attackType: "Strike" }, +{ itemId: 202113, className: "MAC02_113", name: "Klavis Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, equipExpGroup: "Equip", minAtk: 155, maxAtk: 158, mAtk: 157, attackType: "Strike" }, +{ itemId: 202114, className: "MAC02_114", name: "Dio Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 2880, sellPrice: 728, equipType1: "Mace", equipType2: "Mace", minLevel: 15, equipExpGroup: "Equip", minAtk: 155, maxAtk: 158, mAtk: 157, attackType: "Strike" }, +{ itemId: 202115, className: "MAC02_115", name: "Thresh Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 3640, sellPrice: 1716, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 359, maxAtk: 367, mAtk: 363, attackType: "Strike" }, +{ itemId: 202116, className: "MAC02_116", name: "Sestas Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, +{ itemId: 202117, className: "MAC02_117", name: "Dratt Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, +{ itemId: 202118, className: "MAC02_118", name: "Aston Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1421, maxAtk: 1450, mAtk: 1436, attackType: "Strike" }, +{ itemId: 202119, className: "MAC02_119", name: "Krausas Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 359, maxAtk: 367, mAtk: 363, attackType: "Strike" }, +{ itemId: 202120, className: "MAC02_120", name: "Tenet Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 359, maxAtk: 367, mAtk: 363, attackType: "Strike" }, +{ itemId: 202121, className: "MAC02_121", name: "Patrice Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 359, maxAtk: 367, mAtk: 363, attackType: "Strike" }, +{ itemId: 202122, className: "MAC02_122", name: "Lukas Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, +{ itemId: 202123, className: "MAC02_123", name: "Philis Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, +{ itemId: 202124, className: "MAC02_124", name: "Escanciu Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, +{ itemId: 202125, className: "MAC02_125", name: "Krag Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, +{ itemId: 202126, className: "MAC02_126", name: "Pilgrim Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 2759, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, +{ itemId: 202127, className: "MAC02_127", name: "Istora Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 4335, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1421, maxAtk: 1450, mAtk: 1436, attackType: "Strike" }, +{ itemId: 202128, className: "MAC02_128", name: "Vienie Fedimian Club", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, +{ itemId: 202129, className: "MAC02_129", name: "Slaake Rune Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, +{ itemId: 202130, className: "MAC02_130", name: "Lightning Spiked Club", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, +{ itemId: 202131, className: "MAC02_131", name: "Lumas Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 3104, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, +{ itemId: 202132, className: "MAC02_132", name: "Magi Stirus Hammer", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1421, maxAtk: 1450, mAtk: 1436, attackType: "Strike" }, +{ itemId: 202133, className: "MAC02_133", name: "Vienie War Hammer", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1421, maxAtk: 1450, mAtk: 1436, attackType: "Strike" }, +{ itemId: 202134, className: "MAC02_134", name: "Eki Sledgehammer", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1421, maxAtk: 1450, mAtk: 1436, attackType: "Strike" }, +{ itemId: 202135, className: "MAC02_135", name: "Dark Burawa", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Mace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 1830, maxAtk: 1866, mAtk: 1848, attackType: "Strike" }, +{ itemId: 202136, className: "MAC02_136", name: "Artie Battle Hammer", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Mace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 1830, maxAtk: 1866, mAtk: 1848, addMDef: 14, attackType: "Strike" }, +{ itemId: 202137, className: "MAC02_137", name: "Didel Burawa", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Mace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 1830, maxAtk: 1866, mAtk: 1848, attackType: "Strike" }, +{ itemId: 202138, className: "MAC02_138", name: "Supportive Fedimian Club", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 8583, sellPrice: 3104, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, +{ itemId: 202150, className: "MAC02_150", name: "Tevhrin Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 1830, maxAtk: 1866, mAtk: 1848, attackType: "Strike" }, +{ itemId: 202151, className: "MAC02_151", name: "(Faded) Migantis Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Mace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 2238, maxAtk: 2283, mAtk: 2261, attackType: "Strike" }, +{ itemId: 202152, className: "MAC02_152", name: "(Faded) Pevordimas Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Mace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 2605, maxAtk: 2658, mAtk: 2632, attackType: "Strike" }, +{ itemId: 202153, className: "MAC02_153", name: "Krendall Mace", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1013, maxAtk: 1033, mAtk: 1023, attackType: "Strike" }, +{ itemId: 202154, className: "MAC02_154", name: "Reine Mace", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1421, maxAtk: 1450, mAtk: 1436, attackType: "Strike" }, +{ itemId: 202155, className: "MAC02_155", name: "Sketis Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 645, maxAtk: 658, mAtk: 652, attackType: "Strike" }, +{ itemId: 202156, className: "MAC02_156", name: "Pajoritas Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 1830, maxAtk: 1866, mAtk: 1848, attackType: "Strike" }, +{ itemId: 202157, className: "MAC02_157", name: "Migantis Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 2238, maxAtk: 2283, mAtk: 2261, attackType: "Strike" }, +{ itemId: 202158, className: "MAC02_158", name: "Pevordimas Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 2605, maxAtk: 2658, mAtk: 2632, attackType: "Strike" }, +{ itemId: 202159, className: "MAC02_159", name: "Raffye Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 350, equipExpGroup: "Equip", minAtk: 2891, maxAtk: 2950, mAtk: 2921, attackType: "Strike" }, +{ itemId: 202160, className: "MAC02_160", name: "Zvaigzde Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 3136, maxAtk: 3200, mAtk: 3168, attackType: "Strike" }, +{ itemId: 202161, className: "MAC02_161", name: "Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 3300, maxAtk: 3366, mAtk: 3333, attackType: "Strike" }, +{ itemId: 203101, className: "MAC03_101", name: "Holy Smasher", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 395, maxAtk: 403, mAtk: 399, attackType: "Strike" }, +{ itemId: 203102, className: "MAC03_102", name: "Kaloo Hammer", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 15520, sellPrice: 4365, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1114, maxAtk: 1137, mAtk: 1125, attackType: "Strike" }, +{ itemId: 203103, className: "MAC03_103", name: "Drake Tail", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1563, maxAtk: 1595, mAtk: 1579, attackType: "Strike" }, +{ itemId: 203104, className: "MAC03_104", name: "Royal Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 3640, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 395, maxAtk: 403, mAtk: 399, attackType: "Strike" }, +{ itemId: 203105, className: "MAC03_105", name: "Vubbe Morning Star", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, equipExpGroup: "Equip", minAtk: 171, maxAtk: 174, mAtk: 172, attackType: "Strike" }, +{ itemId: 203106, className: "MAC03_106", name: "Deathweaver Club", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Mace", equipType2: "Mace", minLevel: 15, equipExpGroup: "Equip", minAtk: 171, maxAtk: 174, mAtk: 172, attackType: "Strike" }, +{ itemId: 203107, className: "MAC03_107", name: "Chapparition Mace", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 395, maxAtk: 403, mAtk: 399, attackType: "Strike" }, +{ itemId: 203108, className: "MAC03_108", name: "noname", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 24252, sellPrice: 7936, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1563, maxAtk: 1595, mAtk: 1579, attackType: "Strike" }, +{ itemId: 203109, className: "MAC03_109", name: "noname", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 15520, sellPrice: 4850, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1114, maxAtk: 1137, mAtk: 1125, attackType: "Strike" }, +{ itemId: 203110, className: "MAC03_110", name: "Iron Fist", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 32673, sellPrice: 9760, equipType1: "Mace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 2012, maxAtk: 2053, mAtk: 2033, attackType: "Strike" }, +{ itemId: 203111, className: "MAC03_111", name: "Seimos Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1114, maxAtk: 1137, mAtk: 1125, attackType: "Strike" }, +{ itemId: 203112, className: "MAC03_112", name: "noname", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1114, maxAtk: 1137, mAtk: 1125, attackType: "Strike" }, +{ itemId: 203113, className: "MAC03_113", name: "Magas Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1563, maxAtk: 1595, mAtk: 1579, addDef: 11, attackType: "Strike" }, +{ itemId: 203114, className: "MAC03_114", name: "noname", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1563, maxAtk: 1595, mAtk: 1579, attackType: "Strike" }, +{ itemId: 203115, className: "MAC03_115", name: "noname", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 2012, maxAtk: 2053, mAtk: 2033, attackType: "Strike" }, +{ itemId: 203116, className: "MAC03_116", name: "Pensara Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 2012, maxAtk: 2053, mAtk: 2033, addMDef: 17, attackType: "Strike" }, +{ itemId: 203201, className: "MAC03_201", name: "Aghaas Breaker", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Mace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 2012, maxAtk: 2053, mAtk: 2033, addDef: 11, attackType: "Strike" }, +{ itemId: 203202, className: "MAC03_202", name: "Vieretta Mace", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Mace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 2462, maxAtk: 2511, mAtk: 2487, attackType: "Strike" }, +{ itemId: 203203, className: "MAC03_203", name: "Attilla", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Mace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 2462, maxAtk: 2511, mAtk: 2487, attackType: "Strike", holyRes: 181 }, +{ itemId: 203204, className: "MAC03_204", name: "Vienarazis Mace", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Mace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 2866, maxAtk: 2924, mAtk: 2895, addMinAtk: 168, addMaxAtk: 320, attackType: "Strike" }, +{ itemId: 203301, className: "MAC03_301", name: "(Faded) Krendall Mace", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1114, maxAtk: 1137, mAtk: 1125, addMinAtk: 64, addMaxAtk: 80, attackType: "Strike" }, +{ itemId: 203302, className: "MAC03_302", name: "(Faded) Reine Mace", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 24252, sellPrice: 3546, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1563, maxAtk: 1595, mAtk: 1579, attackType: "Strike" }, +{ itemId: 203303, className: "MAC03_303", name: "(Faded) Sketis Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 710, maxAtk: 724, mAtk: 717, attackType: "Strike" }, +{ itemId: 203304, className: "MAC03_304", name: "(Faded) Pajoritas Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 2012, maxAtk: 2053, mAtk: 2033, attackType: "Strike" }, +{ itemId: 203305, className: "MAC03_305", name: "(Faded) Purine Migantis Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Mace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 2462, maxAtk: 2511, mAtk: 2487, attackType: "Strike" }, +{ itemId: 203306, className: "MAC03_306", name: "(Faded) Purine Pevordimas Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Mace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 2866, maxAtk: 2924, mAtk: 2895, attackType: "Strike" }, +{ itemId: 203307, className: "MAC03_307", name: "Berthas Krendall Mace", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1114, maxAtk: 1137, mAtk: 1125, attackType: "Strike" }, +{ itemId: 203308, className: "MAC03_308", name: "Berthas Reine Mace", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1563, maxAtk: 1595, mAtk: 1579, attackType: "Strike" }, +{ itemId: 203309, className: "MAC03_309", name: "Berthas Sketis Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 710, maxAtk: 724, mAtk: 717, attackType: "Strike" }, +{ itemId: 203310, className: "MAC03_310", name: "Berthas Pajoritas Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 2012, maxAtk: 2053, mAtk: 2033, attackType: "Strike" }, +{ itemId: 203311, className: "MAC03_311", name: "Berthas Migantis Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 2462, maxAtk: 2511, mAtk: 2487, attackType: "Strike" }, +{ itemId: 203312, className: "MAC03_312", name: "Berthas Pevordimas Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 2866, maxAtk: 2924, mAtk: 2895, attackType: "Strike" }, +{ itemId: 203313, className: "MAC03_313", name: "Berthas Raffye Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 350, equipExpGroup: "Equip", minAtk: 3180, maxAtk: 3245, mAtk: 3213, attackType: "Strike" }, +{ itemId: 203314, className: "MAC03_314", name: "Berthas Zvaigzde Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 3450, maxAtk: 3520, mAtk: 3485, attackType: "Strike" }, +{ itemId: 203315, className: "MAC03_315", name: "Berthas Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 3630, maxAtk: 3703, mAtk: 3666, attackType: "Strike" }, +{ itemId: 203316, className: "MAC03_316", name: "Berthas Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 430, equipExpGroup: "Equip", minAtk: 3899, maxAtk: 3978, mAtk: 3939, attackType: "Strike" }, +{ itemId: 204101, className: "MAC04_101", name: "Stunner", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 15520, sellPrice: 3104, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1266, maxAtk: 1292, mAtk: 1279, attackType: "Strike" }, +{ itemId: 204102, className: "MAC04_102", name: "Valia", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 15520, sellPrice: 3168, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1266, maxAtk: 1292, mAtk: 1279, addMDef: 11, attackType: "Strike" }, +{ itemId: 204103, className: "MAC04_103", name: "Spearfish Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 449, maxAtk: 458, mAtk: 454, attackType: "Strike" }, +{ itemId: 204104, className: "MAC04_104", name: "Toy Hammer", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 807, maxAtk: 823, mAtk: 815, attackType: "Strike" }, +{ itemId: 204105, className: "MAC04_105", name: "Ruma Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 4335, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1266, maxAtk: 1292, mAtk: 1279, attackType: "Strike" }, +{ itemId: 204106, className: "MAC04_106", name: "Galatunis Mace", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 7936, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1266, maxAtk: 1292, mAtk: 1279, attackType: "Strike" }, +{ itemId: 204107, className: "MAC04_107", name: "noname", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1776, maxAtk: 1812, mAtk: 1794, attackType: "Strike" }, +{ itemId: 204108, className: "MAC04_108", name: "Catacombs Club", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1776, maxAtk: 1812, mAtk: 1794, attackType: "Strike" }, +{ itemId: 204109, className: "MAC04_109", name: "Lolopanther Club", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Mace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 3581, maxAtk: 3653, mAtk: 3617, attackType: "Strike" }, +{ itemId: 204110, className: "MAC04_110", name: "Solmiki Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 12952, equipType1: "Mace", equipType2: "Mace", minLevel: 330, equipExpGroup: "Equip", minAtk: 4365, maxAtk: 4453, mAtk: 4409, attackType: "Strike" }, +{ itemId: 204111, className: "MAC04_111", name: "Skull Smasher", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Mace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 3257, maxAtk: 3323, mAtk: 3290, attackType: "Strike" }, +{ itemId: 204112, className: "MAC04_112", name: "Primus Krendall Mace", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1266, maxAtk: 1292, mAtk: 1279, attackType: "Strike" }, +{ itemId: 204113, className: "MAC04_113", name: "Primus Reine Mace", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1776, maxAtk: 1812, mAtk: 1794, attackType: "Strike" }, +{ itemId: 204114, className: "MAC04_114", name: "Primus Sketis Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 807, maxAtk: 823, mAtk: 815, attackType: "Strike" }, +{ itemId: 204115, className: "MAC04_115", name: "Primus Pajoritas Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 2287, maxAtk: 2333, mAtk: 2310, attackType: "Strike" }, +{ itemId: 204116, className: "MAC04_116", name: "Primus Migantis Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 2797, maxAtk: 2854, mAtk: 2826, attackType: "Strike" }, +{ itemId: 204117, className: "MAC04_117", name: "Primus Pevordimas Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 3257, maxAtk: 3323, mAtk: 3290, attackType: "Strike" }, +{ itemId: 204118, className: "MAC04_118", name: "Primus Raffye Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 350, equipExpGroup: "Equip", minAtk: 3614, maxAtk: 3687, mAtk: 3651, attackType: "Strike" }, +{ itemId: 204119, className: "MAC04_119", name: "Masinios Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 350, equipExpGroup: "Equip", minAtk: 3614, maxAtk: 3687, mAtk: 3651, attackType: "Strike" }, +{ itemId: 204120, className: "MAC04_120", name: "Primus Zvaigzde Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, +{ itemId: 204121, className: "MAC04_121", name: "Wastrel Zvaigzde Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, +{ itemId: 204122, className: "MAC04_122", name: "Asio Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, +{ itemId: 204123, className: "MAC04_123", name: "Primus Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4125, maxAtk: 4208, mAtk: 4166, attackType: "Strike" }, +{ itemId: 204124, className: "MAC04_124", name: "Skiaclipse Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4125, maxAtk: 4208, mAtk: 4166, attackType: "Strike" }, +{ itemId: 204125, className: "MAC04_125", name: "Skiaclipse Maul", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4125, maxAtk: 4208, mAtk: 4166, attackType: "Strike" }, +{ itemId: 204126, className: "MAC04_126", name: "Moringponia Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4125, maxAtk: 4208, mAtk: 4166, addDef: 410, attackType: "Strike" }, +{ itemId: 204127, className: "MAC04_127", name: "Misrus Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4125, maxAtk: 4208, mAtk: 4166, addMDef: 398, attackType: "Strike" }, +{ itemId: 204128, className: "MAC04_128", name: "Primus Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 430, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 4520, mAtk: 4476, attackType: "Strike" }, +{ itemId: 205101, className: "MAC05_101", name: "Velcoffer Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 360, equipExpGroup: "Equip", minAtk: 4757, maxAtk: 4853, mAtk: 4805, attackType: "Strike" }, +{ itemId: 205102, className: "MAC05_102", name: "Velcoffer Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 360, equipExpGroup: "Equip", minAtk: 4757, maxAtk: 4853, mAtk: 4805, attackType: "Strike" }, +{ itemId: 205103, className: "MAC05_103", name: "Savinose Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, +{ itemId: 205104, className: "MAC05_104", name: "Skiaclipse Varna Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, +{ itemId: 210100, className: "TMAC01_101", name: "Two-handed Battle Maul", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 2939, equipType1: "THMace", equipType2: "Mace", minLevel: 75, equipExpGroup: "Equip", minAtk: 624, maxAtk: 763, mAtk: 693, attackType: "Strike" }, +{ itemId: 210101, className: "TMAC01_102", name: "Two-handed Rune Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THMace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 979, maxAtk: 1197, mAtk: 1088, attackType: "Strike" }, +{ itemId: 210200, className: "TMAC02_101", name: "(Faded) Migantis Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THMace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 2404, maxAtk: 2939, mAtk: 2671, attackType: "Strike" }, +{ itemId: 210201, className: "TMAC02_102", name: "(Faded) Pevordimas Two-handed Mace", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THMace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 2799, maxAtk: 3421, mAtk: 3110, attackType: "Strike" }, +{ itemId: 210202, className: "TMAC02_103", name: "Krendall Two-handed Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1088, maxAtk: 1330, mAtk: 1209, attackType: "Strike" }, +{ itemId: 210203, className: "TMAC02_104", name: "Reine Two-handed Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1527, maxAtk: 1866, mAtk: 1696, attackType: "Strike" }, +{ itemId: 210204, className: "TMAC02_105", name: "Pajoritas Two-Handed Mace", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 1966, maxAtk: 2402, mAtk: 2184, attackType: "Strike" }, +{ itemId: 210205, className: "TMAC02_106", name: "Migantis Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 2404, maxAtk: 2939, mAtk: 2671, attackType: "Strike" }, +{ itemId: 210206, className: "TMAC02_107", name: "Pevordimas Two-handed Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 2799, maxAtk: 3421, mAtk: 3110, attackType: "Strike" }, +{ itemId: 210207, className: "TMAC02_108", name: "Raffye Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 350, equipExpGroup: "Equip", minAtk: 3106, maxAtk: 3797, mAtk: 3451, attackType: "Strike" }, +{ itemId: 210208, className: "TMAC02_109", name: "Zvaigzde Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 3370, maxAtk: 4118, mAtk: 3744, attackType: "Strike" }, +{ itemId: 210209, className: "TMAC02_110", name: "Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 3545, maxAtk: 4333, mAtk: 3939, attackType: "Strike" }, +{ itemId: 210300, className: "TMAC03_101", name: "(Faded) Krendall Two-handed Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24832, sellPrice: 2730, equipType1: "THMace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1197, maxAtk: 1463, mAtk: 1330, addMinAtk: 77, addMaxAtk: 96, attackType: "Strike" }, +{ itemId: 210301, className: "TMAC03_102", name: "(Faded) Reine Two-handed Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 38803, sellPrice: 3546, equipType1: "THMace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1680, maxAtk: 2053, mAtk: 1866, attackType: "Strike" }, +{ itemId: 210302, className: "TMAC03_103", name: "(Faded) Pajoritas Two-Handed Mace", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 52276, sellPrice: 6534, equipType1: "THMace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 2162, maxAtk: 2643, mAtk: 2402, attackType: "Strike" }, +{ itemId: 210303, className: "TMAC03_104", name: "(Faded) Purine Migantis Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THMace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 2645, maxAtk: 3233, mAtk: 2939, attackType: "Strike" }, +{ itemId: 210304, className: "TMAC03_105", name: "(Faded) Purine Pevordimas Two-handed Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THMace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 3079, maxAtk: 3763, mAtk: 3421, attackType: "Strike" }, +{ itemId: 210305, className: "TMAC03_106", name: "Vienarazis Two-handed Mace", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "THMace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 3079, maxAtk: 3763, mAtk: 3421, addMinAtk: 202, addMaxAtk: 384, attackType: "Strike" }, +{ itemId: 210306, className: "TMAC03_107", name: "Berthas Krendall Two-handed Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1197, maxAtk: 1463, mAtk: 1330, attackType: "Strike" }, +{ itemId: 210307, className: "TMAC03_108", name: "Berthas Reine Two-handed Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1680, maxAtk: 2053, mAtk: 1866, attackType: "Strike" }, +{ itemId: 210308, className: "TMAC03_109", name: "Berthas Pajoritas Two-handed Mace", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 2162, maxAtk: 2643, mAtk: 2402, attackType: "Strike" }, +{ itemId: 210309, className: "TMAC03_110", name: "Berthas Migantis Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 2645, maxAtk: 3233, mAtk: 2939, attackType: "Strike" }, +{ itemId: 210310, className: "TMAC03_111", name: "Berthas Pevordimas Two-handed Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 3079, maxAtk: 3763, mAtk: 3421, attackType: "Strike" }, +{ itemId: 210311, className: "TMAC03_112", name: "Berthas Raffye Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 350, equipExpGroup: "Equip", minAtk: 3417, maxAtk: 4176, mAtk: 3797, attackType: "Strike" }, +{ itemId: 210312, className: "TMAC03_113", name: "Berthas Zvaigzde Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 3707, maxAtk: 4530, mAtk: 4118, attackType: "Strike" }, +{ itemId: 210313, className: "TMAC03_114", name: "Berthas Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 3900, maxAtk: 4766, mAtk: 4333, attackType: "Strike" }, +{ itemId: 210314, className: "TMAC03_115", name: "Berthas Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 430, equipExpGroup: "Equip", minAtk: 4189, maxAtk: 5120, mAtk: 4655, attackType: "Strike" }, +{ itemId: 210400, className: "TMAC04_101", name: "Skull Breaker", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THMace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 3499, maxAtk: 4277, mAtk: 3888, attackType: "Strike" }, +{ itemId: 210401, className: "TMAC04_102", name: "Primus Krendall Two-handed Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1360, maxAtk: 1662, mAtk: 1511, attackType: "Strike" }, +{ itemId: 210402, className: "TMAC04_103", name: "Primus Reine Two-handed Mace", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1909, maxAtk: 2333, mAtk: 2121, attackType: "Strike" }, +{ itemId: 210403, className: "TMAC04_104", name: "Primus Pajoritas Two-handed Mace", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 220, equipExpGroup: "Equip", minAtk: 2457, maxAtk: 3003, mAtk: 2730, attackType: "Strike" }, +{ itemId: 210404, className: "TMAC04_105", name: "Primus Migantis Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 3005, maxAtk: 3673, mAtk: 3339, attackType: "Strike" }, +{ itemId: 210405, className: "TMAC04_106", name: "Primus Pevordimas Two-handed Mace", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 3499, maxAtk: 4277, mAtk: 3888, attackType: "Strike" }, +{ itemId: 210406, className: "TMAC04_107", name: "Primus Raffye Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 350, equipExpGroup: "Equip", minAtk: 3883, maxAtk: 4746, mAtk: 4314, attackType: "Strike" }, +{ itemId: 210407, className: "TMAC04_108", name: "Masinios Two-handed Mace", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 350, equipExpGroup: "Equip", minAtk: 3883, maxAtk: 4746, mAtk: 4314, attackType: "Strike" }, +{ itemId: 210409, className: "TMAC04_109", name: "Primus Zvaigzde Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, +{ itemId: 210410, className: "TMAC04_110", name: "Wastrel Zvaigzde Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, +{ itemId: 210411, className: "TMAC04_111", name: "Asio Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, +{ itemId: 210412, className: "TMAC04_112", name: "Primus Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike" }, +{ itemId: 210413, className: "TMAC04_113", name: "Skiaclipse Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 5416, mAtk: 4924, addMaxAtk: 762, attackType: "Strike" }, +{ itemId: 210414, className: "TMAC04_114", name: "Skiaclipse Two-handed Maul", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike" }, +{ itemId: 210415, className: "TMAC04_115", name: "Moringponia Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike", strike: 291 }, +{ itemId: 210416, className: "TMAC04_116", name: "Misrus Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike" }, +{ itemId: 210417, className: "TMAC04_117", name: "Primus Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 430, equipExpGroup: "Equip", minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike" }, +{ itemId: 210500, className: "TMAC05_101", name: "Lolopanther Two-handed Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64000, sellPrice: 9760, equipType1: "THMace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 3847, maxAtk: 4702, mAtk: 4274, attackType: "Strike" }, +{ itemId: 210501, className: "TMAC05_102", name: "Solmiki Two-handed Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 78080, sellPrice: 12952, equipType1: "THMace", equipType2: "Mace", minLevel: 330, equipExpGroup: "Equip", minAtk: 4689, maxAtk: 5731, mAtk: 5210, attackType: "Strike" }, +{ itemId: 210502, className: "TMAC05_103", name: "Velcoffer Two-handed Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 360, equipExpGroup: "Equip", minAtk: 5111, maxAtk: 6246, mAtk: 5678, attackType: "Strike" }, +{ itemId: 210504, className: "TMAC05_104", name: "Velcoffer Two-handed Mace", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 360, equipExpGroup: "Equip", minAtk: 5111, maxAtk: 6246, mAtk: 5678, attackType: "Strike" }, +{ itemId: 210505, className: "TMAC05_105", name: "Savinose Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, +{ itemId: 210506, className: "TMAC05_106", name: "Skiaclipse Varna Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, +{ itemId: 241101, className: "SPR01_101", name: "Short Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 294, maxAtk: 359, attackType: "Aries" }, +{ itemId: 241102, className: "SPR01_102", name: "Espontoon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1164, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 294, maxAtk: 359, attackType: "Aries" }, +{ itemId: 241103, className: "SPR01_103", name: "Winged Espontoon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 2419, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 294, maxAtk: 359, attackType: "Aries" }, +{ itemId: 241104, className: "SPR01_104", name: "Spontoon", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 3640, sellPrice: 2419, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 294, maxAtk: 359, attackType: "Aries" }, +{ itemId: 241105, className: "SPR01_105", name: "Hasta", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2419, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 528, maxAtk: 645, attackType: "Aries" }, +{ itemId: 241106, className: "SPR01_106", name: "Long Hasta", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 8583, sellPrice: 2939, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 528, maxAtk: 645, attackType: "Aries" }, +{ itemId: 241107, className: "SPR01_107", name: "Superior Short Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 921, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 294, maxAtk: 359, attackType: "Aries" }, +{ itemId: 241108, className: "SPR01_108", name: "Superior Espontoon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 2374, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 294, maxAtk: 359, attackType: "Aries" }, { itemId: 241109, className: "SPR01_109", name: "Dunkel Short Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 921, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 294, maxAtk: 359, attackType: "Aries" }, { itemId: 241110, className: "SPR01_110", name: "Dunkel Espontoon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 921, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 294, maxAtk: 359, attackType: "Aries" }, { itemId: 241111, className: "SPR01_111", name: "Dunkel Hasta", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2419, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 528, maxAtk: 645, attackType: "Aries" }, -{ itemId: 241112, className: "SPR01_112", name: "Long Spoonton", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 4323, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 528, maxAtk: 645, attackType: "Aries" }, -{ itemId: 241113, className: "SPR01_113", name: "Alchupiz", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 4323, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 829, maxAtk: 1013, attackType: "Aries" }, -{ itemId: 241114, className: "SPR01_114", name: "Gelti Alchupiz", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 4368, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 829, maxAtk: 1013, attackType: "Aries" }, -{ itemId: 241115, className: "SPR01_115", name: "Winged Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 5068, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 829, maxAtk: 1013, attackType: "Aries" }, -{ itemId: 241116, className: "SPR01_116", name: "Breach Pike", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6887, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1163, maxAtk: 1421, attackType: "Aries" }, -{ itemId: 241117, className: "SPR01_117", name: "Langdebeve", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6936, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1163, maxAtk: 1421, attackType: "Aries" }, -{ itemId: 241118, className: "SPR01_118", name: "Chauve-souris", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 7760, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1163, maxAtk: 1421, attackType: "Aries" }, +{ itemId: 241112, className: "SPR01_112", name: "Long Spoonton", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 4323, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 528, maxAtk: 645, attackType: "Aries" }, +{ itemId: 241113, className: "SPR01_113", name: "Alchupiz", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 4323, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 829, maxAtk: 1013, attackType: "Aries" }, +{ itemId: 241114, className: "SPR01_114", name: "Gelti Alchupiz", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 4368, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 829, maxAtk: 1013, attackType: "Aries" }, +{ itemId: 241115, className: "SPR01_115", name: "Winged Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 5068, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 829, maxAtk: 1013, attackType: "Aries" }, +{ itemId: 241116, className: "SPR01_116", name: "Breach Pike", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6887, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1163, maxAtk: 1421, attackType: "Aries" }, +{ itemId: 241117, className: "SPR01_117", name: "Langdebeve", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6936, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1163, maxAtk: 1421, attackType: "Aries" }, +{ itemId: 241118, className: "SPR01_118", name: "Chauve-souris", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 7760, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1163, maxAtk: 1421, attackType: "Aries" }, { itemId: 241119, className: "SPR01_119", name: "Yorgis Alchupiz", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 4323, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 829, maxAtk: 1013, attackType: "Aries" }, -{ itemId: 241120, className: "SPR01_120", name: "Corsesca", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 10401, equipType1: "Spear", equipType2: "Spear", minLevel: 220, minAtk: 1497, maxAtk: 1830, attackType: "Aries" }, -{ itemId: 241121, className: "SPR01_121", name: "Superior Corsesca", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 10455, equipType1: "Spear", equipType2: "Spear", minLevel: 220, minAtk: 1497, maxAtk: 1830, attackType: "Aries" }, -{ itemId: 241122, className: "SPR01_122", name: "(Faded) Replica Migantis Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 80000, sellPrice: 5000, equipType1: "Spear", equipType2: "Spear", minLevel: 270, minAtk: 1831, maxAtk: 2238, attackType: "Aries" }, -{ itemId: 241123, className: "SPR01_123", name: "(Faded) Replica Pevordimas Spear", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 120000, sellPrice: 5000, equipType1: "Spear", equipType2: "Spear", minLevel: 315, minAtk: 2132, maxAtk: 2605, attackType: "Aries" }, -{ itemId: 241124, className: "SPR01_124", name: "Practice Short Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 294, maxAtk: 359, attackType: "Aries" }, -{ itemId: 241125, className: "SPR01_125", name: "Prati", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 220, minAtk: 1497, maxAtk: 1830, attackType: "Aries" }, -{ itemId: 242101, className: "SPR02_101", name: "Sauroter", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 921, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 327, maxAtk: 399, attackType: "Aries" }, -{ itemId: 242102, className: "SPR02_102", name: "Dory", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 327, maxAtk: 399, attackType: "Aries" }, -{ itemId: 242103, className: "SPR02_103", name: "Assegai", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 327, maxAtk: 399, attackType: "Aries" }, -{ itemId: 242104, className: "SPR02_104", name: "Cheminis Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 327, maxAtk: 399, attackType: "Aries" }, -{ itemId: 242105, className: "SPR02_105", name: "Grand Spontoon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 587, maxAtk: 717, attackType: "Aries" }, -{ itemId: 242106, className: "SPR02_106", name: "Zega Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 2730, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 921, maxAtk: 1125, attackType: "Aries" }, -{ itemId: 242107, className: "SPR02_107", name: "Harl Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 4274, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 921, maxAtk: 1125, attackType: "Aries" }, -{ itemId: 242108, className: "SPR02_108", name: "Chaser", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 4304, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1292, maxAtk: 1579, attackType: "Aries" }, -{ itemId: 242109, className: "SPR02_109", name: "Imperni Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 2673, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 587, maxAtk: 717, attackType: "Aries" }, -{ itemId: 242110, className: "SPR02_110", name: "Fedimian Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 587, maxAtk: 717, attackType: "Aries" }, -{ itemId: 242111, className: "SPR02_111", name: "Thresh Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 327, maxAtk: 399, attackType: "Aries" }, -{ itemId: 242112, className: "SPR02_112", name: "Sestas Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 587, maxAtk: 717, attackType: "Aries" }, -{ itemId: 242113, className: "SPR02_113", name: "Dratt Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 921, maxAtk: 1125, attackType: "Aries" }, -{ itemId: 242114, className: "SPR02_114", name: "Aston Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 4951, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1292, maxAtk: 1579, attackType: "Aries" }, -{ itemId: 242115, className: "SPR02_115", name: "Tenet Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 327, maxAtk: 399, attackType: "Aries" }, -{ itemId: 242116, className: "SPR02_116", name: "Patrice Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 327, maxAtk: 399, attackType: "Aries" }, -{ itemId: 242117, className: "SPR02_117", name: "Lukas Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 587, maxAtk: 717, attackType: "Aries" }, -{ itemId: 242118, className: "SPR02_118", name: "Philis Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 587, maxAtk: 717, attackType: "Aries" }, -{ itemId: 242119, className: "SPR02_119", name: "Escanciu Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 587, maxAtk: 717, attackType: "Aries" }, -{ itemId: 242120, className: "SPR02_120", name: "Krag Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 587, maxAtk: 717, attackType: "Aries" }, -{ itemId: 242121, className: "SPR02_121", name: "Pilgrim Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 921, maxAtk: 1125, attackType: "Aries" }, -{ itemId: 242122, className: "SPR02_122", name: "Istora Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 3136, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1292, maxAtk: 1579, attackType: "Aries" }, -{ itemId: 242123, className: "SPR02_123", name: "Hell's Alchupiz", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 921, maxAtk: 1125, attackType: "Aries" }, -{ itemId: 242124, className: "SPR02_124", name: "Hunting Gelti Alchupiz", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4368, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 921, maxAtk: 1125, attackType: "Aries" }, -{ itemId: 242125, className: "SPR02_125", name: "Jaas Winged Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 5017, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 921, maxAtk: 1125, smallSizeBonus: 45, attackType: "Aries" }, -{ itemId: 242126, className: "SPR02_126", name: "Lumas Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4323, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 921, maxAtk: 1125, attackType: "Aries" }, -{ itemId: 242127, className: "SPR02_127", name: "Artie Breach Pike", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6887, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1292, maxAtk: 1579, attackType: "Aries" }, -{ itemId: 242128, className: "SPR02_128", name: "Light Langdebeve", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6936, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1292, maxAtk: 1579, attackType: "Aries" }, -{ itemId: 242129, className: "SPR02_129", name: "Adata Chauve-souris", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 7814, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1292, maxAtk: 1579, attackType: "Aries" }, -{ itemId: 242130, className: "SPR02_130", name: "Slaake Corsesca", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 10401, equipType1: "Spear", equipType2: "Spear", minLevel: 220, minAtk: 1663, maxAtk: 2033, attackType: "Aries" }, -{ itemId: 242131, className: "SPR02_131", name: "Artie Hasta", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 10455, equipType1: "Spear", equipType2: "Spear", minLevel: 220, minAtk: 1663, maxAtk: 2033, addDef: 19, attackType: "Aries" }, -{ itemId: 242132, className: "SPR02_132", name: "Vienie Corsesca", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 10455, equipType1: "Spear", equipType2: "Spear", minLevel: 220, minAtk: 1663, maxAtk: 2033, attackType: "Aries" }, -{ itemId: 242133, className: "SPR02_133", name: "Supportive Alchupiz", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 587, maxAtk: 717, attackType: "Aries" }, -{ itemId: 242150, className: "SPR02_150", name: "Tevhrin Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 4917, equipType1: "Spear", equipType2: "Spear", minLevel: 220, minAtk: 1663, maxAtk: 2033, attackType: "Aries" }, -{ itemId: 242151, className: "SPR02_151", name: "(Faded) Migantis Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Spear", equipType2: "Spear", minLevel: 270, minAtk: 2034, maxAtk: 2487, attackType: "Aries" }, -{ itemId: 242152, className: "SPR02_152", name: "(Faded) Pevordimas Spear", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Spear", equipType2: "Spear", minLevel: 315, minAtk: 2369, maxAtk: 2895, attackType: "Aries" }, -{ itemId: 242153, className: "SPR02_153", name: "Fluke Spear", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 921, maxAtk: 1125, attackType: "Aries" }, -{ itemId: 242154, className: "SPR02_154", name: "Golden Spear", type: "Equip", group: "Weapon", weight: 147, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1292, maxAtk: 1579, attackType: "Aries" }, -{ itemId: 242155, className: "SPR02_155", name: "Sketis Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 587, maxAtk: 717, attackType: "Aries" }, -{ itemId: 242156, className: "SPR02_156", name: "Pajoritas Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 220, minAtk: 1663, maxAtk: 2033, attackType: "Aries" }, -{ itemId: 242157, className: "SPR02_157", name: "Migantis Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 270, minAtk: 2034, maxAtk: 2487, attackType: "Aries" }, -{ itemId: 242158, className: "SPR02_158", name: "Pevordimas Spear", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 315, minAtk: 2369, maxAtk: 2895, attackType: "Aries" }, -{ itemId: 242159, className: "SPR02_159", name: "Raffye Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 350, minAtk: 2628, maxAtk: 3213, attackType: "Aries" }, -{ itemId: 242160, className: "SPR02_160", name: "Zvaigzde Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, minAtk: 2851, maxAtk: 3485, attackType: "Aries" }, -{ itemId: 242161, className: "SPR02_161", name: "Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 3000, maxAtk: 3666, attackType: "Aries" }, -{ itemId: 243101, className: "SPR03_101", name: "Silver Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 40, minAtk: 359, maxAtk: 439, addMDef: 39, attackType: "Aries" }, -{ itemId: 243102, className: "SPR03_102", name: "Geras Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 4951, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1421, maxAtk: 1737, attackType: "Aries" }, -{ itemId: 243103, className: "SPR03_103", name: "Doom Spear", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 645, maxAtk: 789, attackType: "Aries" }, -{ itemId: 243104, className: "SPR03_104", name: "Firnas", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Spear", equipType2: "Spear", minLevel: 220, minAtk: 1830, maxAtk: 2236, attackType: "Aries" }, -{ itemId: 243105, className: "SPR03_105", name: "noname", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1421, maxAtk: 1737, attackType: "Aries" }, -{ itemId: 243106, className: "SPR03_106", name: "Gamble", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 17700, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 1013, maxAtk: 1238, attackType: "Aries" }, -{ itemId: 243107, className: "SPR03_107", name: "Seimos Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4368, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 1013, maxAtk: 1238, attackType: "Aries" }, -{ itemId: 243108, className: "SPR03_108", name: "Tilly Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 6887, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 1013, maxAtk: 1238, pAtk: 21, attackType: "Aries" }, -{ itemId: 243109, className: "SPR03_109", name: "Khasti Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 7814, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1421, maxAtk: 1737, addMaxAtk: 21, attackType: "Aries" }, -{ itemId: 243110, className: "SPR03_110", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 128, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1421, maxAtk: 1737, attackType: "Aries" }, -{ itemId: 243111, className: "SPR03_111", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 128, equipType1: "Spear", equipType2: "Spear", minLevel: 220, minAtk: 1830, maxAtk: 2236, attackType: "Aries" }, -{ itemId: 243112, className: "SPR03_112", name: "Pensara Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 10401, equipType1: "Spear", equipType2: "Spear", minLevel: 220, minAtk: 1830, maxAtk: 2236, attackType: "Aries" }, -{ itemId: 243115, className: "SPR03_115", name: "Pygry Spear", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 15616, equipType1: "Spear", equipType2: "Spear", minLevel: 315, minAtk: 2605, maxAtk: 3184, attackType: "Aries" }, -{ itemId: 243301, className: "SPR03_301", name: "(Faded) Fluke Spear", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 15520, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 1013, maxAtk: 1238, attackType: "Aries" }, -{ itemId: 243302, className: "SPR03_302", name: "(Faded) Golden Spear", type: "Equip", group: "Weapon", weight: 147, maxStack: 1, price: 24252, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1421, maxAtk: 1737, attackType: "Aries" }, -{ itemId: 243305, className: "SPR03_303", name: "(Faded) Sketis Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 645, maxAtk: 789, attackType: "Aries" }, -{ itemId: 243306, className: "SPR03_304", name: "(Faded) Pajoritas Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Spear", equipType2: "Spear", minLevel: 220, minAtk: 1830, maxAtk: 2236, attackType: "Aries" }, -{ itemId: 243307, className: "SPR03_307", name: "(Faded) Purine Migantis Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Spear", equipType2: "Spear", minLevel: 270, minAtk: 2238, maxAtk: 2735, attackType: "Aries" }, -{ itemId: 243308, className: "SPR03_308", name: "(Faded) Purine Pevordimas Spear", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Spear", equipType2: "Spear", minLevel: 315, minAtk: 2605, maxAtk: 3184, attackType: "Aries" }, -{ itemId: 243309, className: "SPR03_309", name: "Berthas Fluke Spear", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 1013, maxAtk: 1238, attackType: "Aries" }, -{ itemId: 243310, className: "SPR03_310", name: "Berthas Golden Spear", type: "Equip", group: "Weapon", weight: 147, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1421, maxAtk: 1737, attackType: "Aries" }, -{ itemId: 243311, className: "SPR03_311", name: "Berthas Sketis Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 645, maxAtk: 789, attackType: "Aries" }, -{ itemId: 243312, className: "SPR03_312", name: "Berthas Pajoritas Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 220, minAtk: 1830, maxAtk: 2236, attackType: "Aries" }, -{ itemId: 243313, className: "SPR03_313", name: "Berthas Migantis Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 270, minAtk: 2238, maxAtk: 2735, attackType: "Aries" }, -{ itemId: 243314, className: "SPR03_314", name: "Berthas Pevordimas Spear", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 315, minAtk: 2605, maxAtk: 3184, attackType: "Aries" }, -{ itemId: 243315, className: "SPR03_315", name: "Berthas Raffye Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 350, minAtk: 2891, maxAtk: 3534, attackType: "Aries" }, -{ itemId: 243316, className: "SPR03_316", name: "Berthas Zvaigzde Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, minAtk: 3136, maxAtk: 3833, attackType: "Aries" }, -{ itemId: 243317, className: "SPR03_317", name: "Berthas Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 3300, maxAtk: 4033, attackType: "Aries" }, -{ itemId: 243318, className: "SPR03_318", name: "Berthas Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 430, minAtk: 3545, maxAtk: 4332, attackType: "Aries" }, -{ itemId: 244101, className: "SPR04_101", name: "Adatag", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 868, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 733, maxAtk: 896, attackType: "Aries" }, -{ itemId: 244102, className: "SPR04_102", name: "Stinger", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 15520, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 1151, maxAtk: 1407, addMaxAtk: 18, attackType: "Aries" }, -{ itemId: 244103, className: "SPR04_103", name: "Brandish", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6467, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1615, maxAtk: 1974, attackType: "Aries" }, -{ itemId: 244104, className: "SPR04_104", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 80, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 1151, maxAtk: 1407, attackType: "Aries" }, -{ itemId: 244105, className: "SPR04_105", name: "Galatunis Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 10455, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 1151, maxAtk: 1407, attackType: "Aries" }, -{ itemId: 244106, className: "SPR04_106", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 128, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1615, maxAtk: 1974, attackType: "Aries" }, -{ itemId: 244107, className: "SPR04_107", name: "Maga Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 7922, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1615, maxAtk: 1974, attackType: "Aries" }, -{ itemId: 244108, className: "SPR04_108", name: "Lolopanther Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 40000, sellPrice: 15616, equipType1: "Spear", equipType2: "Spear", minLevel: 270, minAtk: 3255, maxAtk: 3978, attackType: "Aries" }, -{ itemId: 244109, className: "SPR04_109", name: "Solmiki Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 48800, sellPrice: 17895, equipType1: "Spear", equipType2: "Spear", minLevel: 330, minAtk: 3968, maxAtk: 4850, attackType: "Aries" }, -{ itemId: 244110, className: "SPR04_110", name: "Wingshard Spear", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 48800, sellPrice: 17798, equipType1: "Spear", equipType2: "Spear", minLevel: 315, minAtk: 2961, maxAtk: 3619, attackType: "Aries" }, -{ itemId: 244111, className: "SPR04_111", name: "Primus Fluke Spear", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 1151, maxAtk: 1407, attackType: "Aries" }, -{ itemId: 244112, className: "SPR04_112", name: "Primus Golden Spear", type: "Equip", group: "Weapon", weight: 147, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 170, minAtk: 1615, maxAtk: 1974, attackType: "Aries" }, -{ itemId: 244113, className: "SPR04_113", name: "Primus Sketis Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 75, minAtk: 733, maxAtk: 896, attackType: "Aries" }, -{ itemId: 244114, className: "SPR04_114", name: "Primus Pajoritas Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 220, minAtk: 2079, maxAtk: 2541, attackType: "Aries" }, -{ itemId: 244115, className: "SPR04_115", name: "Primus Migantis Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 270, minAtk: 2543, maxAtk: 3108, attackType: "Aries" }, -{ itemId: 244116, className: "SPR04_116", name: "Primus Pevordimas Spear", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 315, minAtk: 2961, maxAtk: 3619, attackType: "Aries" }, -{ itemId: 244117, className: "SPR04_117", name: "Primus Raffye Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 350, minAtk: 3286, maxAtk: 4016, attackType: "Aries" }, -{ itemId: 244118, className: "SPR04_118", name: "Masinios Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 350, minAtk: 3286, maxAtk: 4016, attackType: "Aries" }, -{ itemId: 244119, className: "SPR04_119", name: "Primus Zvaigzde Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, -{ itemId: 244120, className: "SPR04_120", name: "Wastrel Zvaigzde Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, -{ itemId: 244121, className: "SPR04_121", name: "Asio Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, -{ itemId: 244122, className: "SPR04_122", name: "Primus Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 3750, maxAtk: 4583, attackType: "Aries" }, -{ itemId: 244123, className: "SPR04_123", name: "Skiaclipse Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 3750, maxAtk: 4583, attackType: "Aries" }, -{ itemId: 244124, className: "SPR04_124", name: "Moringponia Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 3750, maxAtk: 4583, attackType: "Aries" }, -{ itemId: 244125, className: "SPR04_125", name: "Misrus Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 3750, maxAtk: 4583, attackType: "Aries", aries: 392 }, -{ itemId: 244126, className: "SPR04_126", name: "Primus Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 430, minAtk: 4028, maxAtk: 4923, attackType: "Aries" }, -{ itemId: 245101, className: "SPR05_101", name: "Velcoffer Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 360, minAtk: 4324, maxAtk: 5285, attackType: "Aries" }, -{ itemId: 245102, className: "SPR05_102", name: "Velcoffer Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 360, minAtk: 4324, maxAtk: 5285, attackType: "Aries" }, -{ itemId: 245103, className: "SPR05_103", name: "Savinose Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, -{ itemId: 245104, className: "SPR05_104", name: "Skiaclipse Varna Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, -{ itemId: 251101, className: "TSP01_101", name: "Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 485, maxAtk: 901, attackType: "Aries" }, -{ itemId: 251102, className: "TSP01_102", name: "Partisan", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 485, maxAtk: 901, attackType: "Aries" }, -{ itemId: 251103, className: "TSP01_103", name: "Trident", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 485, maxAtk: 901, attackType: "Aries" }, -{ itemId: 251104, className: "TSP01_104", name: "Royal Partisan", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 762, maxAtk: 1415, attackType: "Aries" }, -{ itemId: 251105, className: "TSP01_105", name: "Cone Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 762, maxAtk: 1415, attackType: "Aries" }, -{ itemId: 251106, className: "TSP01_106", name: "Fedimian Pike", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 762, maxAtk: 1415, attackType: "Aries" }, +{ itemId: 241120, className: "SPR01_120", name: "Corsesca", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 10401, equipType1: "Spear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1497, maxAtk: 1830, attackType: "Aries" }, +{ itemId: 241121, className: "SPR01_121", name: "Superior Corsesca", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 10455, equipType1: "Spear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1497, maxAtk: 1830, attackType: "Aries" }, +{ itemId: 241122, className: "SPR01_122", name: "(Faded) Replica Migantis Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 80000, sellPrice: 5000, equipType1: "Spear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 1831, maxAtk: 2238, attackType: "Aries" }, +{ itemId: 241123, className: "SPR01_123", name: "(Faded) Replica Pevordimas Spear", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 120000, sellPrice: 5000, equipType1: "Spear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2132, maxAtk: 2605, attackType: "Aries" }, +{ itemId: 241124, className: "SPR01_124", name: "Practice Short Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 294, maxAtk: 359, attackType: "Aries" }, +{ itemId: 241125, className: "SPR01_125", name: "Prati", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1497, maxAtk: 1830, attackType: "Aries" }, +{ itemId: 242101, className: "SPR02_101", name: "Sauroter", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 921, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 327, maxAtk: 399, attackType: "Aries" }, +{ itemId: 242102, className: "SPR02_102", name: "Dory", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 327, maxAtk: 399, attackType: "Aries" }, +{ itemId: 242103, className: "SPR02_103", name: "Assegai", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 327, maxAtk: 399, attackType: "Aries" }, +{ itemId: 242104, className: "SPR02_104", name: "Cheminis Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 327, maxAtk: 399, attackType: "Aries" }, +{ itemId: 242105, className: "SPR02_105", name: "Grand Spontoon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 587, maxAtk: 717, attackType: "Aries" }, +{ itemId: 242106, className: "SPR02_106", name: "Zega Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 2730, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 921, maxAtk: 1125, attackType: "Aries" }, +{ itemId: 242107, className: "SPR02_107", name: "Harl Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 15520, sellPrice: 4274, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 921, maxAtk: 1125, attackType: "Aries" }, +{ itemId: 242108, className: "SPR02_108", name: "Chaser", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 4304, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1292, maxAtk: 1579, attackType: "Aries" }, +{ itemId: 242109, className: "SPR02_109", name: "Imperni Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 2673, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 587, maxAtk: 717, attackType: "Aries" }, +{ itemId: 242110, className: "SPR02_110", name: "Fedimian Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 587, maxAtk: 717, attackType: "Aries" }, +{ itemId: 242111, className: "SPR02_111", name: "Thresh Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 327, maxAtk: 399, attackType: "Aries" }, +{ itemId: 242112, className: "SPR02_112", name: "Sestas Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 587, maxAtk: 717, attackType: "Aries" }, +{ itemId: 242113, className: "SPR02_113", name: "Dratt Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4304, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 921, maxAtk: 1125, attackType: "Aries" }, +{ itemId: 242114, className: "SPR02_114", name: "Aston Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 4951, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1292, maxAtk: 1579, attackType: "Aries" }, +{ itemId: 242115, className: "SPR02_115", name: "Tenet Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 327, maxAtk: 399, attackType: "Aries" }, +{ itemId: 242116, className: "SPR02_116", name: "Patrice Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 576, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 327, maxAtk: 399, attackType: "Aries" }, +{ itemId: 242117, className: "SPR02_117", name: "Lukas Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 587, maxAtk: 717, attackType: "Aries" }, +{ itemId: 242118, className: "SPR02_118", name: "Philis Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 587, maxAtk: 717, attackType: "Aries" }, +{ itemId: 242119, className: "SPR02_119", name: "Escanciu Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 587, maxAtk: 717, attackType: "Aries" }, +{ itemId: 242120, className: "SPR02_120", name: "Krag Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 587, maxAtk: 717, attackType: "Aries" }, +{ itemId: 242121, className: "SPR02_121", name: "Pilgrim Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 921, maxAtk: 1125, attackType: "Aries" }, +{ itemId: 242122, className: "SPR02_122", name: "Istora Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 3136, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1292, maxAtk: 1579, attackType: "Aries" }, +{ itemId: 242123, className: "SPR02_123", name: "Hell's Alchupiz", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 921, maxAtk: 1125, attackType: "Aries" }, +{ itemId: 242124, className: "SPR02_124", name: "Hunting Gelti Alchupiz", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4368, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 921, maxAtk: 1125, attackType: "Aries" }, +{ itemId: 242125, className: "SPR02_125", name: "Jaas Winged Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 5017, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 921, maxAtk: 1125, smallSizeBonus: 45, attackType: "Aries" }, +{ itemId: 242126, className: "SPR02_126", name: "Lumas Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4323, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 921, maxAtk: 1125, attackType: "Aries" }, +{ itemId: 242127, className: "SPR02_127", name: "Artie Breach Pike", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6887, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1292, maxAtk: 1579, attackType: "Aries" }, +{ itemId: 242128, className: "SPR02_128", name: "Light Langdebeve", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 6936, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1292, maxAtk: 1579, attackType: "Aries" }, +{ itemId: 242129, className: "SPR02_129", name: "Adata Chauve-souris", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 7814, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1292, maxAtk: 1579, attackType: "Aries" }, +{ itemId: 242130, className: "SPR02_130", name: "Slaake Corsesca", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 10401, equipType1: "Spear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1663, maxAtk: 2033, attackType: "Aries" }, +{ itemId: 242131, className: "SPR02_131", name: "Artie Hasta", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 10455, equipType1: "Spear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1663, maxAtk: 2033, addDef: 19, attackType: "Aries" }, +{ itemId: 242132, className: "SPR02_132", name: "Vienie Corsesca", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 10455, equipType1: "Spear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1663, maxAtk: 2033, attackType: "Aries" }, +{ itemId: 242133, className: "SPR02_133", name: "Supportive Alchupiz", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 587, maxAtk: 717, attackType: "Aries" }, +{ itemId: 242150, className: "SPR02_150", name: "Tevhrin Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 4917, equipType1: "Spear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1663, maxAtk: 2033, attackType: "Aries" }, +{ itemId: 242151, className: "SPR02_151", name: "(Faded) Migantis Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Spear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 2034, maxAtk: 2487, attackType: "Aries" }, +{ itemId: 242152, className: "SPR02_152", name: "(Faded) Pevordimas Spear", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Spear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2369, maxAtk: 2895, attackType: "Aries" }, +{ itemId: 242153, className: "SPR02_153", name: "Fluke Spear", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 921, maxAtk: 1125, attackType: "Aries" }, +{ itemId: 242154, className: "SPR02_154", name: "Golden Spear", type: "Equip", group: "Weapon", weight: 147, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1292, maxAtk: 1579, attackType: "Aries" }, +{ itemId: 242155, className: "SPR02_155", name: "Sketis Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 587, maxAtk: 717, attackType: "Aries" }, +{ itemId: 242156, className: "SPR02_156", name: "Pajoritas Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1663, maxAtk: 2033, attackType: "Aries" }, +{ itemId: 242157, className: "SPR02_157", name: "Migantis Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 2034, maxAtk: 2487, attackType: "Aries" }, +{ itemId: 242158, className: "SPR02_158", name: "Pevordimas Spear", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2369, maxAtk: 2895, attackType: "Aries" }, +{ itemId: 242159, className: "SPR02_159", name: "Raffye Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 350, equipExpGroup: "Equip", minAtk: 2628, maxAtk: 3213, attackType: "Aries" }, +{ itemId: 242160, className: "SPR02_160", name: "Zvaigzde Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 2851, maxAtk: 3485, attackType: "Aries" }, +{ itemId: 242161, className: "SPR02_161", name: "Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3000, maxAtk: 3666, attackType: "Aries" }, +{ itemId: 243101, className: "SPR03_101", name: "Silver Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 3640, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 359, maxAtk: 439, addMDef: 39, attackType: "Aries" }, +{ itemId: 243102, className: "SPR03_102", name: "Geras Spear", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 4951, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1421, maxAtk: 1737, attackType: "Aries" }, +{ itemId: 243103, className: "SPR03_103", name: "Doom Spear", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 8583, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 645, maxAtk: 789, attackType: "Aries" }, +{ itemId: 243104, className: "SPR03_104", name: "Firnas", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Spear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1830, maxAtk: 2236, attackType: "Aries" }, +{ itemId: 243105, className: "SPR03_105", name: "noname", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1421, maxAtk: 1737, attackType: "Aries" }, +{ itemId: 243106, className: "SPR03_106", name: "Gamble", type: "Equip", group: "Weapon", weight: 135, maxStack: 1, price: 15520, sellPrice: 17700, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1013, maxAtk: 1238, attackType: "Aries" }, +{ itemId: 243107, className: "SPR03_107", name: "Seimos Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 4368, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1013, maxAtk: 1238, attackType: "Aries" }, +{ itemId: 243108, className: "SPR03_108", name: "Tilly Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 6887, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1013, maxAtk: 1238, pAtk: 21, attackType: "Aries" }, +{ itemId: 243109, className: "SPR03_109", name: "Khasti Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 7814, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1421, maxAtk: 1737, addMaxAtk: 21, attackType: "Aries" }, +{ itemId: 243110, className: "SPR03_110", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 128, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1421, maxAtk: 1737, attackType: "Aries" }, +{ itemId: 243111, className: "SPR03_111", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 128, equipType1: "Spear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1830, maxAtk: 2236, attackType: "Aries" }, +{ itemId: 243112, className: "SPR03_112", name: "Pensara Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 32673, sellPrice: 10401, equipType1: "Spear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1830, maxAtk: 2236, attackType: "Aries" }, +{ itemId: 243115, className: "SPR03_115", name: "Pygry Spear", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 15616, equipType1: "Spear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2605, maxAtk: 3184, attackType: "Aries" }, +{ itemId: 243301, className: "SPR03_301", name: "(Faded) Fluke Spear", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 15520, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1013, maxAtk: 1238, attackType: "Aries" }, +{ itemId: 243302, className: "SPR03_302", name: "(Faded) Golden Spear", type: "Equip", group: "Weapon", weight: 147, maxStack: 1, price: 24252, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1421, maxAtk: 1737, attackType: "Aries" }, +{ itemId: 243305, className: "SPR03_303", name: "(Faded) Sketis Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 1512, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 645, maxAtk: 789, attackType: "Aries" }, +{ itemId: 243306, className: "SPR03_304", name: "(Faded) Pajoritas Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Spear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1830, maxAtk: 2236, attackType: "Aries" }, +{ itemId: 243307, className: "SPR03_307", name: "(Faded) Purine Migantis Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Spear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 2238, maxAtk: 2735, attackType: "Aries" }, +{ itemId: 243308, className: "SPR03_308", name: "(Faded) Purine Pevordimas Spear", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Spear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2605, maxAtk: 3184, attackType: "Aries" }, +{ itemId: 243309, className: "SPR03_309", name: "Berthas Fluke Spear", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1013, maxAtk: 1238, attackType: "Aries" }, +{ itemId: 243310, className: "SPR03_310", name: "Berthas Golden Spear", type: "Equip", group: "Weapon", weight: 147, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1421, maxAtk: 1737, attackType: "Aries" }, +{ itemId: 243311, className: "SPR03_311", name: "Berthas Sketis Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 645, maxAtk: 789, attackType: "Aries" }, +{ itemId: 243312, className: "SPR03_312", name: "Berthas Pajoritas Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1830, maxAtk: 2236, attackType: "Aries" }, +{ itemId: 243313, className: "SPR03_313", name: "Berthas Migantis Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 2238, maxAtk: 2735, attackType: "Aries" }, +{ itemId: 243314, className: "SPR03_314", name: "Berthas Pevordimas Spear", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2605, maxAtk: 3184, attackType: "Aries" }, +{ itemId: 243315, className: "SPR03_315", name: "Berthas Raffye Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 350, equipExpGroup: "Equip", minAtk: 2891, maxAtk: 3534, attackType: "Aries" }, +{ itemId: 243316, className: "SPR03_316", name: "Berthas Zvaigzde Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3136, maxAtk: 3833, attackType: "Aries" }, +{ itemId: 243317, className: "SPR03_317", name: "Berthas Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3300, maxAtk: 4033, attackType: "Aries" }, +{ itemId: 243318, className: "SPR03_318", name: "Berthas Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 430, equipExpGroup: "Equip", minAtk: 3545, maxAtk: 4332, attackType: "Aries" }, +{ itemId: 244101, className: "SPR04_101", name: "Adatag", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 8583, sellPrice: 868, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 733, maxAtk: 896, attackType: "Aries" }, +{ itemId: 244102, className: "SPR04_102", name: "Stinger", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 15520, sellPrice: 2702, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1151, maxAtk: 1407, addMaxAtk: 18, attackType: "Aries" }, +{ itemId: 244103, className: "SPR04_103", name: "Brandish", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6467, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1615, maxAtk: 1974, attackType: "Aries" }, +{ itemId: 244104, className: "SPR04_104", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 80, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1151, maxAtk: 1407, attackType: "Aries" }, +{ itemId: 244105, className: "SPR04_105", name: "Galatunis Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 15520, sellPrice: 10455, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1151, maxAtk: 1407, attackType: "Aries" }, +{ itemId: 244106, className: "SPR04_106", name: "noname", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 128, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1615, maxAtk: 1974, attackType: "Aries" }, +{ itemId: 244107, className: "SPR04_107", name: "Maga Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 24252, sellPrice: 7922, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1615, maxAtk: 1974, attackType: "Aries" }, +{ itemId: 244108, className: "SPR04_108", name: "Lolopanther Spear", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 40000, sellPrice: 15616, equipType1: "Spear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 3255, maxAtk: 3978, attackType: "Aries" }, +{ itemId: 244109, className: "SPR04_109", name: "Solmiki Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 48800, sellPrice: 17895, equipType1: "Spear", equipType2: "Spear", minLevel: 330, equipExpGroup: "Equip", minAtk: 3968, maxAtk: 4850, attackType: "Aries" }, +{ itemId: 244110, className: "SPR04_110", name: "Wingshard Spear", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 48800, sellPrice: 17798, equipType1: "Spear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2961, maxAtk: 3619, attackType: "Aries" }, +{ itemId: 244111, className: "SPR04_111", name: "Primus Fluke Spear", type: "Equip", group: "Weapon", weight: 141, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1151, maxAtk: 1407, attackType: "Aries" }, +{ itemId: 244112, className: "SPR04_112", name: "Primus Golden Spear", type: "Equip", group: "Weapon", weight: 147, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1615, maxAtk: 1974, attackType: "Aries" }, +{ itemId: 244113, className: "SPR04_113", name: "Primus Sketis Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 733, maxAtk: 896, attackType: "Aries" }, +{ itemId: 244114, className: "SPR04_114", name: "Primus Pajoritas Spear", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 2079, maxAtk: 2541, attackType: "Aries" }, +{ itemId: 244115, className: "SPR04_115", name: "Primus Migantis Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 2543, maxAtk: 3108, attackType: "Aries" }, +{ itemId: 244116, className: "SPR04_116", name: "Primus Pevordimas Spear", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2961, maxAtk: 3619, attackType: "Aries" }, +{ itemId: 244117, className: "SPR04_117", name: "Primus Raffye Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 350, equipExpGroup: "Equip", minAtk: 3286, maxAtk: 4016, attackType: "Aries" }, +{ itemId: 244118, className: "SPR04_118", name: "Masinios Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 350, equipExpGroup: "Equip", minAtk: 3286, maxAtk: 4016, attackType: "Aries" }, +{ itemId: 244119, className: "SPR04_119", name: "Primus Zvaigzde Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, +{ itemId: 244120, className: "SPR04_120", name: "Wastrel Zvaigzde Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, +{ itemId: 244121, className: "SPR04_121", name: "Asio Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, +{ itemId: 244122, className: "SPR04_122", name: "Primus Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3750, maxAtk: 4583, attackType: "Aries" }, +{ itemId: 244123, className: "SPR04_123", name: "Skiaclipse Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3750, maxAtk: 4583, attackType: "Aries" }, +{ itemId: 244124, className: "SPR04_124", name: "Moringponia Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3750, maxAtk: 4583, attackType: "Aries" }, +{ itemId: 244125, className: "SPR04_125", name: "Misrus Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3750, maxAtk: 4583, attackType: "Aries", aries: 392 }, +{ itemId: 244126, className: "SPR04_126", name: "Primus Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 430, equipExpGroup: "Equip", minAtk: 4028, maxAtk: 4923, attackType: "Aries" }, +{ itemId: 245101, className: "SPR05_101", name: "Velcoffer Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 360, equipExpGroup: "Equip", minAtk: 4324, maxAtk: 5285, attackType: "Aries" }, +{ itemId: 245102, className: "SPR05_102", name: "Velcoffer Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 360, equipExpGroup: "Equip", minAtk: 4324, maxAtk: 5285, attackType: "Aries" }, +{ itemId: 245103, className: "SPR05_103", name: "Savinose Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, +{ itemId: 245104, className: "SPR05_104", name: "Skiaclipse Varna Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, +{ itemId: 251101, className: "TSP01_101", name: "Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 485, maxAtk: 901, attackType: "Aries" }, +{ itemId: 251102, className: "TSP01_102", name: "Partisan", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 485, maxAtk: 901, attackType: "Aries" }, +{ itemId: 251103, className: "TSP01_103", name: "Trident", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 485, maxAtk: 901, attackType: "Aries" }, +{ itemId: 251104, className: "TSP01_104", name: "Royal Partisan", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 762, maxAtk: 1415, attackType: "Aries" }, +{ itemId: 251105, className: "TSP01_105", name: "Cone Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 762, maxAtk: 1415, attackType: "Aries" }, +{ itemId: 251106, className: "TSP01_106", name: "Fedimian Pike", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 762, maxAtk: 1415, attackType: "Aries" }, { itemId: 251107, className: "TSP01_107", name: "Dunkel Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 2939, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 485, maxAtk: 901, attackType: "Aries" }, -{ itemId: 251108, className: "TSP01_108", name: "Royal Trident", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 8030, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1069, maxAtk: 1985, attackType: "Aries" }, -{ itemId: 251109, className: "TSP01_109", name: "Battle Fork", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1069, maxAtk: 1985, attackType: "Aries" }, -{ itemId: 251110, className: "TSP01_110", name: "Halberd", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1069, maxAtk: 1985, attackType: "Aries" }, +{ itemId: 251108, className: "TSP01_108", name: "Royal Trident", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 8030, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1069, maxAtk: 1985, attackType: "Aries" }, +{ itemId: 251109, className: "TSP01_109", name: "Battle Fork", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1069, maxAtk: 1985, attackType: "Aries" }, +{ itemId: 251110, className: "TSP01_110", name: "Halberd", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1069, maxAtk: 1985, attackType: "Aries" }, { itemId: 251111, className: "TSP01_111", name: "Yorgis Alchupiz", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 4368, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 762, maxAtk: 1415, attackType: "Aries" }, -{ itemId: 251112, className: "TSP01_112", name: "Demon Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, minAtk: 1376, maxAtk: 2555, attackType: "Aries" }, -{ itemId: 251113, className: "TSP01_113", name: "Superior Demon Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, minAtk: 1376, maxAtk: 2555, attackType: "Aries" }, -{ itemId: 251114, className: "TSP01_114", name: "(Faded) Replica Migantis Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, minAtk: 1683, maxAtk: 3126, attackType: "Aries" }, -{ itemId: 251115, className: "TSP01_115", name: "(Faded) Replica Pevordimas Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 144000, sellPrice: 5000, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, minAtk: 1959, maxAtk: 3639, attackType: "Aries" }, -{ itemId: 251116, className: "TSP01_116", name: "Practice Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 485, maxAtk: 901, attackType: "Aries" }, -{ itemId: 251117, className: "TSP01_117", name: "Practice Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, minAtk: 1683, maxAtk: 3126, attackType: "Aries" }, -{ itemId: 251999, className: "TSP01_999", name: "Standard Two-handed Spear", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 13209, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 485, maxAtk: 901, attackType: "Aries" }, -{ itemId: 252101, className: "TSP02_101", name: "Medina Pike", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 539, maxAtk: 1001, largeSizeBonus: 27, attackType: "Aries" }, -{ itemId: 252102, className: "TSP02_102", name: "Free Partisan", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 539, maxAtk: 1001, attackType: "Aries" }, -{ itemId: 252103, className: "TSP02_103", name: "Cheminis Pike", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 5824, sellPrice: 2794, equipType1: "THSpear", equipType2: "Spear", minLevel: 40, minAtk: 300, maxAtk: 558, attackType: "Aries" }, -{ itemId: 252104, className: "TSP02_104", name: "Entra Partisan", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 846, maxAtk: 1572, attackType: "Aries" }, -{ itemId: 252105, className: "TSP02_105", name: "Galin Trident", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 846, maxAtk: 1572, attackType: "Aries" }, -{ itemId: 252106, className: "TSP02_106", name: "Imperni Pike", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 539, maxAtk: 1001, attackType: "Aries" }, -{ itemId: 252107, className: "TSP02_107", name: "Pine Cone Pike", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1188, maxAtk: 2205, largeSizeBonus: 56, attackType: "Aries" }, -{ itemId: 252108, className: "TSP02_108", name: "Great Pike", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 539, maxAtk: 1001, attackType: "Aries" }, -{ itemId: 252109, className: "TSP02_109", name: "Sestas Pike", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 539, maxAtk: 1001, attackType: "Aries" }, -{ itemId: 252110, className: "TSP02_110", name: "Dratt Pike", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 846, maxAtk: 1572, attackType: "Aries" }, -{ itemId: 252111, className: "TSP02_111", name: "Aston Pike", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1188, maxAtk: 2205, attackType: "Aries" }, -{ itemId: 252112, className: "TSP02_112", name: "Lukas Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 539, maxAtk: 1001, attackType: "Aries" }, -{ itemId: 252113, className: "TSP02_113", name: "Philis Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 539, maxAtk: 1001, attackType: "Aries" }, -{ itemId: 252114, className: "TSP02_114", name: "Escanciu Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 539, maxAtk: 1001, attackType: "Aries" }, -{ itemId: 252115, className: "TSP02_115", name: "Krag Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 539, maxAtk: 1001, attackType: "Aries" }, -{ itemId: 252116, className: "TSP02_116", name: "Pilgrim Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 4414, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 846, maxAtk: 1572, attackType: "Aries" }, -{ itemId: 252117, className: "TSP02_117", name: "Istora Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 6936, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1188, maxAtk: 2205, attackType: "Aries" }, -{ itemId: 252118, className: "TSP02_118", name: "Light Royal Partisan", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 846, maxAtk: 1572, attackType: "Aries" }, -{ itemId: 252119, className: "TSP02_119", name: "Slaake Cone Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 846, maxAtk: 1572, attackType: "Aries" }, -{ itemId: 252120, className: "TSP02_120", name: "Holy Fedimian Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 846, maxAtk: 1572, attackType: "Aries" }, -{ itemId: 252121, className: "TSP02_121", name: "Lumas Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 4966, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 846, maxAtk: 1572, attackType: "Aries" }, -{ itemId: 252122, className: "TSP02_122", name: "Earth Royal Trident", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1188, maxAtk: 2205, attackType: "Aries", earthRes: 34 }, -{ itemId: 252123, className: "TSP02_123", name: "Artie Battle Fork", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1188, maxAtk: 2205, addDef: 20, attackType: "Aries" }, -{ itemId: 252124, className: "TSP02_124", name: "Magi Halberd", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1188, maxAtk: 2205, attackType: "Aries" }, -{ itemId: 252125, className: "TSP02_125", name: "Duris Demon Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, minAtk: 1529, maxAtk: 2839, middleSizeBonus: 72, attackType: "Aries" }, -{ itemId: 252126, className: "TSP02_126", name: "Holy Partisan", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, minAtk: 1529, maxAtk: 2839, attackType: "Aries" }, -{ itemId: 252127, className: "TSP02_127", name: "Hell's Demon Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, minAtk: 1529, maxAtk: 2839, attackType: "Aries" }, -{ itemId: 252128, className: "TSP02_128", name: "Supportive Royal Partisan", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 539, maxAtk: 1001, attackType: "Aries" }, -{ itemId: 252150, className: "TSP02_150", name: "Tevhrin Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, minAtk: 1529, maxAtk: 2839, attackType: "Aries" }, -{ itemId: 252151, className: "TSP02_151", name: "(Faded) Migantis Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, minAtk: 1870, maxAtk: 3473, attackType: "Aries" }, -{ itemId: 252152, className: "TSP02_152", name: "(Faded) Pevordimas Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, minAtk: 2177, maxAtk: 4043, attackType: "Aries" }, -{ itemId: 252153, className: "TSP02_153", name: "Benesda", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 846, maxAtk: 1572, attackType: "Aries" }, -{ itemId: 252154, className: "TSP02_154", name: "Reine Pike", type: "Equip", group: "Weapon", weight: 237, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1188, maxAtk: 2205, attackType: "Aries" }, -{ itemId: 252155, className: "TSP02_155", name: "Sketis Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 539, maxAtk: 1001, attackType: "Aries" }, -{ itemId: 252156, className: "TSP02_156", name: "Pajoritas Pike", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, minAtk: 1529, maxAtk: 2839, attackType: "Aries" }, -{ itemId: 252157, className: "TSP02_157", name: "Migantis Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, minAtk: 1870, maxAtk: 3473, attackType: "Aries" }, -{ itemId: 252158, className: "TSP02_158", name: "Pevordimas Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, minAtk: 2177, maxAtk: 4043, attackType: "Aries" }, -{ itemId: 252159, className: "TSP02_159", name: "Raffye Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 350, minAtk: 2416, maxAtk: 4487, attackType: "Aries" }, -{ itemId: 252160, className: "TSP02_160", name: "Zvaigzde Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, minAtk: 2621, maxAtk: 4867, attackType: "Aries" }, -{ itemId: 252161, className: "TSP02_161", name: "Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 2757, maxAtk: 5121, attackType: "Aries" }, -{ itemId: 253101, className: "TSP03_101", name: "Traxia", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 593, maxAtk: 1101, attackType: "Aries" }, -{ itemId: 253102, className: "TSP03_102", name: "Biteregina Thorns", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 593, maxAtk: 1101, addMaxAtk: 20, largeSizeBonus: 97, attackType: "Aries" }, -{ itemId: 253103, className: "TSP03_103", name: "Lydeka", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 13732, sellPrice: 7760, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 593, maxAtk: 1101, attackType: "Aries" }, -{ itemId: 253104, className: "TSP03_104", name: "noname", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 38803, sellPrice: 12697, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1306, maxAtk: 2426, largeSizeBonus: 87, attackType: "Aries" }, -{ itemId: 253105, className: "TSP03_105", name: "noname", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 931, maxAtk: 1729, pAtk: 121, attackType: "Aries" }, -{ itemId: 253106, className: "TSP03_106", name: "Cripple", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12902, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, minAtk: 1682, maxAtk: 3123, attackType: "Aries" }, -{ itemId: 253107, className: "TSP03_107", name: "Seimos Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 931, maxAtk: 1729, attackType: "Aries" }, -{ itemId: 253108, className: "TSP03_108", name: "noname", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 128, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 931, maxAtk: 1729, attackType: "Aries" }, -{ itemId: 253109, className: "TSP03_109", name: "Magas Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1306, maxAtk: 2426, addMinAtk: 30, attackType: "Aries" }, -{ itemId: 253110, className: "TSP03_110", name: "noname", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1306, maxAtk: 2426, attackType: "Aries" }, -{ itemId: 253111, className: "TSP03_111", name: "noname", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 128, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, minAtk: 1682, maxAtk: 3123, attackType: "Aries" }, -{ itemId: 253112, className: "TSP03_112", name: "Pensara Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, minAtk: 1682, maxAtk: 3123, attackType: "Aries" }, -{ itemId: 253115, className: "TSP03_115", name: "Sacmet", type: "Equip", group: "Weapon", weight: 205, maxStack: 1, price: 78080, sellPrice: 17798, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, minAtk: 2395, maxAtk: 4448, attackType: "Aries" }, -{ itemId: 253301, className: "TSP03_301", name: "(Faded) Benesda", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 931, maxAtk: 1729, addMinAtk: 71, addMaxAtk: 100, attackType: "Aries" }, -{ itemId: 253302, className: "TSP03_302", name: "(Faded) Reine Pike", type: "Equip", group: "Weapon", weight: 237, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1306, maxAtk: 2426, attackType: "Aries" }, -{ itemId: 253303, className: "TSP03_303", name: "(Faded) Sketis Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 593, maxAtk: 1101, middleSizeBonus: 50, largeSizeBonus: 124, attackType: "Aries" }, -{ itemId: 253304, className: "TSP03_304", name: "(Faded) Pajoritas Pike", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, minAtk: 1682, maxAtk: 3123, middleSizeBonus: 102, largeSizeBonus: 204, attackType: "Aries" }, -{ itemId: 253305, className: "TSP03_305", name: "(Faded) Purine Migantis Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, minAtk: 2057, maxAtk: 3820, attackType: "Aries" }, -{ itemId: 253306, className: "TSP03_306", name: "(Faded) Purine Pevordimas Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, minAtk: 2395, maxAtk: 4448, attackType: "Aries" }, -{ itemId: 253307, className: "TSP03_307", name: "Berthas Benesda", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 931, maxAtk: 1729, attackType: "Aries" }, -{ itemId: 253308, className: "TSP03_308", name: "Berthas Reine Pike", type: "Equip", group: "Weapon", weight: 237, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1306, maxAtk: 2426, attackType: "Aries" }, -{ itemId: 253309, className: "TSP03_309", name: "Berthas Sketis Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 593, maxAtk: 1101, attackType: "Aries" }, -{ itemId: 253310, className: "TSP03_310", name: "Berthas Pajoritas Pike", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, minAtk: 1682, maxAtk: 3123, attackType: "Aries" }, -{ itemId: 253311, className: "TSP03_311", name: "Berthas Migantis Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, minAtk: 2057, maxAtk: 3820, attackType: "Aries" }, -{ itemId: 253312, className: "TSP03_312", name: "Berthas Pevordimas Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, minAtk: 2395, maxAtk: 4448, attackType: "Aries" }, -{ itemId: 253313, className: "TSP03_313", name: "Berthas Raffye Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 350, minAtk: 2658, maxAtk: 4936, attackType: "Aries" }, -{ itemId: 253314, className: "TSP03_314", name: "Berthas Zvaigzde Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, minAtk: 2883, maxAtk: 5354, attackType: "Aries" }, -{ itemId: 253315, className: "TSP03_315", name: "Berthas Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 3033, maxAtk: 5633, attackType: "Aries" }, -{ itemId: 253316, className: "TSP03_316", name: "Berthas Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 430, minAtk: 3258, maxAtk: 6051, attackType: "Aries" }, -{ itemId: 254101, className: "TSP04_101", name: "Flame Pike", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 1058, maxAtk: 1965, attackType: "Aries", fireRes: -100 }, -{ itemId: 254102, className: "TSP04_102", name: "Triton", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 24832, sellPrice: 15616, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 1058, maxAtk: 1965, attackType: "Aries", iceRes: 56 }, -{ itemId: 254103, className: "TSP04_103", name: "Elements", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 4368, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1484, maxAtk: 2757, attackType: "Aries" }, -{ itemId: 254104, className: "TSP04_104", name: "Ruma Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 7868, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 1058, maxAtk: 1965, addMDef: 17, attackType: "Aries" }, -{ itemId: 254105, className: "TSP04_105", name: "Galatunis Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 12697, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 1058, maxAtk: 1965, attackType: "Aries" }, -{ itemId: 254106, className: "TSP04_106", name: "noname", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1484, maxAtk: 2757, attackType: "Aries" }, -{ itemId: 254107, className: "TSP04_107", name: "Catacombs Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 12697, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1484, maxAtk: 2757, largeSizeBonus: 188, attackType: "Aries" }, -{ itemId: 254108, className: "TSP04_108", name: "Lolopanther Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 64000, sellPrice: 15616, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, minAtk: 2992, maxAtk: 5557, attackType: "Aries" }, -{ itemId: 254109, className: "TSP04_109", name: "Plunger", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, minAtk: 1911, maxAtk: 3549, attackType: "Strike", poisonRes: 35 }, -{ itemId: 254110, className: "TSP04_110", name: "Solmiki Pike", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "THSpear", equipType2: "Spear", minLevel: 330, minAtk: 3647, maxAtk: 6774, attackType: "Aries" }, -{ itemId: 254111, className: "TSP04_111", name: "Regard Horn Pike", type: "Equip", group: "Weapon", weight: 215, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, minAtk: 2721, maxAtk: 5054, attackType: "Aries" }, -{ itemId: 254112, className: "TSP04_112", name: "Primus Benesda", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 1058, maxAtk: 1965, attackType: "Aries" }, -{ itemId: 254113, className: "TSP04_113", name: "Primus Reine Pike", type: "Equip", group: "Weapon", weight: 237, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, minAtk: 1484, maxAtk: 2757, attackType: "Aries" }, -{ itemId: 254114, className: "TSP04_114", name: "Primus Sketis Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, minAtk: 674, maxAtk: 1252, attackType: "Aries" }, -{ itemId: 254115, className: "TSP04_115", name: "Primus Pajoritas Pike", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, minAtk: 1911, maxAtk: 3549, attackType: "Aries" }, -{ itemId: 254116, className: "TSP04_116", name: "Primus Migantis Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, minAtk: 2338, maxAtk: 4341, attackType: "Aries" }, -{ itemId: 254117, className: "TSP04_117", name: "Primus Pevordimas Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, minAtk: 2721, maxAtk: 5054, attackType: "Aries" }, -{ itemId: 254118, className: "TSP04_118", name: "Primus Raffye Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 350, minAtk: 3020, maxAtk: 5609, attackType: "Aries" }, -{ itemId: 254119, className: "TSP04_119", name: "Masinios Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 350, minAtk: 3020, maxAtk: 5609, attackType: "Aries" }, -{ itemId: 254120, className: "TSP04_120", name: "Primus Zvaigzde Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, -{ itemId: 254121, className: "TSP04_121", name: "Wastrel Zvaigzde Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, -{ itemId: 254122, className: "TSP04_122", name: "Asio Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, -{ itemId: 254123, className: "TSP04_123", name: "Primus Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, -{ itemId: 254124, className: "TSP04_124", name: "Skiaclipse Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 3447, maxAtk: 6401, addMaxAtk: 725, attackType: "Aries" }, -{ itemId: 254125, className: "TSP04_125", name: "Moringponia Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, -{ itemId: 254126, className: "TSP04_126", name: "Misrus Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, -{ itemId: 254127, className: "TSP04_127", name: "Primus Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 430, minAtk: 3703, maxAtk: 6876, attackType: "Aries" }, -{ itemId: 255101, className: "TSP05_101", name: "Velcoffer Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 360, minAtk: 3975, maxAtk: 7382, attackType: "Aries" }, -{ itemId: 255102, className: "TSP05_102", name: "Velcoffer Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 360, minAtk: 3975, maxAtk: 7382, attackType: "Aries" }, -{ itemId: 255103, className: "TSP05_103", name: "Savinose Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, -{ itemId: 255104, className: "TSP05_104", name: "Skiaclipse Varna Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, -{ itemId: 271101, className: "TSF01_101", name: "Crude Wooden Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 170, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 44, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271102, className: "TSF01_102", name: "Crude Oak Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, mAtk: 167, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271103, className: "TSF01_103", name: "Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, mAtk: 167, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271104, className: "TSF01_104", name: "Ju Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 1164, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 386, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271105, className: "TSF01_105", name: "Ubuko Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 386, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271106, className: "TSF01_106", name: "Stag Staff", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 386, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271107, className: "TSF01_107", name: "Geometry Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 386, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271108, className: "TSF01_108", name: "Demon Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 693, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271109, className: "TSF01_109", name: "Storm Staff", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 693, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271110, className: "TSF01_110", name: "Wooden Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 393, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 44, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271111, className: "TSF01_111", name: "Superior Wooden Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 44, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271112, className: "TSF01_112", name: "Oak Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, mAtk: 167, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271113, className: "TSF01_113", name: "Superior Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, mAtk: 167, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271114, className: "TSF01_114", name: "Superior Ju Staff", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 386, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271115, className: "TSF01_115", name: "Superior Ubuko Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 386, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 251112, className: "TSP01_112", name: "Demon Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1376, maxAtk: 2555, attackType: "Aries" }, +{ itemId: 251113, className: "TSP01_113", name: "Superior Demon Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1376, maxAtk: 2555, attackType: "Aries" }, +{ itemId: 251114, className: "TSP01_114", name: "(Faded) Replica Migantis Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 1683, maxAtk: 3126, attackType: "Aries" }, +{ itemId: 251115, className: "TSP01_115", name: "(Faded) Replica Pevordimas Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 144000, sellPrice: 5000, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 1959, maxAtk: 3639, attackType: "Aries" }, +{ itemId: 251116, className: "TSP01_116", name: "Practice Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 485, maxAtk: 901, attackType: "Aries" }, +{ itemId: 251117, className: "TSP01_117", name: "Practice Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 1683, maxAtk: 3126, attackType: "Aries" }, +{ itemId: 251999, className: "TSP01_999", name: "Standard Two-handed Spear", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 13209, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 485, maxAtk: 901, attackType: "Aries" }, +{ itemId: 252101, className: "TSP02_101", name: "Medina Pike", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 539, maxAtk: 1001, largeSizeBonus: 27, attackType: "Aries" }, +{ itemId: 252102, className: "TSP02_102", name: "Free Partisan", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 539, maxAtk: 1001, attackType: "Aries" }, +{ itemId: 252103, className: "TSP02_103", name: "Cheminis Pike", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 5824, sellPrice: 2794, equipType1: "THSpear", equipType2: "Spear", minLevel: 40, equipExpGroup: "Equip", minAtk: 300, maxAtk: 558, attackType: "Aries" }, +{ itemId: 252104, className: "TSP02_104", name: "Entra Partisan", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 846, maxAtk: 1572, attackType: "Aries" }, +{ itemId: 252105, className: "TSP02_105", name: "Galin Trident", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 846, maxAtk: 1572, attackType: "Aries" }, +{ itemId: 252106, className: "TSP02_106", name: "Imperni Pike", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 539, maxAtk: 1001, attackType: "Aries" }, +{ itemId: 252107, className: "TSP02_107", name: "Pine Cone Pike", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1188, maxAtk: 2205, largeSizeBonus: 56, attackType: "Aries" }, +{ itemId: 252108, className: "TSP02_108", name: "Great Pike", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 539, maxAtk: 1001, attackType: "Aries" }, +{ itemId: 252109, className: "TSP02_109", name: "Sestas Pike", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 539, maxAtk: 1001, attackType: "Aries" }, +{ itemId: 252110, className: "TSP02_110", name: "Dratt Pike", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 846, maxAtk: 1572, attackType: "Aries" }, +{ itemId: 252111, className: "TSP02_111", name: "Aston Pike", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1188, maxAtk: 2205, attackType: "Aries" }, +{ itemId: 252112, className: "TSP02_112", name: "Lukas Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 539, maxAtk: 1001, attackType: "Aries" }, +{ itemId: 252113, className: "TSP02_113", name: "Philis Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 539, maxAtk: 1001, attackType: "Aries" }, +{ itemId: 252114, className: "TSP02_114", name: "Escanciu Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 539, maxAtk: 1001, attackType: "Aries" }, +{ itemId: 252115, className: "TSP02_115", name: "Krag Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 539, maxAtk: 1001, attackType: "Aries" }, +{ itemId: 252116, className: "TSP02_116", name: "Pilgrim Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 4414, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 846, maxAtk: 1572, attackType: "Aries" }, +{ itemId: 252117, className: "TSP02_117", name: "Istora Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 6936, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1188, maxAtk: 2205, attackType: "Aries" }, +{ itemId: 252118, className: "TSP02_118", name: "Light Royal Partisan", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 846, maxAtk: 1572, attackType: "Aries" }, +{ itemId: 252119, className: "TSP02_119", name: "Slaake Cone Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 846, maxAtk: 1572, attackType: "Aries" }, +{ itemId: 252120, className: "TSP02_120", name: "Holy Fedimian Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 846, maxAtk: 1572, attackType: "Aries" }, +{ itemId: 252121, className: "TSP02_121", name: "Lumas Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 4966, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 846, maxAtk: 1572, attackType: "Aries" }, +{ itemId: 252122, className: "TSP02_122", name: "Earth Royal Trident", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1188, maxAtk: 2205, attackType: "Aries", earthRes: 34 }, +{ itemId: 252123, className: "TSP02_123", name: "Artie Battle Fork", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1188, maxAtk: 2205, addDef: 20, attackType: "Aries" }, +{ itemId: 252124, className: "TSP02_124", name: "Magi Halberd", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1188, maxAtk: 2205, attackType: "Aries" }, +{ itemId: 252125, className: "TSP02_125", name: "Duris Demon Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1529, maxAtk: 2839, middleSizeBonus: 72, attackType: "Aries" }, +{ itemId: 252126, className: "TSP02_126", name: "Holy Partisan", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1529, maxAtk: 2839, attackType: "Aries" }, +{ itemId: 252127, className: "TSP02_127", name: "Hell's Demon Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1529, maxAtk: 2839, attackType: "Aries" }, +{ itemId: 252128, className: "TSP02_128", name: "Supportive Royal Partisan", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 539, maxAtk: 1001, attackType: "Aries" }, +{ itemId: 252150, className: "TSP02_150", name: "Tevhrin Pike", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1529, maxAtk: 2839, attackType: "Aries" }, +{ itemId: 252151, className: "TSP02_151", name: "(Faded) Migantis Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 1870, maxAtk: 3473, attackType: "Aries" }, +{ itemId: 252152, className: "TSP02_152", name: "(Faded) Pevordimas Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2177, maxAtk: 4043, attackType: "Aries" }, +{ itemId: 252153, className: "TSP02_153", name: "Benesda", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 846, maxAtk: 1572, attackType: "Aries" }, +{ itemId: 252154, className: "TSP02_154", name: "Reine Pike", type: "Equip", group: "Weapon", weight: 237, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1188, maxAtk: 2205, attackType: "Aries" }, +{ itemId: 252155, className: "TSP02_155", name: "Sketis Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 539, maxAtk: 1001, attackType: "Aries" }, +{ itemId: 252156, className: "TSP02_156", name: "Pajoritas Pike", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1529, maxAtk: 2839, attackType: "Aries" }, +{ itemId: 252157, className: "TSP02_157", name: "Migantis Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 1870, maxAtk: 3473, attackType: "Aries" }, +{ itemId: 252158, className: "TSP02_158", name: "Pevordimas Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2177, maxAtk: 4043, attackType: "Aries" }, +{ itemId: 252159, className: "TSP02_159", name: "Raffye Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 350, equipExpGroup: "Equip", minAtk: 2416, maxAtk: 4487, attackType: "Aries" }, +{ itemId: 252160, className: "TSP02_160", name: "Zvaigzde Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 2621, maxAtk: 4867, attackType: "Aries" }, +{ itemId: 252161, className: "TSP02_161", name: "Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 2757, maxAtk: 5121, attackType: "Aries" }, +{ itemId: 253101, className: "TSP03_101", name: "Traxia", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 593, maxAtk: 1101, attackType: "Aries" }, +{ itemId: 253102, className: "TSP03_102", name: "Biteregina Thorns", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 593, maxAtk: 1101, addMaxAtk: 20, largeSizeBonus: 97, attackType: "Aries" }, +{ itemId: 253103, className: "TSP03_103", name: "Lydeka", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 13732, sellPrice: 7760, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 593, maxAtk: 1101, attackType: "Aries" }, +{ itemId: 253104, className: "TSP03_104", name: "noname", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 38803, sellPrice: 12697, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1306, maxAtk: 2426, largeSizeBonus: 87, attackType: "Aries" }, +{ itemId: 253105, className: "TSP03_105", name: "noname", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 931, maxAtk: 1729, pAtk: 121, attackType: "Aries" }, +{ itemId: 253106, className: "TSP03_106", name: "Cripple", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12902, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1682, maxAtk: 3123, attackType: "Aries" }, +{ itemId: 253107, className: "TSP03_107", name: "Seimos Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 931, maxAtk: 1729, attackType: "Aries" }, +{ itemId: 253108, className: "TSP03_108", name: "noname", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 128, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 931, maxAtk: 1729, attackType: "Aries" }, +{ itemId: 253109, className: "TSP03_109", name: "Magas Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1306, maxAtk: 2426, addMinAtk: 30, attackType: "Aries" }, +{ itemId: 253110, className: "TSP03_110", name: "noname", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1306, maxAtk: 2426, attackType: "Aries" }, +{ itemId: 253111, className: "TSP03_111", name: "noname", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 128, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1682, maxAtk: 3123, attackType: "Aries" }, +{ itemId: 253112, className: "TSP03_112", name: "Pensara Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1682, maxAtk: 3123, attackType: "Aries" }, +{ itemId: 253115, className: "TSP03_115", name: "Sacmet", type: "Equip", group: "Weapon", weight: 205, maxStack: 1, price: 78080, sellPrice: 17798, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2395, maxAtk: 4448, attackType: "Aries" }, +{ itemId: 253301, className: "TSP03_301", name: "(Faded) Benesda", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 931, maxAtk: 1729, addMinAtk: 71, addMaxAtk: 100, attackType: "Aries" }, +{ itemId: 253302, className: "TSP03_302", name: "(Faded) Reine Pike", type: "Equip", group: "Weapon", weight: 237, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1306, maxAtk: 2426, attackType: "Aries" }, +{ itemId: 253303, className: "TSP03_303", name: "(Faded) Sketis Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 593, maxAtk: 1101, middleSizeBonus: 50, largeSizeBonus: 124, attackType: "Aries" }, +{ itemId: 253304, className: "TSP03_304", name: "(Faded) Pajoritas Pike", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1682, maxAtk: 3123, middleSizeBonus: 102, largeSizeBonus: 204, attackType: "Aries" }, +{ itemId: 253305, className: "TSP03_305", name: "(Faded) Purine Migantis Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 2057, maxAtk: 3820, attackType: "Aries" }, +{ itemId: 253306, className: "TSP03_306", name: "(Faded) Purine Pevordimas Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2395, maxAtk: 4448, attackType: "Aries" }, +{ itemId: 253307, className: "TSP03_307", name: "Berthas Benesda", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 931, maxAtk: 1729, attackType: "Aries" }, +{ itemId: 253308, className: "TSP03_308", name: "Berthas Reine Pike", type: "Equip", group: "Weapon", weight: 237, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1306, maxAtk: 2426, attackType: "Aries" }, +{ itemId: 253309, className: "TSP03_309", name: "Berthas Sketis Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 593, maxAtk: 1101, attackType: "Aries" }, +{ itemId: 253310, className: "TSP03_310", name: "Berthas Pajoritas Pike", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1682, maxAtk: 3123, attackType: "Aries" }, +{ itemId: 253311, className: "TSP03_311", name: "Berthas Migantis Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 2057, maxAtk: 3820, attackType: "Aries" }, +{ itemId: 253312, className: "TSP03_312", name: "Berthas Pevordimas Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2395, maxAtk: 4448, attackType: "Aries" }, +{ itemId: 253313, className: "TSP03_313", name: "Berthas Raffye Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 350, equipExpGroup: "Equip", minAtk: 2658, maxAtk: 4936, attackType: "Aries" }, +{ itemId: 253314, className: "TSP03_314", name: "Berthas Zvaigzde Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 2883, maxAtk: 5354, attackType: "Aries" }, +{ itemId: 253315, className: "TSP03_315", name: "Berthas Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3033, maxAtk: 5633, attackType: "Aries" }, +{ itemId: 253316, className: "TSP03_316", name: "Berthas Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 430, equipExpGroup: "Equip", minAtk: 3258, maxAtk: 6051, attackType: "Aries" }, +{ itemId: 254101, className: "TSP04_101", name: "Flame Pike", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1058, maxAtk: 1965, attackType: "Aries", fireRes: -100 }, +{ itemId: 254102, className: "TSP04_102", name: "Triton", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 24832, sellPrice: 15616, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1058, maxAtk: 1965, attackType: "Aries", iceRes: 56 }, +{ itemId: 254103, className: "TSP04_103", name: "Elements", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 4368, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1484, maxAtk: 2757, attackType: "Aries" }, +{ itemId: 254104, className: "TSP04_104", name: "Ruma Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 7868, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1058, maxAtk: 1965, addMDef: 17, attackType: "Aries" }, +{ itemId: 254105, className: "TSP04_105", name: "Galatunis Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 12697, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1058, maxAtk: 1965, attackType: "Aries" }, +{ itemId: 254106, className: "TSP04_106", name: "noname", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1484, maxAtk: 2757, attackType: "Aries" }, +{ itemId: 254107, className: "TSP04_107", name: "Catacombs Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 12697, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1484, maxAtk: 2757, largeSizeBonus: 188, attackType: "Aries" }, +{ itemId: 254108, className: "TSP04_108", name: "Lolopanther Pike", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 64000, sellPrice: 15616, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 2992, maxAtk: 5557, attackType: "Aries" }, +{ itemId: 254109, className: "TSP04_109", name: "Plunger", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1911, maxAtk: 3549, attackType: "Strike", poisonRes: 35 }, +{ itemId: 254110, className: "TSP04_110", name: "Solmiki Pike", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "THSpear", equipType2: "Spear", minLevel: 330, equipExpGroup: "Equip", minAtk: 3647, maxAtk: 6774, attackType: "Aries" }, +{ itemId: 254111, className: "TSP04_111", name: "Regard Horn Pike", type: "Equip", group: "Weapon", weight: 215, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2721, maxAtk: 5054, attackType: "Aries" }, +{ itemId: 254112, className: "TSP04_112", name: "Primus Benesda", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1058, maxAtk: 1965, attackType: "Aries" }, +{ itemId: 254113, className: "TSP04_113", name: "Primus Reine Pike", type: "Equip", group: "Weapon", weight: 237, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 170, equipExpGroup: "Equip", minAtk: 1484, maxAtk: 2757, attackType: "Aries" }, +{ itemId: 254114, className: "TSP04_114", name: "Primus Sketis Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 75, equipExpGroup: "Equip", minAtk: 674, maxAtk: 1252, attackType: "Aries" }, +{ itemId: 254115, className: "TSP04_115", name: "Primus Pajoritas Pike", type: "Equip", group: "Weapon", weight: 310, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 220, equipExpGroup: "Equip", minAtk: 1911, maxAtk: 3549, attackType: "Aries" }, +{ itemId: 254116, className: "TSP04_116", name: "Primus Migantis Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 2338, maxAtk: 4341, attackType: "Aries" }, +{ itemId: 254117, className: "TSP04_117", name: "Primus Pevordimas Pike", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2721, maxAtk: 5054, attackType: "Aries" }, +{ itemId: 254118, className: "TSP04_118", name: "Primus Raffye Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 350, equipExpGroup: "Equip", minAtk: 3020, maxAtk: 5609, attackType: "Aries" }, +{ itemId: 254119, className: "TSP04_119", name: "Masinios Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 350, equipExpGroup: "Equip", minAtk: 3020, maxAtk: 5609, attackType: "Aries" }, +{ itemId: 254120, className: "TSP04_120", name: "Primus Zvaigzde Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, +{ itemId: 254121, className: "TSP04_121", name: "Wastrel Zvaigzde Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, +{ itemId: 254122, className: "TSP04_122", name: "Asio Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, +{ itemId: 254123, className: "TSP04_123", name: "Primus Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, +{ itemId: 254124, className: "TSP04_124", name: "Skiaclipse Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3447, maxAtk: 6401, addMaxAtk: 725, attackType: "Aries" }, +{ itemId: 254125, className: "TSP04_125", name: "Moringponia Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, +{ itemId: 254126, className: "TSP04_126", name: "Misrus Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, +{ itemId: 254127, className: "TSP04_127", name: "Primus Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 430, equipExpGroup: "Equip", minAtk: 3703, maxAtk: 6876, attackType: "Aries" }, +{ itemId: 255101, className: "TSP05_101", name: "Velcoffer Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 360, equipExpGroup: "Equip", minAtk: 3975, maxAtk: 7382, attackType: "Aries" }, +{ itemId: 255102, className: "TSP05_102", name: "Velcoffer Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 360, equipExpGroup: "Equip", minAtk: 3975, maxAtk: 7382, attackType: "Aries" }, +{ itemId: 255103, className: "TSP05_103", name: "Savinose Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, +{ itemId: 255104, className: "TSP05_104", name: "Skiaclipse Varna Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, +{ itemId: 271101, className: "TSF01_101", name: "Crude Wooden Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 170, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 44, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271102, className: "TSF01_102", name: "Crude Oak Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 167, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271103, className: "TSF01_103", name: "Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 167, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271104, className: "TSF01_104", name: "Ju Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 1164, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 386, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271105, className: "TSF01_105", name: "Ubuko Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 386, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271106, className: "TSF01_106", name: "Stag Staff", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 386, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271107, className: "TSF01_107", name: "Geometry Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 386, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271108, className: "TSF01_108", name: "Demon Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 693, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271109, className: "TSF01_109", name: "Storm Staff", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 693, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271110, className: "TSF01_110", name: "Wooden Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 393, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 44, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271111, className: "TSF01_111", name: "Superior Wooden Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 44, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271112, className: "TSF01_112", name: "Oak Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 167, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271113, className: "TSF01_113", name: "Superior Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 167, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271114, className: "TSF01_114", name: "Superior Ju Staff", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 386, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271115, className: "TSF01_115", name: "Superior Ubuko Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 386, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, { itemId: 271116, className: "TSF01_116", name: "Dunkel Ju Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 386, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, { itemId: 271117, className: "TSF01_117", name: "Dunkel Demon Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 2939, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 693, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, { itemId: 271118, className: "TSF01_118", name: "Dunkel Wooden Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 170, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 44, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, { itemId: 271119, className: "TSF01_119", name: "Dunkel Oak Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, mAtk: 167, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, { itemId: 271120, className: "TSF01_120", name: "Dunkel Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, mAtk: 167, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, { itemId: 271121, className: "TSF01_121", name: "Dunkel Uboko Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 5824, sellPrice: 2374, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 386, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271122, className: "TSF01_122", name: "Drake Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 693, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271123, className: "TSF01_123", name: "Superior Drake Staff", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1088, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271124, className: "TSF01_124", name: "Cross Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1088, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271125, className: "TSF01_125", name: "Superior Cross Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1088, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271126, className: "TSF01_126", name: "Astro Staff", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 8030, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1527, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271127, className: "TSF01_127", name: "Superior Astro Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1527, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271128, className: "TSF01_128", name: "Bokun Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1527, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271122, className: "TSF01_122", name: "Drake Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 693, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271123, className: "TSF01_123", name: "Superior Drake Staff", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1088, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271124, className: "TSF01_124", name: "Cross Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1088, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271125, className: "TSF01_125", name: "Superior Cross Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1088, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271126, className: "TSF01_126", name: "Astro Staff", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 38803, sellPrice: 8030, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1527, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271127, className: "TSF01_127", name: "Superior Astro Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1527, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271128, className: "TSF01_128", name: "Bokun Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1527, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, { itemId: 271129, className: "TSF01_129", name: "Yorgis Drake Staff", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 24832, sellPrice: 4368, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1088, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271130, className: "TSF01_130", name: "Evil Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, mAtk: 1966, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271131, className: "TSF01_131", name: "Superior Evil Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, mAtk: 1966, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271132, className: "TSF01_132", name: "(Faded) Replica Migantis Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, mAtk: 2404, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271133, className: "TSF01_133", name: "(Faded) Replica Pevordimas Staff", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 144000, sellPrice: 5000, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, mAtk: 2799, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 271999, className: "TSF01_999", name: "Standard Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 13209, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, mAtk: 167, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272101, className: "TSF02_101", name: "Melinas Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 1388, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, mAtk: 185, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272102, className: "TSF02_102", name: "Magi Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 429, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272103, className: "TSF02_103", name: "Ludas Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 429, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272104, className: "TSF02_104", name: "Saltas Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 3322, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272105, className: "TSF02_105", name: "Cheminis Staff", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 5824, sellPrice: 2794, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 429, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272106, className: "TSF02_106", name: "Karsto Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272107, className: "TSF02_107", name: "Expecta Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272108, className: "TSF02_108", name: "Black Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, pAtk: 181, mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272109, className: "TSF02_109", name: "Welsh Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1696, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272110, className: "TSF02_110", name: "Magic Wooden Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 640, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 49, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272111, className: "TSF02_111", name: "Smith Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 640, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 49, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272112, className: "TSF02_112", name: "Klavis Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, mAtk: 185, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272113, className: "TSF02_113", name: "Dio Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 1164, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, mAtk: 185, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272114, className: "TSF02_114", name: "Thresh Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 5824, sellPrice: 2746, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 429, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272115, className: "TSF02_115", name: "Sestas Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272116, className: "TSF02_116", name: "Dratt Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272117, className: "TSF02_117", name: "Aston Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1696, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272118, className: "TSF02_118", name: "Tenet Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 429, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272119, className: "TSF02_119", name: "Patrice Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 429, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272120, className: "TSF02_120", name: "Lukas Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272121, className: "TSF02_121", name: "Philis Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272122, className: "TSF02_122", name: "Escanciu Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272123, className: "TSF02_123", name: "Krag Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272124, className: "TSF02_124", name: "Pilgrim Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24832, sellPrice: 4414, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272125, className: "TSF02_125", name: "Istora Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 38803, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1696, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272126, className: "TSF02_126", name: "Earth Drake Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272127, className: "TSF02_127", name: "Red Cross Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272128, className: "TSF02_128", name: "Artie Cross Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1209, addMDef: 21, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272129, className: "TSF02_129", name: "Lumas Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 4966, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272130, className: "TSF02_130", name: "Hunting Astro Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1696, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272131, className: "TSF02_131", name: "Light Astro Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1696, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272132, className: "TSF02_132", name: "Artie Bokun Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1696, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272133, className: "TSF02_133", name: "Dellis Evil Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, mAtk: 2184, largeSizeBonus: 48, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272134, className: "TSF02_134", name: "Ice Evil Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, mAtk: 2184, attackType: "Strike", leftHandSkill: "Common_StaffAttack", iceRes: 29 }, -{ itemId: 272135, className: "TSF02_135", name: "Artie Stag Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, mAtk: 2184, addDef: 22, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272136, className: "TSF02_136", name: "Supportive Drake Staff", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272150, className: "TSF02_150", name: "Tevhrin Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, mAtk: 2184, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272151, className: "TSF02_151", name: "(Faded) Migantis Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, mAtk: 2671, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272152, className: "TSF02_152", name: "(Faded) Pevordimas Staff", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, mAtk: 3110, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272153, className: "TSF02_153", name: "Ellinis", type: "Equip", group: "Weapon", weight: 151, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272154, className: "TSF02_154", name: "Tiesa Staff", type: "Equip", group: "Weapon", weight: 164, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1696, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272155, className: "TSF02_155", name: "Sketis Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272156, className: "TSF02_156", name: "Pajoritas Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, mAtk: 2184, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272157, className: "TSF02_157", name: "Migantis Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, mAtk: 2671, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272158, className: "TSF02_158", name: "Pevordimas Staff", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, mAtk: 3110, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272159, className: "TSF02_159", name: "Raffye Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 350, mAtk: 3451, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272160, className: "TSF02_160", name: "Zvaigzde Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, mAtk: 3744, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 272161, className: "TSF02_161", name: "Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 3939, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273101, className: "TSF03_101", name: "Candle Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 847, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273102, className: "TSF03_102", name: "Audra", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1866, attackType: "Strike", leftHandSkill: "Common_StaffAttack", fireRes: -40 }, -{ itemId: 273103, className: "TSF03_103", name: "Sunflower", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1330, attackType: "Strike", leftHandSkill: "Common_StaffAttack", iceRes: -59 }, -{ itemId: 273104, className: "TSF03_104", name: "Maledic", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1330, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273105, className: "TSF03_105", name: "Maledoom", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1866, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273106, className: "TSF03_106", name: "Chapparition Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, mAtk: 536, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273107, className: "TSF03_107", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1866, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273108, className: "TSF03_108", name: "noname", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1330, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273109, className: "TSF03_109", name: "Power Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 10401, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, mAtk: 2402, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273110, className: "TSF03_110", name: "Seimos Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1330, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273111, className: "TSF03_111", name: "Wizard Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1330, smallSizeBonus: 39, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273112, className: "TSF03_112", name: "Magas Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1866, addMDef: 29, attackType: "Strike", leftHandSkill: "Common_StaffAttack", fireRes: 29 }, -{ itemId: 273113, className: "TSF03_113", name: "noname", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1866, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273114, className: "TSF03_114", name: "noname", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 128, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, mAtk: 2402, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273115, className: "TSF03_115", name: "Pensara Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 2794, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, mAtk: 2402, attackType: "Strike", leftHandSkill: "Common_StaffAttack", holyRes: 39 }, -{ itemId: 273120, className: "TSF03_120", name: "Vienarazis Staff", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, mAtk: 3421, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273301, className: "TSF03_301", name: "(Faded) Ellinis", type: "Equip", group: "Weapon", weight: 151, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1330, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273302, className: "TSF03_302", name: "(Faded) Tiesa Staff", type: "Equip", group: "Weapon", weight: 164, maxStack: 1, price: 38803, sellPrice: 8030, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1866, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273303, className: "TSF03_303", name: "(Faded) Sketis Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 847, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273304, className: "TSF03_304", name: "(Faded) Pajoritas Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, mAtk: 2402, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273305, className: "TSF03_305", name: "(Faded) Purine Migantis Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, mAtk: 2939, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273306, className: "TSF03_306", name: "(Faded) Purine Pevordimas Staff", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, mAtk: 3421, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273307, className: "TSF03_307", name: "Berthas Elinis", type: "Equip", group: "Weapon", weight: 151, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1330, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273308, className: "TSF03_308", name: "Berthas Tiesa Staff", type: "Equip", group: "Weapon", weight: 164, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 1866, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273309, className: "TSF03_309", name: "Berthas Sketis Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 847, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273310, className: "TSF03_310", name: "Berthas Pajoritas Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, mAtk: 2402, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273311, className: "TSF03_311", name: "Berthas Migantis Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, mAtk: 2939, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273312, className: "TSF03_312", name: "Berthas Pevordimas Staff", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, mAtk: 3421, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273313, className: "TSF03_313", name: "Berthas Raffye Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 350, mAtk: 3797, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273314, className: "TSF03_314", name: "Berthas Zvaigzde Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, mAtk: 4118, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273315, className: "TSF03_315", name: "Berthas Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4333, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 273316, className: "TSF03_316", name: "Berthas Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 430, mAtk: 4655, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274101, className: "TSF04_101", name: "Arca Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1511, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274102, className: "TSF04_102", name: "Raganos Horn", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 15616, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1511, addMDef: 110, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274103, className: "TSF04_103", name: "Ruma Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1511, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274104, className: "TSF04_104", name: "Galatunis Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 12697, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1511, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274105, className: "TSF04_105", name: "noname", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 2121, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274106, className: "TSF04_106", name: "Catacombs Staff", type: "Equip", group: "Weapon", weight: 400, maxStack: 1, price: 38803, sellPrice: 4414, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 2121, addDef: 16, addMDef: 23, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274107, className: "TSF04_107", name: "Lolopanther Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 64000, sellPrice: 15616, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, mAtk: 4274, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274108, className: "TSF04_108", name: "Solmiki Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "THStaff", equipType2: "Staff", minLevel: 330, mAtk: 5210, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274109, className: "TSF04_109", name: "Regard Horn Staff", type: "Equip", group: "Weapon", weight: 235, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, mAtk: 3888, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274110, className: "TSF04_110", name: "Primus Elinis", type: "Equip", group: "Weapon", weight: 151, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 1511, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274111, className: "TSF04_111", name: "Primus Tiesa Staff", type: "Equip", group: "Weapon", weight: 164, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, mAtk: 2121, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274112, className: "TSF04_112", name: "Primus Sketis Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, mAtk: 963, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274113, className: "TSF04_113", name: "Primus Pajoritas Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, mAtk: 2730, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274114, className: "TSF04_114", name: "Primus Migantis Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, mAtk: 3339, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274115, className: "TSF04_115", name: "Primus Pevordimas Staff", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, mAtk: 3888, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274116, className: "TSF04_116", name: "Primus Raffye Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 350, mAtk: 4314, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274117, className: "TSF04_117", name: "Masinios Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 350, mAtk: 4314, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274118, className: "TSF04_118", name: "Primus Zvaigzde Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274119, className: "TSF04_19", name: "Wastrel Zvaigzde Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274120, className: "TSF04_120", name: "Asio Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274121, className: "TSF04_121", name: "Primus Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274122, className: "TSF04_122", name: "Skiaclipse Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274123, className: "TSF04_123", name: "Skiaclipse Caster", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274124, className: "TSF04_124", name: "Skiaclipse Rune Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274125, className: "TSF04_125", name: "Moringponia Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274126, className: "TSF04_126", name: "Moringponia Caster", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274127, className: "TSF04_127", name: "Misrus Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4924, addMAtk: 407, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 274128, className: "TSF04_128", name: "Primus Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 430, mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 275101, className: "TSF05_101", name: "Velcoffer Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 360, mAtk: 5678, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 275102, className: "TSF05_102", name: "Velcoffer Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 360, mAtk: 5678, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 275103, className: "TSF05_103", name: "Savinose Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 275104, className: "TSF05_104", name: "Skiaclipse Varna Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 311101, className: "RAP01_101", name: "Rapier", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 24252, sellPrice: 5018, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1292, maxAtk: 1292, attackType: "Aries" }, -{ itemId: 311102, className: "RAP01_102", name: "Superior Rapier", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1292, maxAtk: 1292, attackType: "Aries" }, -{ itemId: 311103, className: "RAP01_103", name: "Training Rapier", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 24252, sellPrice: 4335, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1292, maxAtk: 1292, attackType: "Aries" }, -{ itemId: 311104, className: "RAP01_104", name: "Epee", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1292, maxAtk: 1292, attackType: "Aries" }, -{ itemId: 311105, className: "RAP01_105", name: "Dual Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, minAtk: 1663, maxAtk: 1663, attackType: "Aries" }, -{ itemId: 311106, className: "RAP01_106", name: "Superior Dual Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, minAtk: 1663, maxAtk: 1663, attackType: "Aries" }, -{ itemId: 311107, className: "RAP01_107", name: "(Faded) Replica Migantis Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 80000, sellPrice: 5000, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, minAtk: 2034, maxAtk: 2034, attackType: "Aries" }, -{ itemId: 311108, className: "RAP01_108", name: "(Faded) Replica Pevordimas Rapier", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 120000, sellPrice: 5000, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, minAtk: 2369, maxAtk: 2369, attackType: "Aries" }, -{ itemId: 311109, className: "RAP01_109", name: "Training Rapier", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1292, maxAtk: 1292, attackType: "Aries" }, -{ itemId: 311110, className: "RAP01_110", name: "Training Rapier", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, minAtk: 2034, maxAtk: 2034, attackType: "Aries" }, -{ itemId: 311111, className: "RAP01_111", name: "Training Rapier", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 500, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 15, minAtk: 141, maxAtk: 141, attackType: "Aries" }, -{ itemId: 311112, className: "RAP01_112", name: "Dunkel Rapier", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 800, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 40, minAtk: 327, maxAtk: 327, attackType: "Aries" }, -{ itemId: 311113, className: "RAP01_113", name: "Dunkel Raudona Rapier", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 1200, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 75, minAtk: 587, maxAtk: 587, attackType: "Aries" }, -{ itemId: 312101, className: "RAP02_101", name: "Aston Rapier", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1436, maxAtk: 1436, attackType: "Aries" }, -{ itemId: 312102, className: "RAP02_102", name: "Sharp Rapier", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1436, maxAtk: 1436, attackType: "Aries" }, -{ itemId: 312103, className: "RAP02_103", name: "Eki Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1436, maxAtk: 1436, attackType: "Aries" }, -{ itemId: 312104, className: "RAP02_104", name: "Lightning Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1436, maxAtk: 1436, attackType: "Aries" }, -{ itemId: 312105, className: "RAP02_105", name: "Duris Epee", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1436, maxAtk: 1436, middleSizeBonus: 42, attackType: "Aries" }, -{ itemId: 312106, className: "RAP02_106", name: "Coro Epee", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, minAtk: 1848, maxAtk: 1848, attackType: "Aries" }, -{ itemId: 312107, className: "RAP02_107", name: "Artie Dual Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, minAtk: 1848, maxAtk: 1848, addMDef: 22, attackType: "Aries" }, -{ itemId: 312108, className: "RAP02_108", name: "Slaake Dual Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, minAtk: 1848, maxAtk: 1848, attackType: "Aries" }, -{ itemId: 312111, className: "RAP02_111", name: "Tevhrin Rapier", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, minAtk: 1848, maxAtk: 1848, attackType: "Aries" }, -{ itemId: 312112, className: "RAP02_112", name: "(Faded) Migantis Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, minAtk: 2261, maxAtk: 2261, attackType: "Aries" }, -{ itemId: 312113, className: "RAP02_113", name: "(Faded) Pevordimas Rapier", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, minAtk: 2632, maxAtk: 2632, attackType: "Aries" }, -{ itemId: 312114, className: "RAP02_114", name: "Red Karuna", type: "Equip", group: "Weapon", weight: 105, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1436, maxAtk: 1436, attackType: "Aries" }, -{ itemId: 312115, className: "RAP02_115", name: "Pajoritas Rapier", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, minAtk: 1848, maxAtk: 1848, attackType: "Aries" }, -{ itemId: 312116, className: "RAP02_116", name: "Migantis Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, minAtk: 2261, maxAtk: 2261, attackType: "Aries" }, -{ itemId: 312117, className: "RAP02_117", name: "Pevordimas Rapier", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, minAtk: 2632, maxAtk: 2632, attackType: "Aries" }, -{ itemId: 312118, className: "RAP02_118", name: "Raffye Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 350, minAtk: 2921, maxAtk: 2921, attackType: "Aries" }, -{ itemId: 312119, className: "RAP02_119", name: "Zvaigzde Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, minAtk: 3168, maxAtk: 3168, attackType: "Aries" }, -{ itemId: 312120, className: "RAP02_120", name: "Sketis Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 75, minAtk: 652, maxAtk: 652, attackType: "Aries" }, -{ itemId: 312121, className: "RAP02_121", name: "Duelist Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 120, minAtk: 1023, maxAtk: 1023, attackType: "Aries" }, -{ itemId: 312122, className: "RAP02_122", name: "Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 3333, maxAtk: 3333, attackType: "Aries" }, -{ itemId: 313101, className: "RAP03_101", name: "Duelist", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 24252, sellPrice: 2702, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1579, maxAtk: 1579, largeSizeBonus: 255, attackType: "Aries" }, -{ itemId: 313102, className: "RAP03_102", name: "Spada", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 8000, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, minAtk: 2033, maxAtk: 2033, pAtk: 68, attackType: "Aries" }, -{ itemId: 313103, className: "RAP03_103", name: "Magas Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1579, maxAtk: 1579, attackType: "Aries" }, -{ itemId: 313104, className: "RAP03_104", name: "noname", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1579, maxAtk: 1579, attackType: "Aries" }, -{ itemId: 313105, className: "RAP03_105", name: "noname", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 80, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, minAtk: 2033, maxAtk: 2033, attackType: "Aries" }, -{ itemId: 313106, className: "RAP03_106", name: "Pensara Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, minAtk: 2033, maxAtk: 2033, pAtk: 23, attackType: "Aries" }, -{ itemId: 313301, className: "RAP03_301", name: "(Faded) Red Karuna", type: "Equip", group: "Weapon", weight: 105, maxStack: 1, price: 24252, sellPrice: 4335, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1579, maxAtk: 1579, addMinAtk: 74, addMaxAtk: 91, attackType: "Aries" }, -{ itemId: 313302, className: "RAP03_302", name: "(Faded) Pajoritas Rapier", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, minAtk: 2033, maxAtk: 2033, pAtk: 20, attackType: "Aries" }, -{ itemId: 313303, className: "RAP03_303", name: "(Faded) Purine Migantis Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 6610, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, minAtk: 2487, maxAtk: 2487, attackType: "Aries" }, -{ itemId: 313304, className: "RAP03_304", name: "(Faded) Purine Pevordimas Rapier", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, minAtk: 2895, maxAtk: 2895, attackType: "Aries" }, -{ itemId: 313305, className: "RAP03_305", name: "Elga Rapier", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, minAtk: 2895, maxAtk: 2895, attackType: "Aries" }, -{ itemId: 313306, className: "RAP03_306", name: "Berthas Red Karuna", type: "Equip", group: "Weapon", weight: 105, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1579, maxAtk: 1579, attackType: "Aries" }, -{ itemId: 313307, className: "RAP03_307", name: "Berthas Pajoritas Rapier", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, minAtk: 2033, maxAtk: 2033, attackType: "Aries" }, -{ itemId: 313308, className: "RAP03_308", name: "Berthas Migantis Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, minAtk: 2487, maxAtk: 2487, attackType: "Aries" }, -{ itemId: 313309, className: "RAP03_309", name: "Berthas Pevordimas Rapier", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, minAtk: 2895, maxAtk: 2895, attackType: "Aries" }, -{ itemId: 313310, className: "RAP03_310", name: "Berthas Raffye Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 350, minAtk: 3213, maxAtk: 3213, attackType: "Aries" }, -{ itemId: 313311, className: "RAP03_311", name: "Berthas Zvaigzde Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, minAtk: 3485, maxAtk: 3485, attackType: "Aries" }, -{ itemId: 313312, className: "RAP03_312", name: "Berthas Sketis Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 75, minAtk: 717, maxAtk: 717, attackType: "Aries" }, -{ itemId: 313313, className: "RAP03_313", name: "Berthas Duelist Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 120, minAtk: 1125, maxAtk: 1125, attackType: "Aries" }, -{ itemId: 313314, className: "RAP03_314", name: "Berthas Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 3666, maxAtk: 3666, attackType: "Aries" }, -{ itemId: 313315, className: "RAP03_315", name: "Berthas Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 430, minAtk: 3939, maxAtk: 3939, attackType: "Aries" }, -{ itemId: 314101, className: "RAP04_101", name: "Venier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 1716, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1073, maxAtk: 1073, attackType: "Aries" }, -{ itemId: 314102, className: "RAP04_102", name: "noname", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1794, maxAtk: 1794, attackType: "Aries" }, -{ itemId: 314103, className: "RAP04_103", name: "Catacombs Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 7936, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1794, maxAtk: 1794, attackType: "Aries" }, -{ itemId: 314104, className: "RAP04_104", name: "Lolopanther Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, minAtk: 3617, maxAtk: 3617, largeSizeBonus: 207, attackType: "Aries" }, -{ itemId: 314105, className: "RAP04_105", name: "Solmiki Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 48800, sellPrice: 12952, equipType1: "Rapier", equipType2: "Sword", minLevel: 330, minAtk: 4409, maxAtk: 4409, largeSizeBonus: 421, attackType: "Aries" }, -{ itemId: 314106, className: "RAP04_106", name: "Black Horn", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 48800, sellPrice: 11991, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, minAtk: 3290, maxAtk: 3290, attackType: "Aries" }, -{ itemId: 314107, className: "RAP04_107", name: "Primus Red Karuna", type: "Equip", group: "Weapon", weight: 105, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, minAtk: 1794, maxAtk: 1794, attackType: "Aries" }, -{ itemId: 314108, className: "RAP04_108", name: "Primus Pajoritas Rapier", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, minAtk: 2310, maxAtk: 2310, attackType: "Aries" }, -{ itemId: 314109, className: "RAP04_109", name: "Primus Migantis Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, minAtk: 2826, maxAtk: 2826, attackType: "Aries" }, -{ itemId: 314110, className: "RAP04_110", name: "Primus Pevordimas Rapier", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, minAtk: 3290, maxAtk: 3290, attackType: "Aries" }, -{ itemId: 314111, className: "RAP04_111", name: "Primus Raffye Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 350, minAtk: 3651, maxAtk: 3651, attackType: "Aries" }, -{ itemId: 314112, className: "RAP04_112", name: "Masinios Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 350, minAtk: 3651, maxAtk: 3651, attackType: "Aries" }, -{ itemId: 314113, className: "RAP04_113", name: "Primus Zvaigzde Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, minAtk: 3960, maxAtk: 3960, attackType: "Aries" }, -{ itemId: 314114, className: "RAP04_114", name: "Wastrel Zvaigzde Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, minAtk: 3960, maxAtk: 3960, pAtk: 132, attackType: "Aries" }, -{ itemId: 314115, className: "RAP04_115", name: "Asio Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, minAtk: 3960, maxAtk: 3960, attackType: "Aries" }, -{ itemId: 314116, className: "RAP04_116", name: "Primus Sketis Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 75, minAtk: 815, maxAtk: 815, attackType: "Aries" }, -{ itemId: 314117, className: "RAP04_117", name: "Primus Duelist Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 120, minAtk: 1279, maxAtk: 1279, attackType: "Aries" }, -{ itemId: 314118, className: "RAP04_118", name: "Primus Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, -{ itemId: 314119, className: "RAP04_119", name: "Skiaclipse Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, -{ itemId: 314120, className: "RAP04_120", name: "Skiaclipse Epee", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, -{ itemId: 314121, className: "RAP04_121", name: "Moringponia Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, -{ itemId: 314122, className: "RAP04_122", name: "Misrus Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, -{ itemId: 314123, className: "RAP04_123", name: "Primus Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 430, minAtk: 4476, maxAtk: 4476, attackType: "Aries" }, -{ itemId: 315101, className: "RAP05_101", name: "Velcoffer Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 360, minAtk: 4805, maxAtk: 4805, attackType: "Aries" }, -{ itemId: 315102, className: "RAP05_102", name: "Velcoffer Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 360, minAtk: 4805, maxAtk: 4805, attackType: "Aries" }, -{ itemId: 315103, className: "RAP05_103", name: "Savinose Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, -{ itemId: 315104, className: "RAP05_104", name: "Skiaclipse Varna Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, -{ itemId: 321001, className: "CAN01_101", name: "Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 3955, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, -{ itemId: 321002, className: "CAN01_102", name: "Superior Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4780, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, -{ itemId: 321003, className: "CAN01_103", name: "Practice Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 3920, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, -{ itemId: 321004, className: "CAN01_104", name: "Yorgis Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 3920, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, -{ itemId: 321005, className: "CAN01_105", name: "Critti Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4761, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 1092, maxAtk: 3276, attackType: "Cannon" }, -{ itemId: 321006, className: "CAN01_106", name: "Vista Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4780, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 1092, maxAtk: 3276, attackType: "Cannon" }, -{ itemId: 321007, className: "CAN01_107", name: "Erera Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4838, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 1201, maxAtk: 3604, attackType: "Cannon" }, -{ itemId: 321008, className: "CAN01_108", name: "Stropy Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4761, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 1201, maxAtk: 3604, attackType: "Cannon" }, -{ itemId: 321009, className: "CAN01_109", name: "Agvara Cannon", type: "Equip", group: "Weapon", weight: 300, maxStack: 1, price: 52276, sellPrice: 5856, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 1365, maxAtk: 4095, attackType: "Cannon" }, -{ itemId: 321010, className: "CAN01_110", name: "(Faded) Replica Migantis Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, minAtk: 1202, maxAtk: 3607, attackType: "Cannon" }, -{ itemId: 321011, className: "CAN01_111", name: "(Faded) Replica Pevordimas Cannon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, minAtk: 1400, maxAtk: 4199, attackType: "Cannon" }, -{ itemId: 321012, className: "CAN01_112", name: "Practice Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, -{ itemId: 321013, className: "CAN01_113", name: "Practice Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 170, minAtk: 763, maxAtk: 2290, attackType: "Cannon" }, -{ itemId: 321999, className: "CAN01_999", name: "Standard Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4953, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, -{ itemId: 322001, className: "CAN02_101", name: "Tevhrin Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 3920, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, -{ itemId: 322002, className: "CAN02_102", name: "Noname Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4780, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, -{ itemId: 322003, className: "CAN02_103", name: "Enhanced Vista Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4780, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 1092, maxAtk: 3276, attackType: "Cannon" }, -{ itemId: 322004, className: "CAN02_104", name: "(Faded) Migantis Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, minAtk: 1336, maxAtk: 4007, attackType: "Cannon" }, -{ itemId: 322005, className: "CAN02_105", name: "(Faded) Pevordimas Cannon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, minAtk: 1555, maxAtk: 4665, attackType: "Cannon" }, -{ itemId: 322006, className: "CAN02_106", name: "Pajoritas Cannon", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 1092, maxAtk: 3276, attackType: "Cannon" }, -{ itemId: 322007, className: "CAN02_107", name: "Migantis Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, minAtk: 1336, maxAtk: 4007, attackType: "Cannon" }, -{ itemId: 322008, className: "CAN02_108", name: "Pevordimas Cannon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, minAtk: 1555, maxAtk: 4665, attackType: "Cannon" }, -{ itemId: 322009, className: "CAN02_109", name: "Raffye Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 350, minAtk: 1726, maxAtk: 5177, attackType: "Cannon" }, -{ itemId: 322010, className: "CAN02_110", name: "Zvaigzde Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, minAtk: 1872, maxAtk: 5616, attackType: "Cannon" }, -{ itemId: 322011, className: "CAN02_111", name: "Reine Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 170, minAtk: 848, maxAtk: 2545, attackType: "Cannon" }, -{ itemId: 322012, className: "CAN02_112", name: "Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 1969, maxAtk: 5908, attackType: "Cannon" }, -{ itemId: 323001, className: "CAN03_101", name: "Lionhead Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 78080, sellPrice: 7753, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, minAtk: 1711, maxAtk: 5132, attackType: "Cannon" }, -{ itemId: 323002, className: "CAN03_102", name: "(Faded) Pajoritas Cannon", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 52276, sellPrice: 3920, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 1201, maxAtk: 3604, attackType: "Cannon" }, -{ itemId: 323003, className: "CAN03_103", name: "(Faded) Purine Migantis Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, minAtk: 1469, maxAtk: 4408, attackType: "Cannon" }, -{ itemId: 323004, className: "CAN03_104", name: "(Faded) Purine Pevordimas Cannon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, minAtk: 1711, maxAtk: 5132, attackType: "Cannon" }, -{ itemId: 323005, className: "CAN03_105", name: "Berthas Pajoritas Cannon", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 1201, maxAtk: 3604, attackType: "Cannon" }, -{ itemId: 323006, className: "CAN03_106", name: "Berthas Migantis Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, minAtk: 1469, maxAtk: 4408, attackType: "Cannon" }, -{ itemId: 323007, className: "CAN03_107", name: "Berthas Pevordimas Cannon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, minAtk: 1711, maxAtk: 5132, attackType: "Cannon" }, -{ itemId: 323008, className: "CAN03_108", name: "Berthas Raffye Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 350, minAtk: 1898, maxAtk: 5695, attackType: "Cannon" }, -{ itemId: 323009, className: "CAN03_109", name: "Berthas Zvaigzde Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, minAtk: 2059, maxAtk: 6178, attackType: "Cannon" }, -{ itemId: 323010, className: "CAN03_110", name: "Berthas Reine Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 170, minAtk: 933, maxAtk: 2799, attackType: "Cannon" }, -{ itemId: 323011, className: "CAN03_111", name: "Berthas Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 2166, maxAtk: 6499, attackType: "Cannon" }, -{ itemId: 323012, className: "CAN03_112", name: "Berthas Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 430, minAtk: 2327, maxAtk: 6982, attackType: "Cannon" }, -{ itemId: 324101, className: "CAN04_101", name: "Lolopanther Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 64000, sellPrice: 5856, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, minAtk: 2137, maxAtk: 6412, attackType: "Cannon" }, -{ itemId: 324102, className: "CAN04_102", name: "Solmiki Cannon", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 78080, sellPrice: 7771, equipType1: "Cannon", equipType2: "Gun", minLevel: 330, minAtk: 2605, maxAtk: 7816, attackType: "Cannon" }, -{ itemId: 324103, className: "CAN04_103", name: "Emengard Cannon", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 78080, sellPrice: 8868, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, minAtk: 1944, maxAtk: 5832, addMaxAtk: 302, attackType: "Cannon" }, -{ itemId: 324104, className: "CAN04_104", name: "Primus Pajoritas Cannon", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 1365, maxAtk: 4095, attackType: "Cannon" }, -{ itemId: 324105, className: "CAN04_105", name: "Primus Migantis Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, minAtk: 1670, maxAtk: 5009, attackType: "Cannon" }, -{ itemId: 324106, className: "CAN04_106", name: "Primus Pevordimas Cannon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, minAtk: 1944, maxAtk: 5832, attackType: "Cannon" }, -{ itemId: 324107, className: "CAN04_107", name: "Primus Raffye Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 350, minAtk: 2157, maxAtk: 6472, attackType: "Cannon" }, -{ itemId: 324108, className: "CAN04_108", name: "Masinios Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 350, minAtk: 2157, maxAtk: 6472, addMaxAtk: 314, attackType: "Cannon" }, -{ itemId: 324109, className: "CAN04_109", name: "Primus Zvaigzde Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, -{ itemId: 324110, className: "CAN04_110", name: "Wastrel Zvaigzde Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, -{ itemId: 324111, className: "CAN04_111", name: "Asio Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, -{ itemId: 324112, className: "CAN04_112", name: "Primus Reine Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 170, minAtk: 1060, maxAtk: 3181, attackType: "Cannon" }, -{ itemId: 324113, className: "CAN04_113", name: "Primus Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 2462, maxAtk: 7386, attackType: "Cannon" }, -{ itemId: 324114, className: "CAN04_114", name: "Skiaclipse Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 2462, maxAtk: 7386, addMaxAtk: 732, attackType: "Cannon" }, -{ itemId: 324115, className: "CAN04_115", name: "Moringponia Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 2462, maxAtk: 7386, attackType: "Cannon" }, -{ itemId: 324116, className: "CAN04_116", name: "Misrus Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 2462, maxAtk: 7386, addMaxAtk: 722, attackType: "Cannon" }, -{ itemId: 324117, className: "CAN04_117", name: "Primus Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 430, minAtk: 2645, maxAtk: 7934, attackType: "Cannon" }, -{ itemId: 325103, className: "CAN05_103", name: "Velcoffer Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 360, minAtk: 2839, maxAtk: 8518, attackType: "Cannon" }, -{ itemId: 325104, className: "CAN05_104", name: "Velcoffer Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 360, minAtk: 2839, maxAtk: 8518, attackType: "Cannon" }, -{ itemId: 325105, className: "CAN05_105", name: "Savinose Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, -{ itemId: 325106, className: "CAN05_106", name: "Skiaclipse Varna Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, -{ itemId: 331001, className: "MUS01_101", name: "Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 10547, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 331002, className: "MUS01_102", name: "Superior Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 331003, className: "MUS01_103", name: "Practice Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 331004, className: "MUS01_102_", name: "Yorgis Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 331005, className: "MUS01_104", name: "Yorgis Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 331006, className: "MUS01_106", name: "(Faded) Replica Migantis Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "Musket", equipType2: "Gun", minLevel: 270, minAtk: 1563, maxAtk: 3246, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 331007, className: "MUS01_107", name: "(Faded) Replica Pevordimas Musket", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 144000, sellPrice: 5000, equipType1: "Musket", equipType2: "Gun", minLevel: 315, minAtk: 1819, maxAtk: 3779, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 331008, className: "MUS01_108", name: "Practice Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 331009, className: "MUS01_110", name: "Practice Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 120, minAtk: 707, maxAtk: 1469, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 331999, className: "MUS01_999", name: "Standard Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 13209, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 332001, className: "MUS02_101", name: "Fire Musket", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1420, maxAtk: 2948, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 332002, className: "MUS02_102", name: "Eki Musket", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1420, maxAtk: 2948, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 332003, className: "MUS02_103", name: "Vienie Musket", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1420, maxAtk: 2948, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 332004, className: "MUS02_104", name: "(Faded) Migantis Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Musket", equipType2: "Gun", minLevel: 270, minAtk: 1736, maxAtk: 3607, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 332005, className: "MUS02_105", name: "(Faded) Pevordimas Musket", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "Musket", equipType2: "Gun", minLevel: 315, minAtk: 2022, maxAtk: 4199, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 332006, className: "MUS02_106", name: "Pajoritas Musket", type: "Equip", group: "Weapon", weight: 165, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1420, maxAtk: 2948, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 332007, className: "MUS02_107", name: "Migantis Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 270, minAtk: 1736, maxAtk: 3607, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 332008, className: "MUS02_108", name: "Pevordimas Musket", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 315, minAtk: 2022, maxAtk: 4199, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 332009, className: "MUS02_109", name: "Raffye Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 350, minAtk: 2243, maxAtk: 4660, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 332010, className: "MUS02_110", name: "Zvaigzde Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, minAtk: 2434, maxAtk: 5054, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 332011, className: "MUS02_111", name: "Crystaras Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 170, minAtk: 1103, maxAtk: 2290, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 332012, className: "MUS02_112", name: "Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 2560, maxAtk: 5318, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333101, className: "MUS03_101", name: "Finisher", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 52276, sellPrice: 13209, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1562, maxAtk: 3243, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333102, className: "MUS03_102", name: "noname", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333103, className: "MUS03_103", name: "Pensara Musket", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1562, maxAtk: 3243, middleSizeBonus: 134, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333104, className: "MUS03_104", name: "Dragoon Piper", type: "Equip", group: "Weapon", weight: 158, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "Musket", equipType2: "Gun", minLevel: 315, minAtk: 2224, maxAtk: 4619, addMinAtk: 75, addMaxAtk: 115, addDef: -13, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333105, className: "MUS03_105", name: "(Faded) Pajoritas Musket", type: "Equip", group: "Weapon", weight: 165, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1562, maxAtk: 3243, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333106, className: "MUS03_106", name: "(Faded) Purine Migantis Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Musket", equipType2: "Gun", minLevel: 270, minAtk: 1910, maxAtk: 3967, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333107, className: "MUS03_107", name: "(Faded) Purine Pevordimas Musket", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "Musket", equipType2: "Gun", minLevel: 315, minAtk: 2224, maxAtk: 4619, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333108, className: "MUS03_108", name: "Berthas Pajoritas Musket", type: "Equip", group: "Weapon", weight: 165, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1562, maxAtk: 3243, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333109, className: "MUS03_109", name: "Berthas Migantis Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 270, minAtk: 1910, maxAtk: 3967, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333110, className: "MUS03_110", name: "Berthas Pevordimas Musket", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 315, minAtk: 2224, maxAtk: 4619, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333111, className: "MUS03_111", name: "Berthas Raffye Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 350, minAtk: 2468, maxAtk: 5125, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333112, className: "MUS03_112", name: "Berthas Zvaigzde Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, minAtk: 2677, maxAtk: 5560, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333113, className: "MUS03_113", name: "Berthas Crystaras Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 170, minAtk: 1213, maxAtk: 2519, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333114, className: "MUS03_114", name: "Berthas Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 2816, maxAtk: 5849, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 333115, className: "MUS03_115", name: "Berthas Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 430, minAtk: 3026, maxAtk: 6284, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334101, className: "MUS04_101", name: "Lolopanther Musket", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64000, sellPrice: 15616, equipType1: "Musket", equipType2: "Gun", minLevel: 270, minAtk: 2778, maxAtk: 5770, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334102, className: "MUS04_102", name: "Solmiki Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "Musket", equipType2: "Gun", minLevel: 330, minAtk: 3387, maxAtk: 7034, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334103, className: "MUS04_103", name: "Emengard Musket", type: "Equip", group: "Weapon", weight: 172, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "Musket", equipType2: "Gun", minLevel: 315, minAtk: 2527, maxAtk: 5249, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334104, className: "MUS04_104", name: "Primus Pajoritas Musket", type: "Equip", group: "Weapon", weight: 165, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1774, maxAtk: 3685, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334105, className: "MUS04_105", name: "Primus Migantis Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 270, minAtk: 2171, maxAtk: 4508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334106, className: "MUS04_106", name: "Primus Pevordimas Musket", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 315, minAtk: 2527, maxAtk: 5249, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334107, className: "MUS04_107", name: "Primus Raffye Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 350, minAtk: 2804, maxAtk: 5824, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334108, className: "MUS04_108", name: "Masinios Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 350, minAtk: 2804, maxAtk: 5824, addMinAtk: -77, addMaxAtk: 777, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334109, className: "MUS04_109", name: "Primus Zvaigzde Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, minAtk: 3042, maxAtk: 6318, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334110, className: "MUS04_110", name: "Wastrel Zvaigzde Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, minAtk: 3042, maxAtk: 6318, addMaxAtk: 732, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334111, className: "MUS04_111", name: "Asio Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, minAtk: 3042, maxAtk: 6318, addMaxAtk: 572, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334112, className: "MUS04_112", name: "Primus Crystaras Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 170, minAtk: 1378, maxAtk: 2863, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334113, className: "MUS04_113", name: "Primus Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 3200, maxAtk: 6647, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334114, className: "MUS04_114", name: "Skiaclipse Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 3200, maxAtk: 6647, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334115, className: "MUS04_115", name: "Moringponia Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 3200, maxAtk: 6647, pAtk: 350, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334116, className: "MUS04_116", name: "Misrus Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 3200, maxAtk: 6647, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 334117, className: "MUS04_117", name: "Primus Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 430, minAtk: 3438, maxAtk: 7141, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 335101, className: "MUS05_101", name: "Velcoffer Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 360, minAtk: 3691, maxAtk: 7666, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 335102, className: "MUS05_102", name: "Velcoffer Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 360, minAtk: 3691, maxAtk: 7666, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 335103, className: "MUS05_103", name: "Savinose Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 335104, className: "MUS05_104", name: "Skiaclipse Varna Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 271130, className: "TSF01_130", name: "Evil Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 1966, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271131, className: "TSF01_131", name: "Superior Evil Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 1966, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271132, className: "TSF01_132", name: "(Faded) Replica Migantis Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 2404, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271133, className: "TSF01_133", name: "(Faded) Replica Pevordimas Staff", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 144000, sellPrice: 5000, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 2799, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 271999, className: "TSF01_999", name: "Standard Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 13209, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 167, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272101, className: "TSF02_101", name: "Melinas Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 1388, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 185, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272102, className: "TSF02_102", name: "Magi Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 429, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272103, className: "TSF02_103", name: "Ludas Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 429, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272104, className: "TSF02_104", name: "Saltas Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 3322, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272105, className: "TSF02_105", name: "Cheminis Staff", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 5824, sellPrice: 2794, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 429, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272106, className: "TSF02_106", name: "Karsto Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272107, className: "TSF02_107", name: "Expecta Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272108, className: "TSF02_108", name: "Black Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", pAtk: 181, mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272109, className: "TSF02_109", name: "Welsh Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1696, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272110, className: "TSF02_110", name: "Magic Wooden Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 640, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 49, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272111, className: "TSF02_111", name: "Smith Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 640, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 49, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272112, className: "TSF02_112", name: "Klavis Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 185, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272113, className: "TSF02_113", name: "Dio Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 1164, equipType1: "THStaff", equipType2: "Staff", minLevel: 15, equipExpGroup: "Equip", mAtk: 185, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272114, className: "TSF02_114", name: "Thresh Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 5824, sellPrice: 2746, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 429, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272115, className: "TSF02_115", name: "Sestas Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272116, className: "TSF02_116", name: "Dratt Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272117, className: "TSF02_117", name: "Aston Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1696, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272118, className: "TSF02_118", name: "Tenet Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 429, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272119, className: "TSF02_119", name: "Patrice Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 5824, sellPrice: 921, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 429, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272120, className: "TSF02_120", name: "Lukas Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272121, className: "TSF02_121", name: "Philis Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272122, className: "TSF02_122", name: "Escanciu Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272123, className: "TSF02_123", name: "Krag Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4323, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272124, className: "TSF02_124", name: "Pilgrim Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24832, sellPrice: 4414, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272125, className: "TSF02_125", name: "Istora Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 38803, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1696, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272126, className: "TSF02_126", name: "Earth Drake Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 5068, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272127, className: "TSF02_127", name: "Red Cross Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272128, className: "TSF02_128", name: "Artie Cross Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1209, addMDef: 21, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272129, className: "TSF02_129", name: "Lumas Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 4966, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272130, className: "TSF02_130", name: "Hunting Astro Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 10401, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1696, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272131, className: "TSF02_131", name: "Light Astro Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1696, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272132, className: "TSF02_132", name: "Artie Bokun Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1696, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272133, className: "TSF02_133", name: "Dellis Evil Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2184, largeSizeBonus: 48, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272134, className: "TSF02_134", name: "Ice Evil Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2184, attackType: "Strike", leftHandSkill: "Common_StaffAttack", iceRes: 29 }, +{ itemId: 272135, className: "TSF02_135", name: "Artie Stag Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2184, addDef: 22, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272136, className: "TSF02_136", name: "Supportive Drake Staff", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 13732, sellPrice: 4966, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272150, className: "TSF02_150", name: "Tevhrin Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2184, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272151, className: "TSF02_151", name: "(Faded) Migantis Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 2671, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272152, className: "TSF02_152", name: "(Faded) Pevordimas Staff", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 3110, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272153, className: "TSF02_153", name: "Ellinis", type: "Equip", group: "Weapon", weight: 151, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1209, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272154, className: "TSF02_154", name: "Tiesa Staff", type: "Equip", group: "Weapon", weight: 164, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1696, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272155, className: "TSF02_155", name: "Sketis Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 770, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272156, className: "TSF02_156", name: "Pajoritas Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2184, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272157, className: "TSF02_157", name: "Migantis Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 2671, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272158, className: "TSF02_158", name: "Pevordimas Staff", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 3110, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272159, className: "TSF02_159", name: "Raffye Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 350, equipExpGroup: "Equip", mAtk: 3451, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272160, className: "TSF02_160", name: "Zvaigzde Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 3744, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 272161, className: "TSF02_161", name: "Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 3939, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273101, className: "TSF03_101", name: "Candle Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 4368, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 847, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273102, className: "TSF03_102", name: "Audra", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1866, attackType: "Strike", leftHandSkill: "Common_StaffAttack", fireRes: -40 }, +{ itemId: 273103, className: "TSF03_103", name: "Sunflower", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1330, attackType: "Strike", leftHandSkill: "Common_StaffAttack", iceRes: -59 }, +{ itemId: 273104, className: "TSF03_104", name: "Maledic", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1330, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273105, className: "TSF03_105", name: "Maledoom", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1866, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273106, className: "TSF03_106", name: "Chapparition Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 5824, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 40, equipExpGroup: "Equip", mAtk: 536, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273107, className: "TSF03_107", name: "noname", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1866, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273108, className: "TSF03_108", name: "noname", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 24832, sellPrice: 7760, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1330, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273109, className: "TSF03_109", name: "Power Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 10401, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2402, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273110, className: "TSF03_110", name: "Seimos Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1330, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273111, className: "TSF03_111", name: "Wizard Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1330, smallSizeBonus: 39, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273112, className: "TSF03_112", name: "Magas Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1866, addMDef: 29, attackType: "Strike", leftHandSkill: "Common_StaffAttack", fireRes: 29 }, +{ itemId: 273113, className: "TSF03_113", name: "noname", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1866, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273114, className: "TSF03_114", name: "noname", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 128, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2402, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273115, className: "TSF03_115", name: "Pensara Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 52276, sellPrice: 2794, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2402, attackType: "Strike", leftHandSkill: "Common_StaffAttack", holyRes: 39 }, +{ itemId: 273120, className: "TSF03_120", name: "Vienarazis Staff", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 3421, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273301, className: "TSF03_301", name: "(Faded) Ellinis", type: "Equip", group: "Weapon", weight: 151, maxStack: 1, price: 24832, sellPrice: 6887, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1330, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273302, className: "TSF03_302", name: "(Faded) Tiesa Staff", type: "Equip", group: "Weapon", weight: 164, maxStack: 1, price: 38803, sellPrice: 8030, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1866, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273303, className: "TSF03_303", name: "(Faded) Sketis Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 847, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273304, className: "TSF03_304", name: "(Faded) Pajoritas Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2402, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273305, className: "TSF03_305", name: "(Faded) Purine Migantis Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 2939, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273306, className: "TSF03_306", name: "(Faded) Purine Pevordimas Staff", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 3421, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273307, className: "TSF03_307", name: "Berthas Elinis", type: "Equip", group: "Weapon", weight: 151, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1330, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273308, className: "TSF03_308", name: "Berthas Tiesa Staff", type: "Equip", group: "Weapon", weight: 164, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 1866, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273309, className: "TSF03_309", name: "Berthas Sketis Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 847, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273310, className: "TSF03_310", name: "Berthas Pajoritas Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2402, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273311, className: "TSF03_311", name: "Berthas Migantis Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 2939, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273312, className: "TSF03_312", name: "Berthas Pevordimas Staff", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 3421, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273313, className: "TSF03_313", name: "Berthas Raffye Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 350, equipExpGroup: "Equip", mAtk: 3797, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273314, className: "TSF03_314", name: "Berthas Zvaigzde Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 4118, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273315, className: "TSF03_315", name: "Berthas Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4333, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 273316, className: "TSF03_316", name: "Berthas Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 430, equipExpGroup: "Equip", mAtk: 4655, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274101, className: "TSF04_101", name: "Arca Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1511, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274102, className: "TSF04_102", name: "Raganos Horn", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 15616, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1511, addMDef: 110, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274103, className: "TSF04_103", name: "Ruma Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1511, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274104, className: "TSF04_104", name: "Galatunis Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 24832, sellPrice: 12697, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1511, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274105, className: "TSF04_105", name: "noname", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 128, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 2121, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274106, className: "TSF04_106", name: "Catacombs Staff", type: "Equip", group: "Weapon", weight: 400, maxStack: 1, price: 38803, sellPrice: 4414, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 2121, addDef: 16, addMDef: 23, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274107, className: "TSF04_107", name: "Lolopanther Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 64000, sellPrice: 15616, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 4274, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274108, className: "TSF04_108", name: "Solmiki Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "THStaff", equipType2: "Staff", minLevel: 330, equipExpGroup: "Equip", mAtk: 5210, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274109, className: "TSF04_109", name: "Regard Horn Staff", type: "Equip", group: "Weapon", weight: 235, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 3888, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274110, className: "TSF04_110", name: "Primus Elinis", type: "Equip", group: "Weapon", weight: 151, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1511, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274111, className: "TSF04_111", name: "Primus Tiesa Staff", type: "Equip", group: "Weapon", weight: 164, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 170, equipExpGroup: "Equip", mAtk: 2121, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274112, className: "TSF04_112", name: "Primus Sketis Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 75, equipExpGroup: "Equip", mAtk: 963, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274113, className: "TSF04_113", name: "Primus Pajoritas Staff", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 220, equipExpGroup: "Equip", mAtk: 2730, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274114, className: "TSF04_114", name: "Primus Migantis Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 3339, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274115, className: "TSF04_115", name: "Primus Pevordimas Staff", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 3888, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274116, className: "TSF04_116", name: "Primus Raffye Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 350, equipExpGroup: "Equip", mAtk: 4314, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274117, className: "TSF04_117", name: "Masinios Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 350, equipExpGroup: "Equip", mAtk: 4314, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274118, className: "TSF04_118", name: "Primus Zvaigzde Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274119, className: "TSF04_19", name: "Wastrel Zvaigzde Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274120, className: "TSF04_120", name: "Asio Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274121, className: "TSF04_121", name: "Primus Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274122, className: "TSF04_122", name: "Skiaclipse Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274123, className: "TSF04_123", name: "Skiaclipse Caster", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274124, className: "TSF04_124", name: "Skiaclipse Rune Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274125, className: "TSF04_125", name: "Moringponia Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274126, className: "TSF04_126", name: "Moringponia Caster", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274127, className: "TSF04_127", name: "Misrus Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4924, addMAtk: 407, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 274128, className: "TSF04_128", name: "Primus Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 430, equipExpGroup: "Equip", mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 275101, className: "TSF05_101", name: "Velcoffer Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 360, equipExpGroup: "Equip", mAtk: 5678, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 275102, className: "TSF05_102", name: "Velcoffer Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 360, equipExpGroup: "Equip", mAtk: 5678, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 275103, className: "TSF05_103", name: "Savinose Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 275104, className: "TSF05_104", name: "Skiaclipse Varna Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 311101, className: "RAP01_101", name: "Rapier", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 24252, sellPrice: 5018, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1292, maxAtk: 1292, attackType: "Aries" }, +{ itemId: 311102, className: "RAP01_102", name: "Superior Rapier", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1292, maxAtk: 1292, attackType: "Aries" }, +{ itemId: 311103, className: "RAP01_103", name: "Training Rapier", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 24252, sellPrice: 4335, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1292, maxAtk: 1292, attackType: "Aries" }, +{ itemId: 311104, className: "RAP01_104", name: "Epee", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1292, maxAtk: 1292, attackType: "Aries" }, +{ itemId: 311105, className: "RAP01_105", name: "Dual Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1663, maxAtk: 1663, attackType: "Aries" }, +{ itemId: 311106, className: "RAP01_106", name: "Superior Dual Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1663, maxAtk: 1663, attackType: "Aries" }, +{ itemId: 311107, className: "RAP01_107", name: "(Faded) Replica Migantis Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 80000, sellPrice: 5000, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2034, maxAtk: 2034, attackType: "Aries" }, +{ itemId: 311108, className: "RAP01_108", name: "(Faded) Replica Pevordimas Rapier", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 120000, sellPrice: 5000, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2369, maxAtk: 2369, attackType: "Aries" }, +{ itemId: 311109, className: "RAP01_109", name: "Training Rapier", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1292, maxAtk: 1292, attackType: "Aries" }, +{ itemId: 311110, className: "RAP01_110", name: "Training Rapier", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2034, maxAtk: 2034, attackType: "Aries" }, +{ itemId: 311111, className: "RAP01_111", name: "Training Rapier", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 500, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 15, equipExpGroup: "Equip", minAtk: 141, maxAtk: 141, attackType: "Aries" }, +{ itemId: 311112, className: "RAP01_112", name: "Dunkel Rapier", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 800, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 40, equipExpGroup: "Equip", minAtk: 327, maxAtk: 327, attackType: "Aries" }, +{ itemId: 311113, className: "RAP01_113", name: "Dunkel Raudona Rapier", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 1200, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 587, maxAtk: 587, attackType: "Aries" }, +{ itemId: 312101, className: "RAP02_101", name: "Aston Rapier", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1436, maxAtk: 1436, attackType: "Aries" }, +{ itemId: 312102, className: "RAP02_102", name: "Sharp Rapier", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1436, maxAtk: 1436, attackType: "Aries" }, +{ itemId: 312103, className: "RAP02_103", name: "Eki Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6501, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1436, maxAtk: 1436, attackType: "Aries" }, +{ itemId: 312104, className: "RAP02_104", name: "Lightning Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1436, maxAtk: 1436, attackType: "Aries" }, +{ itemId: 312105, className: "RAP02_105", name: "Duris Epee", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1436, maxAtk: 1436, middleSizeBonus: 42, attackType: "Aries" }, +{ itemId: 312106, className: "RAP02_106", name: "Coro Epee", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1848, maxAtk: 1848, attackType: "Aries" }, +{ itemId: 312107, className: "RAP02_107", name: "Artie Dual Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1848, maxAtk: 1848, addMDef: 22, attackType: "Aries" }, +{ itemId: 312108, className: "RAP02_108", name: "Slaake Dual Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7968, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1848, maxAtk: 1848, attackType: "Aries" }, +{ itemId: 312111, className: "RAP02_111", name: "Tevhrin Rapier", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1848, maxAtk: 1848, attackType: "Aries" }, +{ itemId: 312112, className: "RAP02_112", name: "(Faded) Migantis Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 5000, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2261, maxAtk: 2261, attackType: "Aries" }, +{ itemId: 312113, className: "RAP02_113", name: "(Faded) Pevordimas Rapier", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2632, maxAtk: 2632, attackType: "Aries" }, +{ itemId: 312114, className: "RAP02_114", name: "Red Karuna", type: "Equip", group: "Weapon", weight: 105, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1436, maxAtk: 1436, attackType: "Aries" }, +{ itemId: 312115, className: "RAP02_115", name: "Pajoritas Rapier", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 1848, maxAtk: 1848, attackType: "Aries" }, +{ itemId: 312116, className: "RAP02_116", name: "Migantis Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2261, maxAtk: 2261, attackType: "Aries" }, +{ itemId: 312117, className: "RAP02_117", name: "Pevordimas Rapier", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2632, maxAtk: 2632, attackType: "Aries" }, +{ itemId: 312118, className: "RAP02_118", name: "Raffye Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 350, equipExpGroup: "Equip", minAtk: 2921, maxAtk: 2921, attackType: "Aries" }, +{ itemId: 312119, className: "RAP02_119", name: "Zvaigzde Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3168, maxAtk: 3168, attackType: "Aries" }, +{ itemId: 312120, className: "RAP02_120", name: "Sketis Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 652, maxAtk: 652, attackType: "Aries" }, +{ itemId: 312121, className: "RAP02_121", name: "Duelist Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1023, maxAtk: 1023, attackType: "Aries" }, +{ itemId: 312122, className: "RAP02_122", name: "Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3333, maxAtk: 3333, attackType: "Aries" }, +{ itemId: 313101, className: "RAP03_101", name: "Duelist", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 24252, sellPrice: 2702, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1579, maxAtk: 1579, largeSizeBonus: 255, attackType: "Aries" }, +{ itemId: 313102, className: "RAP03_102", name: "Spada", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 8000, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 2033, maxAtk: 2033, pAtk: 68, attackType: "Aries" }, +{ itemId: 313103, className: "RAP03_103", name: "Magas Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1579, maxAtk: 1579, attackType: "Aries" }, +{ itemId: 313104, className: "RAP03_104", name: "noname", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1579, maxAtk: 1579, attackType: "Aries" }, +{ itemId: 313105, className: "RAP03_105", name: "noname", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 80, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 2033, maxAtk: 2033, attackType: "Aries" }, +{ itemId: 313106, className: "RAP03_106", name: "Pensara Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 32673, sellPrice: 7936, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 2033, maxAtk: 2033, pAtk: 23, attackType: "Aries" }, +{ itemId: 313301, className: "RAP03_301", name: "(Faded) Red Karuna", type: "Equip", group: "Weapon", weight: 105, maxStack: 1, price: 24252, sellPrice: 4335, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1579, maxAtk: 1579, addMinAtk: 74, addMaxAtk: 91, attackType: "Aries" }, +{ itemId: 313302, className: "RAP03_302", name: "(Faded) Pajoritas Rapier", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 6534, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 2033, maxAtk: 2033, pAtk: 20, attackType: "Aries" }, +{ itemId: 313303, className: "RAP03_303", name: "(Faded) Purine Migantis Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 6610, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2487, maxAtk: 2487, attackType: "Aries" }, +{ itemId: 313304, className: "RAP03_304", name: "(Faded) Purine Pevordimas Rapier", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2895, maxAtk: 2895, attackType: "Aries" }, +{ itemId: 313305, className: "RAP03_305", name: "Elga Rapier", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2895, maxAtk: 2895, attackType: "Aries" }, +{ itemId: 313306, className: "RAP03_306", name: "Berthas Red Karuna", type: "Equip", group: "Weapon", weight: 105, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1579, maxAtk: 1579, attackType: "Aries" }, +{ itemId: 313307, className: "RAP03_307", name: "Berthas Pajoritas Rapier", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 2033, maxAtk: 2033, attackType: "Aries" }, +{ itemId: 313308, className: "RAP03_308", name: "Berthas Migantis Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2487, maxAtk: 2487, attackType: "Aries" }, +{ itemId: 313309, className: "RAP03_309", name: "Berthas Pevordimas Rapier", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2895, maxAtk: 2895, attackType: "Aries" }, +{ itemId: 313310, className: "RAP03_310", name: "Berthas Raffye Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 350, equipExpGroup: "Equip", minAtk: 3213, maxAtk: 3213, attackType: "Aries" }, +{ itemId: 313311, className: "RAP03_311", name: "Berthas Zvaigzde Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3485, maxAtk: 3485, attackType: "Aries" }, +{ itemId: 313312, className: "RAP03_312", name: "Berthas Sketis Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 717, maxAtk: 717, attackType: "Aries" }, +{ itemId: 313313, className: "RAP03_313", name: "Berthas Duelist Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1125, maxAtk: 1125, attackType: "Aries" }, +{ itemId: 313314, className: "RAP03_314", name: "Berthas Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3666, maxAtk: 3666, attackType: "Aries" }, +{ itemId: 313315, className: "RAP03_315", name: "Berthas Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 430, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 3939, attackType: "Aries" }, +{ itemId: 314101, className: "RAP04_101", name: "Venier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 1716, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1073, maxAtk: 1073, attackType: "Aries" }, +{ itemId: 314102, className: "RAP04_102", name: "noname", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 80, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1794, maxAtk: 1794, attackType: "Aries" }, +{ itemId: 314103, className: "RAP04_103", name: "Catacombs Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 24252, sellPrice: 7936, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1794, maxAtk: 1794, attackType: "Aries" }, +{ itemId: 314104, className: "RAP04_104", name: "Lolopanther Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 40000, sellPrice: 9760, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 3617, maxAtk: 3617, largeSizeBonus: 207, attackType: "Aries" }, +{ itemId: 314105, className: "RAP04_105", name: "Solmiki Rapier", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 48800, sellPrice: 12952, equipType1: "Rapier", equipType2: "Sword", minLevel: 330, equipExpGroup: "Equip", minAtk: 4409, maxAtk: 4409, largeSizeBonus: 421, attackType: "Aries" }, +{ itemId: 314106, className: "RAP04_106", name: "Black Horn", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 48800, sellPrice: 11991, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 3290, maxAtk: 3290, attackType: "Aries" }, +{ itemId: 314107, className: "RAP04_107", name: "Primus Red Karuna", type: "Equip", group: "Weapon", weight: 105, maxStack: 1, price: 24252, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 170, equipExpGroup: "Equip", minAtk: 1794, maxAtk: 1794, attackType: "Aries" }, +{ itemId: 314108, className: "RAP04_108", name: "Primus Pajoritas Rapier", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 32673, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 220, equipExpGroup: "Equip", minAtk: 2310, maxAtk: 2310, attackType: "Aries" }, +{ itemId: 314109, className: "RAP04_109", name: "Primus Migantis Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2826, maxAtk: 2826, attackType: "Aries" }, +{ itemId: 314110, className: "RAP04_110", name: "Primus Pevordimas Rapier", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 3290, maxAtk: 3290, attackType: "Aries" }, +{ itemId: 314111, className: "RAP04_111", name: "Primus Raffye Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 350, equipExpGroup: "Equip", minAtk: 3651, maxAtk: 3651, attackType: "Aries" }, +{ itemId: 314112, className: "RAP04_112", name: "Masinios Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 350, equipExpGroup: "Equip", minAtk: 3651, maxAtk: 3651, attackType: "Aries" }, +{ itemId: 314113, className: "RAP04_113", name: "Primus Zvaigzde Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3960, maxAtk: 3960, attackType: "Aries" }, +{ itemId: 314114, className: "RAP04_114", name: "Wastrel Zvaigzde Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3960, maxAtk: 3960, pAtk: 132, attackType: "Aries" }, +{ itemId: 314115, className: "RAP04_115", name: "Asio Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3960, maxAtk: 3960, attackType: "Aries" }, +{ itemId: 314116, className: "RAP04_116", name: "Primus Sketis Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 75, equipExpGroup: "Equip", minAtk: 815, maxAtk: 815, attackType: "Aries" }, +{ itemId: 314117, className: "RAP04_117", name: "Primus Duelist Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1279, maxAtk: 1279, attackType: "Aries" }, +{ itemId: 314118, className: "RAP04_118", name: "Primus Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, +{ itemId: 314119, className: "RAP04_119", name: "Skiaclipse Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, +{ itemId: 314120, className: "RAP04_120", name: "Skiaclipse Epee", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, +{ itemId: 314121, className: "RAP04_121", name: "Moringponia Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, +{ itemId: 314122, className: "RAP04_122", name: "Misrus Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, +{ itemId: 314123, className: "RAP04_123", name: "Primus Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 430, equipExpGroup: "Equip", minAtk: 4476, maxAtk: 4476, attackType: "Aries" }, +{ itemId: 315101, className: "RAP05_101", name: "Velcoffer Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 360, equipExpGroup: "Equip", minAtk: 4805, maxAtk: 4805, attackType: "Aries" }, +{ itemId: 315102, className: "RAP05_102", name: "Velcoffer Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 360, equipExpGroup: "Equip", minAtk: 4805, maxAtk: 4805, attackType: "Aries" }, +{ itemId: 315103, className: "RAP05_103", name: "Savinose Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, +{ itemId: 315104, className: "RAP05_104", name: "Skiaclipse Varna Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, +{ itemId: 321001, className: "CAN01_101", name: "Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 3955, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, +{ itemId: 321002, className: "CAN01_102", name: "Superior Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4780, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, +{ itemId: 321003, className: "CAN01_103", name: "Practice Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 3920, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, +{ itemId: 321004, className: "CAN01_104", name: "Yorgis Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 3920, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, +{ itemId: 321005, className: "CAN01_105", name: "Critti Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4761, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 3276, attackType: "Cannon" }, +{ itemId: 321006, className: "CAN01_106", name: "Vista Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4780, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 3276, attackType: "Cannon" }, +{ itemId: 321007, className: "CAN01_107", name: "Erera Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4838, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1201, maxAtk: 3604, attackType: "Cannon" }, +{ itemId: 321008, className: "CAN01_108", name: "Stropy Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4761, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1201, maxAtk: 3604, attackType: "Cannon" }, +{ itemId: 321009, className: "CAN01_109", name: "Agvara Cannon", type: "Equip", group: "Weapon", weight: 300, maxStack: 1, price: 52276, sellPrice: 5856, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1365, maxAtk: 4095, attackType: "Cannon" }, +{ itemId: 321010, className: "CAN01_110", name: "(Faded) Replica Migantis Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 1202, maxAtk: 3607, attackType: "Cannon" }, +{ itemId: 321011, className: "CAN01_111", name: "(Faded) Replica Pevordimas Cannon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 1400, maxAtk: 4199, attackType: "Cannon" }, +{ itemId: 321012, className: "CAN01_112", name: "Practice Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, +{ itemId: 321013, className: "CAN01_113", name: "Practice Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 763, maxAtk: 2290, attackType: "Cannon" }, +{ itemId: 321999, className: "CAN01_999", name: "Standard Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4953, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, +{ itemId: 322001, className: "CAN02_101", name: "Tevhrin Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 3920, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, +{ itemId: 322002, className: "CAN02_102", name: "Noname Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4780, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, +{ itemId: 322003, className: "CAN02_103", name: "Enhanced Vista Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 4780, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 3276, attackType: "Cannon" }, +{ itemId: 322004, className: "CAN02_104", name: "(Faded) Migantis Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 1336, maxAtk: 4007, attackType: "Cannon" }, +{ itemId: 322005, className: "CAN02_105", name: "(Faded) Pevordimas Cannon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 1555, maxAtk: 4665, attackType: "Cannon" }, +{ itemId: 322006, className: "CAN02_106", name: "Pajoritas Cannon", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1092, maxAtk: 3276, attackType: "Cannon" }, +{ itemId: 322007, className: "CAN02_107", name: "Migantis Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 1336, maxAtk: 4007, attackType: "Cannon" }, +{ itemId: 322008, className: "CAN02_108", name: "Pevordimas Cannon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 1555, maxAtk: 4665, attackType: "Cannon" }, +{ itemId: 322009, className: "CAN02_109", name: "Raffye Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 350, equipExpGroup: "Equip", minAtk: 1726, maxAtk: 5177, attackType: "Cannon" }, +{ itemId: 322010, className: "CAN02_110", name: "Zvaigzde Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 1872, maxAtk: 5616, attackType: "Cannon" }, +{ itemId: 322011, className: "CAN02_111", name: "Reine Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 848, maxAtk: 2545, attackType: "Cannon" }, +{ itemId: 322012, className: "CAN02_112", name: "Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 1969, maxAtk: 5908, attackType: "Cannon" }, +{ itemId: 323001, className: "CAN03_101", name: "Lionhead Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 78080, sellPrice: 7753, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 1711, maxAtk: 5132, attackType: "Cannon" }, +{ itemId: 323002, className: "CAN03_102", name: "(Faded) Pajoritas Cannon", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 52276, sellPrice: 3920, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1201, maxAtk: 3604, attackType: "Cannon" }, +{ itemId: 323003, className: "CAN03_103", name: "(Faded) Purine Migantis Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 1469, maxAtk: 4408, attackType: "Cannon" }, +{ itemId: 323004, className: "CAN03_104", name: "(Faded) Purine Pevordimas Cannon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 1711, maxAtk: 5132, attackType: "Cannon" }, +{ itemId: 323005, className: "CAN03_105", name: "Berthas Pajoritas Cannon", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1201, maxAtk: 3604, attackType: "Cannon" }, +{ itemId: 323006, className: "CAN03_106", name: "Berthas Migantis Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 1469, maxAtk: 4408, attackType: "Cannon" }, +{ itemId: 323007, className: "CAN03_107", name: "Berthas Pevordimas Cannon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 1711, maxAtk: 5132, attackType: "Cannon" }, +{ itemId: 323008, className: "CAN03_108", name: "Berthas Raffye Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 350, equipExpGroup: "Equip", minAtk: 1898, maxAtk: 5695, attackType: "Cannon" }, +{ itemId: 323009, className: "CAN03_109", name: "Berthas Zvaigzde Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 2059, maxAtk: 6178, attackType: "Cannon" }, +{ itemId: 323010, className: "CAN03_110", name: "Berthas Reine Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 933, maxAtk: 2799, attackType: "Cannon" }, +{ itemId: 323011, className: "CAN03_111", name: "Berthas Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 2166, maxAtk: 6499, attackType: "Cannon" }, +{ itemId: 323012, className: "CAN03_112", name: "Berthas Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 430, equipExpGroup: "Equip", minAtk: 2327, maxAtk: 6982, attackType: "Cannon" }, +{ itemId: 324101, className: "CAN04_101", name: "Lolopanther Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 64000, sellPrice: 5856, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 2137, maxAtk: 6412, attackType: "Cannon" }, +{ itemId: 324102, className: "CAN04_102", name: "Solmiki Cannon", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 78080, sellPrice: 7771, equipType1: "Cannon", equipType2: "Gun", minLevel: 330, equipExpGroup: "Equip", minAtk: 2605, maxAtk: 7816, attackType: "Cannon" }, +{ itemId: 324103, className: "CAN04_103", name: "Emengard Cannon", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 78080, sellPrice: 8868, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 1944, maxAtk: 5832, addMaxAtk: 302, attackType: "Cannon" }, +{ itemId: 324104, className: "CAN04_104", name: "Primus Pajoritas Cannon", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1365, maxAtk: 4095, attackType: "Cannon" }, +{ itemId: 324105, className: "CAN04_105", name: "Primus Migantis Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 1670, maxAtk: 5009, attackType: "Cannon" }, +{ itemId: 324106, className: "CAN04_106", name: "Primus Pevordimas Cannon", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 1944, maxAtk: 5832, attackType: "Cannon" }, +{ itemId: 324107, className: "CAN04_107", name: "Primus Raffye Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 350, equipExpGroup: "Equip", minAtk: 2157, maxAtk: 6472, attackType: "Cannon" }, +{ itemId: 324108, className: "CAN04_108", name: "Masinios Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 350, equipExpGroup: "Equip", minAtk: 2157, maxAtk: 6472, addMaxAtk: 314, attackType: "Cannon" }, +{ itemId: 324109, className: "CAN04_109", name: "Primus Zvaigzde Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, +{ itemId: 324110, className: "CAN04_110", name: "Wastrel Zvaigzde Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, +{ itemId: 324111, className: "CAN04_111", name: "Asio Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, +{ itemId: 324112, className: "CAN04_112", name: "Primus Reine Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1060, maxAtk: 3181, attackType: "Cannon" }, +{ itemId: 324113, className: "CAN04_113", name: "Primus Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 2462, maxAtk: 7386, attackType: "Cannon" }, +{ itemId: 324114, className: "CAN04_114", name: "Skiaclipse Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 2462, maxAtk: 7386, addMaxAtk: 732, attackType: "Cannon" }, +{ itemId: 324115, className: "CAN04_115", name: "Moringponia Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 2462, maxAtk: 7386, attackType: "Cannon" }, +{ itemId: 324116, className: "CAN04_116", name: "Misrus Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 2462, maxAtk: 7386, addMaxAtk: 722, attackType: "Cannon" }, +{ itemId: 324117, className: "CAN04_117", name: "Primus Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 430, equipExpGroup: "Equip", minAtk: 2645, maxAtk: 7934, attackType: "Cannon" }, +{ itemId: 325103, className: "CAN05_103", name: "Velcoffer Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 360, equipExpGroup: "Equip", minAtk: 2839, maxAtk: 8518, attackType: "Cannon" }, +{ itemId: 325104, className: "CAN05_104", name: "Velcoffer Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 360, equipExpGroup: "Equip", minAtk: 2839, maxAtk: 8518, attackType: "Cannon" }, +{ itemId: 325105, className: "CAN05_105", name: "Savinose Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, +{ itemId: 325106, className: "CAN05_106", name: "Skiaclipse Varna Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, +{ itemId: 331001, className: "MUS01_101", name: "Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 10547, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 331002, className: "MUS01_102", name: "Superior Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 331003, className: "MUS01_103", name: "Practice Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 331004, className: "MUS01_102_", name: "Yorgis Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 331005, className: "MUS01_104", name: "Yorgis Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 331006, className: "MUS01_106", name: "(Faded) Replica Migantis Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 96000, sellPrice: 5000, equipType1: "Musket", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 1563, maxAtk: 3246, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 331007, className: "MUS01_107", name: "(Faded) Replica Pevordimas Musket", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 144000, sellPrice: 5000, equipType1: "Musket", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 1819, maxAtk: 3779, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 331008, className: "MUS01_108", name: "Practice Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 331009, className: "MUS01_110", name: "Practice Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 120, equipExpGroup: "Equip", minAtk: 707, maxAtk: 1469, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 331999, className: "MUS01_999", name: "Standard Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 52276, sellPrice: 13209, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 332001, className: "MUS02_101", name: "Fire Musket", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1420, maxAtk: 2948, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 332002, className: "MUS02_102", name: "Eki Musket", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 52276, sellPrice: 12697, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1420, maxAtk: 2948, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 332003, className: "MUS02_103", name: "Vienie Musket", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1420, maxAtk: 2948, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 332004, className: "MUS02_104", name: "(Faded) Migantis Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Musket", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 1736, maxAtk: 3607, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 332005, className: "MUS02_105", name: "(Faded) Pevordimas Musket", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "Musket", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2022, maxAtk: 4199, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 332006, className: "MUS02_106", name: "Pajoritas Musket", type: "Equip", group: "Weapon", weight: 165, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1420, maxAtk: 2948, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 332007, className: "MUS02_107", name: "Migantis Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 1736, maxAtk: 3607, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 332008, className: "MUS02_108", name: "Pevordimas Musket", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2022, maxAtk: 4199, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 332009, className: "MUS02_109", name: "Raffye Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 350, equipExpGroup: "Equip", minAtk: 2243, maxAtk: 4660, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 332010, className: "MUS02_110", name: "Zvaigzde Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 2434, maxAtk: 5054, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 332011, className: "MUS02_111", name: "Crystaras Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1103, maxAtk: 2290, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 332012, className: "MUS02_112", name: "Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 2560, maxAtk: 5318, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333101, className: "MUS03_101", name: "Finisher", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 52276, sellPrice: 13209, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1562, maxAtk: 3243, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333102, className: "MUS03_102", name: "noname", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333103, className: "MUS03_103", name: "Pensara Musket", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 52276, sellPrice: 12748, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1562, maxAtk: 3243, middleSizeBonus: 134, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333104, className: "MUS03_104", name: "Dragoon Piper", type: "Equip", group: "Weapon", weight: 158, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "Musket", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2224, maxAtk: 4619, addMinAtk: 75, addMaxAtk: 115, addDef: -13, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333105, className: "MUS03_105", name: "(Faded) Pajoritas Musket", type: "Equip", group: "Weapon", weight: 165, maxStack: 1, price: 52276, sellPrice: 10455, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1562, maxAtk: 3243, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333106, className: "MUS03_106", name: "(Faded) Purine Migantis Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 64000, sellPrice: 5000, equipType1: "Musket", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 1910, maxAtk: 3967, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333107, className: "MUS03_107", name: "(Faded) Purine Pevordimas Musket", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 78080, sellPrice: 5000, equipType1: "Musket", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2224, maxAtk: 4619, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333108, className: "MUS03_108", name: "Berthas Pajoritas Musket", type: "Equip", group: "Weapon", weight: 165, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1562, maxAtk: 3243, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333109, className: "MUS03_109", name: "Berthas Migantis Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 1910, maxAtk: 3967, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333110, className: "MUS03_110", name: "Berthas Pevordimas Musket", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2224, maxAtk: 4619, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333111, className: "MUS03_111", name: "Berthas Raffye Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 350, equipExpGroup: "Equip", minAtk: 2468, maxAtk: 5125, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333112, className: "MUS03_112", name: "Berthas Zvaigzde Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 2677, maxAtk: 5560, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333113, className: "MUS03_113", name: "Berthas Crystaras Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1213, maxAtk: 2519, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333114, className: "MUS03_114", name: "Berthas Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 2816, maxAtk: 5849, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 333115, className: "MUS03_115", name: "Berthas Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 430, equipExpGroup: "Equip", minAtk: 3026, maxAtk: 6284, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334101, className: "MUS04_101", name: "Lolopanther Musket", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64000, sellPrice: 15616, equipType1: "Musket", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 2778, maxAtk: 5770, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334102, className: "MUS04_102", name: "Solmiki Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "Musket", equipType2: "Gun", minLevel: 330, equipExpGroup: "Equip", minAtk: 3387, maxAtk: 7034, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334103, className: "MUS04_103", name: "Emengard Musket", type: "Equip", group: "Weapon", weight: 172, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "Musket", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2527, maxAtk: 5249, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334104, className: "MUS04_104", name: "Primus Pajoritas Musket", type: "Equip", group: "Weapon", weight: 165, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 220, equipExpGroup: "Equip", minAtk: 1774, maxAtk: 3685, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334105, className: "MUS04_105", name: "Primus Migantis Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 2171, maxAtk: 4508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334106, className: "MUS04_106", name: "Primus Pevordimas Musket", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 78080, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2527, maxAtk: 5249, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334107, className: "MUS04_107", name: "Primus Raffye Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 350, equipExpGroup: "Equip", minAtk: 2804, maxAtk: 5824, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334108, className: "MUS04_108", name: "Masinios Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 350, equipExpGroup: "Equip", minAtk: 2804, maxAtk: 5824, addMinAtk: -77, addMaxAtk: 777, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334109, className: "MUS04_109", name: "Primus Zvaigzde Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3042, maxAtk: 6318, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334110, className: "MUS04_110", name: "Wastrel Zvaigzde Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3042, maxAtk: 6318, addMaxAtk: 732, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334111, className: "MUS04_111", name: "Asio Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3042, maxAtk: 6318, addMaxAtk: 572, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334112, className: "MUS04_112", name: "Primus Crystaras Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 170, equipExpGroup: "Equip", minAtk: 1378, maxAtk: 2863, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334113, className: "MUS04_113", name: "Primus Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3200, maxAtk: 6647, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334114, className: "MUS04_114", name: "Skiaclipse Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3200, maxAtk: 6647, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334115, className: "MUS04_115", name: "Moringponia Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3200, maxAtk: 6647, pAtk: 350, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334116, className: "MUS04_116", name: "Misrus Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3200, maxAtk: 6647, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 334117, className: "MUS04_117", name: "Primus Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 430, equipExpGroup: "Equip", minAtk: 3438, maxAtk: 7141, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 335101, className: "MUS05_101", name: "Velcoffer Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 360, equipExpGroup: "Equip", minAtk: 3691, maxAtk: 7666, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 335102, className: "MUS05_102", name: "Velcoffer Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 360, equipExpGroup: "Equip", minAtk: 3691, maxAtk: 7666, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 335103, className: "MUS05_103", name: "Savinose Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 335104, className: "MUS05_104", name: "Skiaclipse Varna Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, { itemId: 630046, className: "Artefact_630045", name: "Marine Musket", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 29, maxAtk: 59, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "WoodCarving" } }, { itemId: 630047, className: "Artefact_630046", name: "Marine Rod", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 37, attackType: "Strike", script: { strArg: "WoodCarving" } }, { itemId: 630048, className: "Artefact_630047", name: "Marine Staff", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 44, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "WoodCarving" } }, @@ -25413,14 +25413,14 @@ { itemId: 634210, className: "Artefact_634210", name: "Popo Pop Spear", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, minAtk: 33, maxAtk: 41, attackType: "Aries", script: { strArg: "WoodCarving" } }, { itemId: 634211, className: "Artefact_634211", name: "Popo Pop Pike", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, minAtk: 31, maxAtk: 57, attackType: "Aries", script: { strArg: "WoodCarving" } }, { itemId: 634213, className: "Artefact_634213", name: "Popo Pop Cannon", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 22, maxAtk: 66, attackType: "Cannon", script: { strArg: "WoodCarving" } }, -{ itemId: 635001, className: "E_SWD01_101", name: "[Event] Colichemarde", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash" }, -{ itemId: 635002, className: "E_TSW01_101", name: "[Event] Zweihander", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "THSword", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Slash" }, -{ itemId: 635003, className: "E_STF01_101", name: "[Event] Elder Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 37, attackType: "Strike" }, -{ itemId: 635004, className: "E_TBW01_101", name: "[Event] Skull Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "THBow", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Arrow" }, -{ itemId: 635005, className: "E_MAC01_101", name: "[Event] Spiked Club", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, -{ itemId: 635006, className: "E_BOW01_101", name: "[Event] Bullet Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Arrow" }, -{ itemId: 635007, className: "E_TSF01_101", name: "[Event] Superior Cross Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "THStaff", minLevel: 1, mAtk: 44, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 635008, className: "E_SPR01_101", name: "[Event] Langdebeve", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, minAtk: 33, maxAtk: 41, middleSizeBonus: 39, largeSizeBonus: 78, attackType: "Aries" }, +{ itemId: 635001, className: "E_SWD01_101", name: "[Event] Colichemarde", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 36, maxAtk: 38, attackType: "Slash" }, +{ itemId: 635002, className: "E_TSW01_101", name: "[Event] Zweihander", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "THSword", minLevel: 1, equipExpGroup: "Equip", minAtk: 35, maxAtk: 53, attackType: "Slash" }, +{ itemId: 635003, className: "E_STF01_101", name: "[Event] Elder Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 37, attackType: "Strike" }, +{ itemId: 635004, className: "E_TBW01_101", name: "[Event] Skull Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "THBow", minLevel: 1, equipExpGroup: "Equip", minAtk: 35, maxAtk: 53, attackType: "Arrow" }, +{ itemId: 635005, className: "E_MAC01_101", name: "[Event] Spiked Club", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, +{ itemId: 635006, className: "E_BOW01_101", name: "[Event] Bullet Shooter", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 36, maxAtk: 38, attackType: "Arrow" }, +{ itemId: 635007, className: "E_TSF01_101", name: "[Event] Superior Cross Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "THStaff", minLevel: 1, equipExpGroup: "Equip", mAtk: 44, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 635008, className: "E_SPR01_101", name: "[Event] Langdebeve", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 33, maxAtk: 41, middleSizeBonus: 39, largeSizeBonus: 78, attackType: "Aries" }, { itemId: 635009, className: "SWD03_106_14d", name: "Deathweaver Cutter (14 Days)", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 15, minAtk: 361, maxAtk: 383, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 635010, className: "TSW03_106_14d", name: "Deathweaver Tooth (14 Days)", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 15, minAtk: 352, maxAtk: 528, middleSizeBonus: 23, attackType: "Slash" }, { itemId: 635011, className: "STF03_104_14d", name: "Deathweaver Rod (14 Days)", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 2880, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 15, mAtk: 372, attackType: "Strike" }, @@ -25498,18 +25498,18 @@ { itemId: 635135, className: "E2_TBW03_306", name: "[Event] Savior's Bow (30 Days)", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 21617, sellPrice: 5000, equipType1: "THBow", equipType2: "Bow", minLevel: 100, minAtk: 4668, maxAtk: 7001, attackType: "Arrow" }, { itemId: 635137, className: "E2_CAN03_104", name: "[Event] Savior's Cannon (30 Days)", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 21617, sellPrice: 5000, equipType1: "Cannon", equipType2: "Gun", minLevel: 100, minAtk: 2917, maxAtk: 8752, attackType: "Cannon" }, { itemId: 635138, className: "E2_MUS03_107", name: "[Event] Savior's Musket (30 Days)", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 21617, sellPrice: 5000, equipType1: "Musket", equipType2: "Gun", minLevel: 100, minAtk: 3792, maxAtk: 7876, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 635170, className: "E_SWD03_120", name: "[Event] Pierene Sword", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Sword", equipType2: "Sword", minLevel: 315, minAtk: 2808, maxAtk: 2982, addMDef: 330, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 635171, className: "E_TSW03_120", name: "[Event] Gale Slasher", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "THSword", equipType2: "Sword", minLevel: 315, minAtk: 2737, maxAtk: 4106, pAtk: 111, addMinAtk: 358, attackType: "Slash" }, -{ itemId: 635173, className: "E_SPR03_115", name: "[Event] Pygry Spear", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 15616, equipType1: "Spear", equipType2: "Spear", minLevel: 315, minAtk: 2605, maxAtk: 3184, attackType: "Aries" }, -{ itemId: 635174, className: "E_TSP03_115", name: "[Event] Sacmet", type: "Equip", group: "Weapon", weight: 205, maxStack: 1, price: 78080, sellPrice: 17798, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, minAtk: 2395, maxAtk: 4448, attackType: "Aries" }, -{ itemId: 635175, className: "E_RAP03_305", name: "[Event] Elga Rapier", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, minAtk: 2895, maxAtk: 2895, attackType: "Aries" }, -{ itemId: 635176, className: "E_MAC03_204", name: "[Event] Vienarazis Mace", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Mace", equipType2: "Mace", minLevel: 315, minAtk: 2866, maxAtk: 2924, mAtk: 2895, addMinAtk: 168, addMaxAtk: 320, attackType: "Strike" }, -{ itemId: 635177, className: "E_TSF03_120", name: "[Event] Vienarazis Staff", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, mAtk: 3421, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 635178, className: "E_STF03_120", name: "[Event] Windia Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Staff", equipType2: "Staff", minLevel: 315, mAtk: 2895, attackType: "Strike" }, -{ itemId: 635179, className: "E_BOW03_202", name: "[Event] Silver Hawk", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Bow", equipType2: "Bow", minLevel: 315, minAtk: 2808, maxAtk: 2982, addMinAtk: 102, addMaxAtk: 211, attackType: "Arrow" }, -{ itemId: 635180, className: "E_TBW03_120", name: "[Event] Aufgowle Bow", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "THBow", equipType2: "Bow", minLevel: 315, minAtk: 2737, maxAtk: 4106, addMinAtk: 148, addMaxAtk: 246, attackType: "Arrow" }, -{ itemId: 635182, className: "E_CAN03_101", name: "[Event] Lionhead Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 78080, sellPrice: 7753, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, minAtk: 1711, maxAtk: 5132, attackType: "Cannon" }, -{ itemId: 635183, className: "E_MUS03_104", name: "[Event] Dragoon Piper", type: "Equip", group: "Weapon", weight: 158, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "Musket", equipType2: "Gun", minLevel: 315, minAtk: 2224, maxAtk: 4619, addMinAtk: 75, addMaxAtk: 115, addDef: -13, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 635170, className: "E_SWD03_120", name: "[Event] Pierene Sword", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Sword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2808, maxAtk: 2982, addMDef: 330, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 635171, className: "E_TSW03_120", name: "[Event] Gale Slasher", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "THSword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2737, maxAtk: 4106, pAtk: 111, addMinAtk: 358, attackType: "Slash" }, +{ itemId: 635173, className: "E_SPR03_115", name: "[Event] Pygry Spear", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 15616, equipType1: "Spear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2605, maxAtk: 3184, attackType: "Aries" }, +{ itemId: 635174, className: "E_TSP03_115", name: "[Event] Sacmet", type: "Equip", group: "Weapon", weight: 205, maxStack: 1, price: 78080, sellPrice: 17798, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2395, maxAtk: 4448, attackType: "Aries" }, +{ itemId: 635175, className: "E_RAP03_305", name: "[Event] Elga Rapier", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 48800, sellPrice: 5000, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 2895, maxAtk: 2895, attackType: "Aries" }, +{ itemId: 635176, className: "E_MAC03_204", name: "[Event] Vienarazis Mace", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Mace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 2866, maxAtk: 2924, mAtk: 2895, addMinAtk: 168, addMaxAtk: 320, attackType: "Strike" }, +{ itemId: 635177, className: "E_TSF03_120", name: "[Event] Vienarazis Staff", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 3421, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 635178, className: "E_STF03_120", name: "[Event] Windia Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Staff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 2895, attackType: "Strike" }, +{ itemId: 635179, className: "E_BOW03_202", name: "[Event] Silver Hawk", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 48800, sellPrice: 12921, equipType1: "Bow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 2808, maxAtk: 2982, addMinAtk: 102, addMaxAtk: 211, attackType: "Arrow" }, +{ itemId: 635180, className: "E_TBW03_120", name: "[Event] Aufgowle Bow", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "THBow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 2737, maxAtk: 4106, addMinAtk: 148, addMaxAtk: 246, attackType: "Arrow" }, +{ itemId: 635182, className: "E_CAN03_101", name: "[Event] Lionhead Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 78080, sellPrice: 7753, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 1711, maxAtk: 5132, attackType: "Cannon" }, +{ itemId: 635183, className: "E_MUS03_104", name: "[Event] Dragoon Piper", type: "Equip", group: "Weapon", weight: 158, maxStack: 1, price: 78080, sellPrice: 20674, equipType1: "Musket", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2224, maxAtk: 4619, addMinAtk: 75, addMaxAtk: 115, addDef: -13, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, { itemId: 635184, className: "SWD03_106_EVENT_1710_NEWCHARACTER", name: "[Event] Deathweaver Cutter (30 Days)", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Sword", equipType2: "Sword", minLevel: 15, minAtk: 167, maxAtk: 178, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 635185, className: "TSW03_106_EVENT_1710_NEWCHARACTER", name: "[Event] Deathweaver Tooth (30 Days)", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 4608, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 15, minAtk: 163, maxAtk: 245, middleSizeBonus: 23, attackType: "Slash" }, { itemId: 635186, className: "STF03_104_EVENT_1710_NEWCHARACTER", name: "[Event] Deathweaver Rod (30 Days)", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 2880, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 15, mAtk: 172, attackType: "Strike" }, @@ -25578,19 +25578,19 @@ { itemId: 635274, className: "TBW04_116_STEMA_DLC", name: "Primus Raffye Bow [Untradable]", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 350, minAtk: 3451, maxAtk: 5177, attackType: "Arrow" }, { itemId: 635276, className: "CAN04_107_STEMA_DLC", name: "Primus Raffye Cannon [Untradable]", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 350, minAtk: 2157, maxAtk: 6472, attackType: "Cannon" }, { itemId: 635277, className: "MUS04_107_STEMA_DLC", name: "Primus Raffye Musket [Untradable]", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 350, minAtk: 2804, maxAtk: 5824, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 635279, className: "SWD04_109_STEAM_NT", name: "Abdochar [Untradeable]", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Sword", equipType2: "Sword", minLevel: 315, minAtk: 3191, maxAtk: 3388, addMaxAtk: 158, addDef: 245, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 635280, className: "TSW04_109_STEAM_NT", name: "Sarkmis [Untradable]", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THSword", equipType2: "Sword", minLevel: 315, minAtk: 3110, maxAtk: 4665, attackType: "Slash", darkRes: 180 }, -{ itemId: 635281, className: "MAC04_111_STEAM_NT", name: "Skull Smasher [Untradable]", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Mace", equipType2: "Mace", minLevel: 315, minAtk: 3257, maxAtk: 3323, mAtk: 3290, attackType: "Strike" }, -{ itemId: 635282, className: "TSF04_109_STEAM_NT", name: "Regard Horn Staff [Untradable]", type: "Equip", group: "Weapon", weight: 235, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, mAtk: 3888, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 635283, className: "STF04_110_STEAM_NT", name: "Heart of Glory [Untradable]", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Staff", equipType2: "Staff", minLevel: 315, mAtk: 3290, addDef: 132, attackType: "Strike" }, -{ itemId: 635284, className: "TMAC04_101_STEAM_NT", name: "Skull Breaker [Untradable]", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THMace", equipType2: "Mace", minLevel: 315, minAtk: 3499, maxAtk: 4277, mAtk: 3888, attackType: "Strike" }, -{ itemId: 635286, className: "SPR04_110_STEAM_NT", name: "Wingshard Spear [Untradable]", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 48800, sellPrice: 17798, equipType1: "Spear", equipType2: "Spear", minLevel: 315, minAtk: 2961, maxAtk: 3619, attackType: "Aries" }, -{ itemId: 635287, className: "TSP04_111_STEAM_NT", name: "Regard Horn Pike [Untradable]", type: "Equip", group: "Weapon", weight: 215, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, minAtk: 2721, maxAtk: 5054, attackType: "Aries" }, -{ itemId: 635288, className: "RAP04_106_STEAM_NT", name: "Black Horn [Untradable]", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 48800, sellPrice: 11991, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, minAtk: 3290, maxAtk: 3290, attackType: "Aries" }, -{ itemId: 635289, className: "BOW04_109_STEAM_NT", name: "Regard Horn Crossbow [Untradable]", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Bow", equipType2: "Bow", minLevel: 315, minAtk: 3191, maxAtk: 3388, attackType: "Arrow" }, -{ itemId: 635290, className: "TBW04_109_STEAM_NT", name: "Astra Bow [Untradable]", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THBow", equipType2: "Bow", minLevel: 315, minAtk: 3110, maxAtk: 4665, attackType: "Arrow" }, -{ itemId: 635292, className: "CAN04_103_STEAM_NT", name: "Emengard Cannon [Untradable]", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 78080, sellPrice: 8868, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, minAtk: 1944, maxAtk: 5832, addMaxAtk: 302, attackType: "Cannon" }, -{ itemId: 635293, className: "MUS04_103_STEAM_NT", name: "Emengard Musket [Untradable]", type: "Equip", group: "Weapon", weight: 172, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "Musket", equipType2: "Gun", minLevel: 315, minAtk: 2527, maxAtk: 5249, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 635279, className: "SWD04_109_STEAM_NT", name: "Abdochar [Untradeable]", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Sword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 3191, maxAtk: 3388, addMaxAtk: 158, addDef: 245, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 635280, className: "TSW04_109_STEAM_NT", name: "Sarkmis [Untradable]", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THSword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 3110, maxAtk: 4665, attackType: "Slash", darkRes: 180 }, +{ itemId: 635281, className: "MAC04_111_STEAM_NT", name: "Skull Smasher [Untradable]", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Mace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 3257, maxAtk: 3323, mAtk: 3290, attackType: "Strike" }, +{ itemId: 635282, className: "TSF04_109_STEAM_NT", name: "Regard Horn Staff [Untradable]", type: "Equip", group: "Weapon", weight: 235, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 3888, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 635283, className: "STF04_110_STEAM_NT", name: "Heart of Glory [Untradable]", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Staff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 3290, addDef: 132, attackType: "Strike" }, +{ itemId: 635284, className: "TMAC04_101_STEAM_NT", name: "Skull Breaker [Untradable]", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THMace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 3499, maxAtk: 4277, mAtk: 3888, attackType: "Strike" }, +{ itemId: 635286, className: "SPR04_110_STEAM_NT", name: "Wingshard Spear [Untradable]", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 48800, sellPrice: 17798, equipType1: "Spear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2961, maxAtk: 3619, attackType: "Aries" }, +{ itemId: 635287, className: "TSP04_111_STEAM_NT", name: "Regard Horn Pike [Untradable]", type: "Equip", group: "Weapon", weight: 215, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2721, maxAtk: 5054, attackType: "Aries" }, +{ itemId: 635288, className: "RAP04_106_STEAM_NT", name: "Black Horn [Untradable]", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 48800, sellPrice: 11991, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 3290, maxAtk: 3290, attackType: "Aries" }, +{ itemId: 635289, className: "BOW04_109_STEAM_NT", name: "Regard Horn Crossbow [Untradable]", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Bow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 3191, maxAtk: 3388, attackType: "Arrow" }, +{ itemId: 635290, className: "TBW04_109_STEAM_NT", name: "Astra Bow [Untradable]", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THBow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 3110, maxAtk: 4665, attackType: "Arrow" }, +{ itemId: 635292, className: "CAN04_103_STEAM_NT", name: "Emengard Cannon [Untradable]", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 78080, sellPrice: 8868, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 1944, maxAtk: 5832, addMaxAtk: 302, attackType: "Cannon" }, +{ itemId: 635293, className: "MUS04_103_STEAM_NT", name: "Emengard Musket [Untradable]", type: "Equip", group: "Weapon", weight: 172, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "Musket", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2527, maxAtk: 5249, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, { itemId: 635307, className: "SWD04_110_EVENT_1710_NEWCHARACTER", name: "[Event] Primus Migantis Sword (30 Days)", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 270, minAtk: 2741, maxAtk: 2910, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 635308, className: "TSW04_114_EVENT_1710_NEWCHARACTER", name: "[Event] Primus Migantis Two-handed Sword (30 Days)", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 270, minAtk: 2671, maxAtk: 4007, attackType: "Slash" }, { itemId: 635309, className: "STF04_115_EVENT_1710_NEWCHARACTER", name: "[Event] Primus Migantis Rod (30 Days)", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 270, mAtk: 2826, attackType: "Strike" }, @@ -25691,32 +25691,32 @@ { itemId: 635450, className: "RAP01_112_NEWCHARACTER", name: "[Event] Dunkel Rapier (30 Days)", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 800, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 40, minAtk: 399, maxAtk: 399, attackType: "Aries" }, { itemId: 635451, className: "RAP03_312_NEWCHARACTER", name: "[Event] Berthas Sketis Rapier (30 Days)", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 8583, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 75, minAtk: 717, maxAtk: 717, attackType: "Aries" }, { itemId: 635452, className: "RAP03_313_NEWCHARACTER", name: "[Event] Berthas Duelist Rapier (30 Days)", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 120, minAtk: 1125, maxAtk: 1125, attackType: "Aries" }, -{ itemId: 635459, className: "SWD04_119_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, minAtk: 3841, maxAtk: 4079, addDef: 248, attackType: "Slash", leftHandSkill: "Sword_Attack", strike: 325 }, -{ itemId: 635460, className: "TSW04_119_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, -{ itemId: 635461, className: "STF04_121_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, mAtk: 3960, addMAtk: 232, addDef: 325, attackType: "Strike" }, -{ itemId: 635462, className: "TBW04_119_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, -{ itemId: 635463, className: "BOW04_119_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, minAtk: 3841, maxAtk: 4079, addMinAtk: 152, addMaxAtk: 352, attackType: "Arrow" }, -{ itemId: 635464, className: "MAC04_121_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, -{ itemId: 635465, className: "TMAC04_110_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, -{ itemId: 635467, className: "SPR04_120_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, -{ itemId: 635468, className: "TSP04_121_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, -{ itemId: 635470, className: "TSF04_19_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 635472, className: "RAP04_114_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, minAtk: 3960, maxAtk: 3960, pAtk: 132, attackType: "Aries" }, -{ itemId: 635473, className: "CAN04_110_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, -{ itemId: 635474, className: "MUS04_110_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, minAtk: 3042, maxAtk: 6318, addMaxAtk: 732, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 635475, className: "SWD04_120_EVENT_1812_XMAS", name: "[Event] Asio Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, minAtk: 3841, maxAtk: 4079, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 635476, className: "TSW04_120_EVENT_1812_XMAS", name: "[Event] Asio Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, -{ itemId: 635477, className: "STF04_120_EVENT_1812_XMAS", name: "[Event] Asio Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, mAtk: 3960, addMDef: 325, attackType: "Strike" }, -{ itemId: 635478, className: "TBW04_120_EVENT_1812_XMAS", name: "[Event] Asio Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, -{ itemId: 635479, className: "BOW04_120_EVENT_1812_XMAS", name: "[Event] Asio Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, minAtk: 3841, maxAtk: 4079, attackType: "Arrow" }, -{ itemId: 635480, className: "MAC04_122_EVENT_1812_XMAS", name: "[Event] Asio Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, -{ itemId: 635481, className: "TMAC04_111_EVENT_1812_XMAS", name: "[Event] Asio Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, -{ itemId: 635483, className: "SPR04_121_EVENT_1812_XMAS", name: "[Event] Asio Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, -{ itemId: 635484, className: "TSP04_122_EVENT_1812_XMAS", name: "[Event] Asio Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, -{ itemId: 635486, className: "TSF04_120_EVENT_1812_XMAS", name: "[Event] Asio Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 635488, className: "RAP04_115_EVENT_1812_XMAS", name: "[Event] Asio Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, minAtk: 3960, maxAtk: 3960, attackType: "Aries" }, -{ itemId: 635489, className: "CAN04_111_EVENT_1812_XMAS", name: "[Event] Asio Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, -{ itemId: 635490, className: "MUS04_111_EVENT_1812_XMAS", name: "[Event] Asio Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, minAtk: 3042, maxAtk: 6318, addMaxAtk: 572, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 635459, className: "SWD04_119_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, addDef: 248, attackType: "Slash", leftHandSkill: "Sword_Attack", strike: 325 }, +{ itemId: 635460, className: "TSW04_119_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, +{ itemId: 635461, className: "STF04_121_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 3960, addMAtk: 232, addDef: 325, attackType: "Strike" }, +{ itemId: 635462, className: "TBW04_119_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, +{ itemId: 635463, className: "BOW04_119_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, addMinAtk: 152, addMaxAtk: 352, attackType: "Arrow" }, +{ itemId: 635464, className: "MAC04_121_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, +{ itemId: 635465, className: "TMAC04_110_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, +{ itemId: 635467, className: "SPR04_120_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, +{ itemId: 635468, className: "TSP04_121_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, +{ itemId: 635470, className: "TSF04_19_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 635472, className: "RAP04_114_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3960, maxAtk: 3960, pAtk: 132, attackType: "Aries" }, +{ itemId: 635473, className: "CAN04_110_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, +{ itemId: 635474, className: "MUS04_110_EVENT_1812_XMAS", name: "[Event] Wastrel Zvaigzde Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3042, maxAtk: 6318, addMaxAtk: 732, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 635475, className: "SWD04_120_EVENT_1812_XMAS", name: "[Event] Asio Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 635476, className: "TSW04_120_EVENT_1812_XMAS", name: "[Event] Asio Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, +{ itemId: 635477, className: "STF04_120_EVENT_1812_XMAS", name: "[Event] Asio Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 3960, addMDef: 325, attackType: "Strike" }, +{ itemId: 635478, className: "TBW04_120_EVENT_1812_XMAS", name: "[Event] Asio Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, +{ itemId: 635479, className: "BOW04_120_EVENT_1812_XMAS", name: "[Event] Asio Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, attackType: "Arrow" }, +{ itemId: 635480, className: "MAC04_122_EVENT_1812_XMAS", name: "[Event] Asio Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, +{ itemId: 635481, className: "TMAC04_111_EVENT_1812_XMAS", name: "[Event] Asio Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, +{ itemId: 635483, className: "SPR04_121_EVENT_1812_XMAS", name: "[Event] Asio Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, +{ itemId: 635484, className: "TSP04_122_EVENT_1812_XMAS", name: "[Event] Asio Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, +{ itemId: 635486, className: "TSF04_120_EVENT_1812_XMAS", name: "[Event] Asio Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 635488, className: "RAP04_115_EVENT_1812_XMAS", name: "[Event] Asio Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3960, maxAtk: 3960, attackType: "Aries" }, +{ itemId: 635489, className: "CAN04_111_EVENT_1812_XMAS", name: "[Event] Asio Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, +{ itemId: 635490, className: "MUS04_111_EVENT_1812_XMAS", name: "[Event] Asio Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3042, maxAtk: 6318, addMaxAtk: 572, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, { itemId: 635491, className: "SWD04_117_NEWCHARACTER2", name: "[Event] Masinios Sword", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 350, minAtk: 3541, maxAtk: 3760, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 635492, className: "TSW04_117_NEWCHARACTER2", name: "[Event] Masinios Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 350, minAtk: 3451, maxAtk: 5177, attackType: "Slash" }, { itemId: 635493, className: "STF04_118_NEWCHARACTER2", name: "[Event] Masinios Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 350, mAtk: 3651, attackType: "Strike" }, @@ -25730,73 +25730,73 @@ { itemId: 635504, className: "RAP04_112_NEWCHARACTER2", name: "[Event] Masinios Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 350, minAtk: 3651, maxAtk: 3651, attackType: "Aries" }, { itemId: 635505, className: "CAN04_108_NEWCHARACTER2", name: "[Event] Masinios Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 350, minAtk: 2157, maxAtk: 6472, addMaxAtk: 314, attackType: "Cannon" }, { itemId: 635506, className: "MUS04_108_NEWCHARACTER2", name: "[Event] Masinios Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 350, minAtk: 2804, maxAtk: 5824, addMinAtk: -77, addMaxAtk: 777, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 635511, className: "TSP03_101_EVENT_REWARD", name: "[Event] Traxia (30 Days)", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 15, minAtk: 143, maxAtk: 265, attackType: "Aries" }, -{ itemId: 635512, className: "CAN01_107_EVENT_REWARD", name: "[Event] Erera Cannon (30 Days)", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 4608, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 15, minAtk: 102, maxAtk: 306, attackType: "Cannon" }, -{ itemId: 635513, className: "TMAC01_101_EVENT_REWARD", name: "[Event] Two-handed Battle Maul (30 Days)", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 15, minAtk: 183, maxAtk: 224, mAtk: 204, attackType: "Strike" }, -{ itemId: 635514, className: "MUS02_111_EVENT_REWARD", name: "[Event] Crystaras Musket (30 Days)", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 4608, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 15, minAtk: 132, maxAtk: 275, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 635515, className: "SPR04_101_EVENT_REWARD", name: "[Event] Adatag (30 Days)", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 2880, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 15, minAtk: 155, maxAtk: 190, attackType: "Aries" }, -{ itemId: 635516, className: "MUS03_103_EVENT_REWARD", name: "[Event] Pensara Musket (30 Days)", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 5824, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 40, minAtk: 307, maxAtk: 637, middleSizeBonus: 134, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 635517, className: "TMAC02_104_EVENT_REWARD", name: "[Event] Reine Two-handed Mace (30 Days)", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 5824, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 40, minAtk: 425, maxAtk: 519, mAtk: 472, attackType: "Strike" }, -{ itemId: 635518, className: "CAN01_108_EVENT_REWARD", name: "[Event] Stropy Cannon (30 Days)", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 5824, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 40, minAtk: 236, maxAtk: 708, attackType: "Cannon" }, -{ itemId: 635519, className: "CAN01_106_EVENT_REWARD", name: "[Event] Vista Cannon (30 Days)", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 75, minAtk: 424, maxAtk: 1271, attackType: "Cannon" }, +{ itemId: 635511, className: "TSP03_101_EVENT_REWARD", name: "[Event] Traxia (30 Days)", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 15, equipExpGroup: "Equip", minAtk: 143, maxAtk: 265, attackType: "Aries" }, +{ itemId: 635512, className: "CAN01_107_EVENT_REWARD", name: "[Event] Erera Cannon (30 Days)", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 4608, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 15, equipExpGroup: "Equip", minAtk: 102, maxAtk: 306, attackType: "Cannon" }, +{ itemId: 635513, className: "TMAC01_101_EVENT_REWARD", name: "[Event] Two-handed Battle Maul (30 Days)", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 4608, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 15, equipExpGroup: "Equip", minAtk: 183, maxAtk: 224, mAtk: 204, attackType: "Strike" }, +{ itemId: 635514, className: "MUS02_111_EVENT_REWARD", name: "[Event] Crystaras Musket (30 Days)", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 4608, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 15, equipExpGroup: "Equip", minAtk: 132, maxAtk: 275, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 635515, className: "SPR04_101_EVENT_REWARD", name: "[Event] Adatag (30 Days)", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 2880, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 15, equipExpGroup: "Equip", minAtk: 155, maxAtk: 190, attackType: "Aries" }, +{ itemId: 635516, className: "MUS03_103_EVENT_REWARD", name: "[Event] Pensara Musket (30 Days)", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 5824, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 40, equipExpGroup: "Equip", minAtk: 307, maxAtk: 637, middleSizeBonus: 134, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 635517, className: "TMAC02_104_EVENT_REWARD", name: "[Event] Reine Two-handed Mace (30 Days)", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 5824, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 40, equipExpGroup: "Equip", minAtk: 425, maxAtk: 519, mAtk: 472, attackType: "Strike" }, +{ itemId: 635518, className: "CAN01_108_EVENT_REWARD", name: "[Event] Stropy Cannon (30 Days)", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 5824, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 40, equipExpGroup: "Equip", minAtk: 236, maxAtk: 708, attackType: "Cannon" }, +{ itemId: 635519, className: "CAN01_106_EVENT_REWARD", name: "[Event] Vista Cannon (30 Days)", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 75, equipExpGroup: "Equip", minAtk: 424, maxAtk: 1271, attackType: "Cannon" }, { itemId: 635520, className: "MUS02_107_EVENT_REWARD", name: "[Event] Migantis Musket (30 Days)", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 75, minAtk: 551, maxAtk: 1144, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 635521, className: "MUS03_101_EVENT_REWARD", name: "[Event] Finisher (30 Days)", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 75, minAtk: 551, maxAtk: 1144, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 635521, className: "MUS03_101_EVENT_REWARD", name: "[Event] Finisher (30 Days)", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 75, equipExpGroup: "Equip", minAtk: 551, maxAtk: 1144, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, { itemId: 635522, className: "TMAC01_102_EVENT_REWARD", name: "[Event] Two-handed Rune Mace (30 Days)", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 120, minAtk: 1197, maxAtk: 1463, mAtk: 1330, attackType: "Strike" }, -{ itemId: 635523, className: "TMAC03_106_EVENT_REWARD", name: "[Event] Veinarazis Two-handed Mace (30 Days)", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 170, minAtk: 1680, maxAtk: 2053, mAtk: 1866, addMinAtk: 202, addMaxAtk: 384, attackType: "Strike" }, +{ itemId: 635523, className: "TMAC03_106_EVENT_REWARD", name: "[Event] Veinarazis Two-handed Mace (30 Days)", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 38803, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 170, equipExpGroup: "Equip", minAtk: 1680, maxAtk: 2053, mAtk: 1866, addMinAtk: 202, addMaxAtk: 384, attackType: "Strike" }, { itemId: 635524, className: "TMAC02_105_EVENT_REWARD", name: "[Event] Pajoritas Two-handed Mace (30 Days)", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 220, minAtk: 2162, maxAtk: 2643, mAtk: 2402, attackType: "Strike" }, { itemId: 635525, className: "TMAC02_103_EVENT_REWARD", name: "[Event] Krendall Two-handed Mace (30 Days)", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 13732, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 75, minAtk: 763, maxAtk: 932, mAtk: 847, attackType: "Strike" }, -{ itemId: 635526, className: "Event_SWD05_103", name: "[Event] Savinose Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, -{ itemId: 635527, className: "Event_TSW05_103", name: "[Event] Savinose Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, -{ itemId: 635528, className: "Event_STF05_103", name: "[Event] Savinose Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 5333, attackType: "Strike" }, -{ itemId: 635529, className: "Event_TBW05_103", name: "[Event] Savinose Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, -{ itemId: 635530, className: "Event_BOW05_103", name: "[Event] Savinose Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, -{ itemId: 635531, className: "Event_MAC05_103", name: "[Event] Savinose Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, -{ itemId: 635532, className: "Event_TMAC05_105", name: "[Event] Savinose Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, -{ itemId: 635533, className: "Event_SPR05_103", name: "[Event] Savinose Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, -{ itemId: 635534, className: "Event_TSP05_103", name: "[Event] Savinose Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, -{ itemId: 635535, className: "Event_TSF05_103", name: "[Event] Savinose Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 635536, className: "Event_RAP05_103", name: "[Event] Savinose Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, -{ itemId: 635537, className: "Event_CAN05_105", name: "[Event] Savinose Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, -{ itemId: 635538, className: "Event_MUS05_103", name: "[Event] Savinose Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 635554, className: "SWD04_120_EVENT_NewChar01", name: "[Event] Asio Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, minAtk: 3841, maxAtk: 4079, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 635555, className: "TSW04_120_EVENT_NewChar01", name: "[Event] Asio Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, -{ itemId: 635556, className: "STF04_120_EVENT_NewChar01", name: "[Event] Asio Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, mAtk: 3960, addMDef: 325, attackType: "Strike" }, -{ itemId: 635557, className: "TBW04_120_EVENT_NewChar01", name: "[Event] Asio Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, -{ itemId: 635558, className: "BOW04_120_EVENT_NewChar01", name: "[Event] Asio Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, minAtk: 3841, maxAtk: 4079, attackType: "Arrow" }, -{ itemId: 635559, className: "MAC04_122_EVENT_NewChar01", name: "[Event] Asio Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, -{ itemId: 635560, className: "TMAC04_111_EVENT_NewChar01", name: "[Event] Asio Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, -{ itemId: 635562, className: "SPR04_121_EVENT_NewChar01", name: "[Event] Asio Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, -{ itemId: 635563, className: "TSP04_122_EVENT_NewChar01", name: "[Event] Asio Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, -{ itemId: 635565, className: "TSF04_120_EVENT_NewChar01", name: "[Event] Asio Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 635567, className: "RAP04_115_EVENT_NewChar01", name: "[Event] Asio Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, minAtk: 3960, maxAtk: 3960, attackType: "Aries" }, -{ itemId: 635568, className: "CAN04_111_EVENT_NewChar01", name: "[Event] Asio Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, -{ itemId: 635569, className: "MUS04_111_EVENT_NewChar01", name: "[Event] Asio Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, minAtk: 3042, maxAtk: 6318, addMaxAtk: 572, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 635573, className: "FOREVER_SWD05_103", name: "[4ever] Savinose Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, -{ itemId: 635574, className: "FOREVER_TSW05_103", name: "[4ever] Savinose Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, -{ itemId: 635575, className: "FOREVER_STF05_103", name: "[4ever] Savinose Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 5333, attackType: "Strike" }, -{ itemId: 635576, className: "FOREVER_TBW05_103", name: "[4ever] Savinose Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, -{ itemId: 635577, className: "FOREVER_BOW05_103", name: "[4ever] Savinose Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, -{ itemId: 635578, className: "FOREVER_MAC05_103", name: "[4ever] Savinose Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, -{ itemId: 635579, className: "FOREVER_TMAC05_105", name: "[4ever] Savinose Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, -{ itemId: 635580, className: "FOREVER_SPR05_103", name: "[4ever] Savinose Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, -{ itemId: 635581, className: "FOREVER_TSP05_103", name: "[4ever] Savinose Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, -{ itemId: 635582, className: "FOREVER_TSF05_103", name: "[4ever] Savinose Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 635583, className: "FOREVER_RAP05_103", name: "[4ever] Savinose Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, -{ itemId: 635584, className: "FOREVER_CAN05_105", name: "[4ever] Savinose Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, -{ itemId: 635585, className: "FOREVER_MUS05_103", name: "[4ever] Savinose Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 635601, className: "2020NEWYEAR_SWD05_103", name: "[Blossom Pack] Savinose Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, -{ itemId: 635602, className: "2020NEWYEAR_TSW05_103", name: "[Blossom Pack] Savinose Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, -{ itemId: 635603, className: "2020NEWYEAR_STF05_103", name: "[Blossom Pack] Savinose Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 5333, attackType: "Strike" }, -{ itemId: 635604, className: "2020NEWYEAR_TBW05_103", name: "[Blossom Pack] Savinose Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, -{ itemId: 635605, className: "2020NEWYEAR_BOW05_103", name: "[Blossom Pack] Savinose Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, -{ itemId: 635606, className: "2020NEWYEAR_MAC05_103", name: "[Blossom Pack] Savinose Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, -{ itemId: 635607, className: "2020NEWYEAR_TMAC05_105", name: "[Blossom Pack] Savinose Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, -{ itemId: 635608, className: "2020NEWYEAR_SPR05_103", name: "[Blossom Pack] Savinose Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, -{ itemId: 635609, className: "2020NEWYEAR_TSP05_103", name: "[Blossom Pack] Savinose Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, -{ itemId: 635610, className: "2020NEWYEAR_TSF05_103", name: "[Blossom Pack] Savinose Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 635611, className: "2020NEWYEAR_RAP05_103", name: "[Blossom Pack] Savinose Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, -{ itemId: 635612, className: "2020NEWYEAR_CAN05_105", name: "[Blossom Pack] Savinose Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, -{ itemId: 635613, className: "2020NEWYEAR_MUS05_103", name: "[Blossom Pack] Savinose Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 635526, className: "Event_SWD05_103", name: "[Event] Savinose Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, +{ itemId: 635527, className: "Event_TSW05_103", name: "[Event] Savinose Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, +{ itemId: 635528, className: "Event_STF05_103", name: "[Event] Savinose Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 5333, attackType: "Strike" }, +{ itemId: 635529, className: "Event_TBW05_103", name: "[Event] Savinose Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, +{ itemId: 635530, className: "Event_BOW05_103", name: "[Event] Savinose Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, +{ itemId: 635531, className: "Event_MAC05_103", name: "[Event] Savinose Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, +{ itemId: 635532, className: "Event_TMAC05_105", name: "[Event] Savinose Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, +{ itemId: 635533, className: "Event_SPR05_103", name: "[Event] Savinose Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, +{ itemId: 635534, className: "Event_TSP05_103", name: "[Event] Savinose Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, +{ itemId: 635535, className: "Event_TSF05_103", name: "[Event] Savinose Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 635536, className: "Event_RAP05_103", name: "[Event] Savinose Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, +{ itemId: 635537, className: "Event_CAN05_105", name: "[Event] Savinose Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, +{ itemId: 635538, className: "Event_MUS05_103", name: "[Event] Savinose Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 635554, className: "SWD04_120_EVENT_NewChar01", name: "[Event] Asio Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 635555, className: "TSW04_120_EVENT_NewChar01", name: "[Event] Asio Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, +{ itemId: 635556, className: "STF04_120_EVENT_NewChar01", name: "[Event] Asio Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 3960, addMDef: 325, attackType: "Strike" }, +{ itemId: 635557, className: "TBW04_120_EVENT_NewChar01", name: "[Event] Asio Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, +{ itemId: 635558, className: "BOW04_120_EVENT_NewChar01", name: "[Event] Asio Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, attackType: "Arrow" }, +{ itemId: 635559, className: "MAC04_122_EVENT_NewChar01", name: "[Event] Asio Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, +{ itemId: 635560, className: "TMAC04_111_EVENT_NewChar01", name: "[Event] Asio Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, +{ itemId: 635562, className: "SPR04_121_EVENT_NewChar01", name: "[Event] Asio Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, +{ itemId: 635563, className: "TSP04_122_EVENT_NewChar01", name: "[Event] Asio Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, +{ itemId: 635565, className: "TSF04_120_EVENT_NewChar01", name: "[Event] Asio Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 635567, className: "RAP04_115_EVENT_NewChar01", name: "[Event] Asio Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3960, maxAtk: 3960, attackType: "Aries" }, +{ itemId: 635568, className: "CAN04_111_EVENT_NewChar01", name: "[Event] Asio Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, +{ itemId: 635569, className: "MUS04_111_EVENT_NewChar01", name: "[Event] Asio Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3042, maxAtk: 6318, addMaxAtk: 572, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 635573, className: "FOREVER_SWD05_103", name: "[4ever] Savinose Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, +{ itemId: 635574, className: "FOREVER_TSW05_103", name: "[4ever] Savinose Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, +{ itemId: 635575, className: "FOREVER_STF05_103", name: "[4ever] Savinose Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 5333, attackType: "Strike" }, +{ itemId: 635576, className: "FOREVER_TBW05_103", name: "[4ever] Savinose Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, +{ itemId: 635577, className: "FOREVER_BOW05_103", name: "[4ever] Savinose Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, +{ itemId: 635578, className: "FOREVER_MAC05_103", name: "[4ever] Savinose Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, +{ itemId: 635579, className: "FOREVER_TMAC05_105", name: "[4ever] Savinose Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, +{ itemId: 635580, className: "FOREVER_SPR05_103", name: "[4ever] Savinose Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, +{ itemId: 635581, className: "FOREVER_TSP05_103", name: "[4ever] Savinose Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, +{ itemId: 635582, className: "FOREVER_TSF05_103", name: "[4ever] Savinose Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 635583, className: "FOREVER_RAP05_103", name: "[4ever] Savinose Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, +{ itemId: 635584, className: "FOREVER_CAN05_105", name: "[4ever] Savinose Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, +{ itemId: 635585, className: "FOREVER_MUS05_103", name: "[4ever] Savinose Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 635601, className: "2020NEWYEAR_SWD05_103", name: "[Blossom Pack] Savinose Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, +{ itemId: 635602, className: "2020NEWYEAR_TSW05_103", name: "[Blossom Pack] Savinose Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, +{ itemId: 635603, className: "2020NEWYEAR_STF05_103", name: "[Blossom Pack] Savinose Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 5333, attackType: "Strike" }, +{ itemId: 635604, className: "2020NEWYEAR_TBW05_103", name: "[Blossom Pack] Savinose Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, +{ itemId: 635605, className: "2020NEWYEAR_BOW05_103", name: "[Blossom Pack] Savinose Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, +{ itemId: 635606, className: "2020NEWYEAR_MAC05_103", name: "[Blossom Pack] Savinose Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, +{ itemId: 635607, className: "2020NEWYEAR_TMAC05_105", name: "[Blossom Pack] Savinose Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, +{ itemId: 635608, className: "2020NEWYEAR_SPR05_103", name: "[Blossom Pack] Savinose Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, +{ itemId: 635609, className: "2020NEWYEAR_TSP05_103", name: "[Blossom Pack] Savinose Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, +{ itemId: 635610, className: "2020NEWYEAR_TSF05_103", name: "[Blossom Pack] Savinose Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 635611, className: "2020NEWYEAR_RAP05_103", name: "[Blossom Pack] Savinose Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, +{ itemId: 635612, className: "2020NEWYEAR_CAN05_105", name: "[Blossom Pack] Savinose Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, +{ itemId: 635613, className: "2020NEWYEAR_MUS05_103", name: "[Blossom Pack] Savinose Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, { itemId: 636000, className: "T_SWD01_137", name: "[Kupole] Badelaire", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 1613, maxAtk: 1713, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 636001, className: "T_TSW01_129", name: "[Kupole] Katzbalger", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 1572, maxAtk: 2359, attackType: "Slash" }, { itemId: 636002, className: "T_STF01_137", name: "[Kupole] Alter Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 1663, attackType: "Strike" }, @@ -25809,19 +25809,19 @@ { itemId: 636009, className: "T_RAP01_103", name: "[Kupole] Rapier", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, minAtk: 1663, maxAtk: 1663, attackType: "Aries" }, { itemId: 636026, className: "T_CAN100_101", name: "[Kupole] Superior Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 983, maxAtk: 2948, attackType: "Cannon" }, { itemId: 636028, className: "T_MUS100_101", name: "[Kupole] Superior Musket", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 1278, maxAtk: 2654, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 636029, className: "T_SWD03_120", name: "[Kupole] Pierene Sword", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 2808, maxAtk: 2982, addMDef: 330, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 636030, className: "T_TSW03_120", name: "[Kupole] Gale Slasher", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 2737, maxAtk: 4106, pAtk: 111, addMinAtk: 358, attackType: "Slash" }, -{ itemId: 636031, className: "T_STF03_120", name: "[Kupole] Windia Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 2895, attackType: "Strike" }, -{ itemId: 636032, className: "T_TSF03_120", name: "[Kupole] Vienarazis Staff", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 3421, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 636033, className: "T_TBW03_120", name: "[Kupole] Aufgowle Bow", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 2737, maxAtk: 4106, addMinAtk: 148, addMaxAtk: 246, attackType: "Arrow" }, -{ itemId: 636034, className: "T_BOW03_202", name: "[Kupole] Silver Hook", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, minAtk: 2808, maxAtk: 2982, addMinAtk: 102, addMaxAtk: 211, attackType: "Arrow" }, -{ itemId: 636035, className: "T_MAC03_204", name: "[Kupole] Vienarazis Mace", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 2866, maxAtk: 2924, mAtk: 2895, addMinAtk: 168, addMaxAtk: 320, attackType: "Strike" }, -{ itemId: 636036, className: "T_TMAC03_106", name: "[Kupole] Vienarazis Two-handed Mace", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 3079, maxAtk: 3763, mAtk: 3421, addMinAtk: 202, addMaxAtk: 384, attackType: "Strike" }, -{ itemId: 636037, className: "T_SPR03_115", name: "[Kupole] Pygry Spear", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, minAtk: 2605, maxAtk: 3184, attackType: "Aries" }, -{ itemId: 636038, className: "T_TSP03_115", name: "[Kupole] Sacmet", type: "Equip", group: "Weapon", weight: 205, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, minAtk: 2395, maxAtk: 4448, attackType: "Aries" }, -{ itemId: 636039, className: "T_RAP03_305", name: "[Kupole] Elga Rapier", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, minAtk: 2895, maxAtk: 2895, attackType: "Aries" }, -{ itemId: 636040, className: "T_MUS03_104", name: "[Kupole] Dragoon Piper", type: "Equip", group: "Weapon", weight: 158, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 2224, maxAtk: 4619, addMinAtk: 75, addMaxAtk: 115, addDef: -13, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 636042, className: "T_CAN03_101", name: "[Kupole] Lion Head Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 1711, maxAtk: 5132, attackType: "Cannon" }, +{ itemId: 636029, className: "T_SWD03_120", name: "[Kupole] Pierene Sword", type: "Equip", group: "Weapon", weight: 145, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 2808, maxAtk: 2982, addMDef: 330, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 636030, className: "T_TSW03_120", name: "[Kupole] Gale Slasher", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 2737, maxAtk: 4106, pAtk: 111, addMinAtk: 358, attackType: "Slash" }, +{ itemId: 636031, className: "T_STF03_120", name: "[Kupole] Windia Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 2895, attackType: "Strike" }, +{ itemId: 636032, className: "T_TSF03_120", name: "[Kupole] Vienarazis Staff", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 3421, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 636033, className: "T_TBW03_120", name: "[Kupole] Aufgowle Bow", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 2737, maxAtk: 4106, addMinAtk: 148, addMaxAtk: 246, attackType: "Arrow" }, +{ itemId: 636034, className: "T_BOW03_202", name: "[Kupole] Silver Hook", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 2808, maxAtk: 2982, addMinAtk: 102, addMaxAtk: 211, attackType: "Arrow" }, +{ itemId: 636035, className: "T_MAC03_204", name: "[Kupole] Vienarazis Mace", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 2866, maxAtk: 2924, mAtk: 2895, addMinAtk: 168, addMaxAtk: 320, attackType: "Strike" }, +{ itemId: 636036, className: "T_TMAC03_106", name: "[Kupole] Vienarazis Two-handed Mace", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 3079, maxAtk: 3763, mAtk: 3421, addMinAtk: 202, addMaxAtk: 384, attackType: "Strike" }, +{ itemId: 636037, className: "T_SPR03_115", name: "[Kupole] Pygry Spear", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 2605, maxAtk: 3184, attackType: "Aries" }, +{ itemId: 636038, className: "T_TSP03_115", name: "[Kupole] Sacmet", type: "Equip", group: "Weapon", weight: 205, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 2395, maxAtk: 4448, attackType: "Aries" }, +{ itemId: 636039, className: "T_RAP03_305", name: "[Kupole] Elga Rapier", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 2895, maxAtk: 2895, attackType: "Aries" }, +{ itemId: 636040, className: "T_MUS03_104", name: "[Kupole] Dragoon Piper", type: "Equip", group: "Weapon", weight: 158, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 2224, maxAtk: 4619, addMinAtk: 75, addMaxAtk: 115, addDef: -13, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 636042, className: "T_CAN03_101", name: "[Kupole] Lion Head Cannon", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 1711, maxAtk: 5132, attackType: "Cannon" }, { itemId: 636045, className: "SWD04_117_NEWCHARACTER_KU", name: "[Kupole] Masinios Sword", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 350, minAtk: 3541, maxAtk: 3760, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 636046, className: "TSW04_117_NEWCHARACTER_KU", name: "[Kupole] Masinios Two-handed Sword", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 350, minAtk: 3451, maxAtk: 5177, attackType: "Slash" }, { itemId: 636047, className: "STF04_118_NEWCHARACTER_KU", name: "[Kupole] Masinios Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 350, mAtk: 3651, attackType: "Strike" }, @@ -25847,7 +25847,7 @@ { itemId: 636109, className: "PC_RAP01_103", name: "[PP] Rapier", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, minAtk: 66, maxAtk: 66, attackType: "Aries", script: { strArg: "PC_Equip" } }, { itemId: 636124, className: "PC_CAN100_101", name: "[PP] Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 39, maxAtk: 117, attackType: "Cannon", script: { strArg: "PC_Equip" } }, { itemId: 636126, className: "PC_MUS100_101", name: "[PP] Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 51, maxAtk: 105, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "PC_Equip" } }, -{ itemId: 636127, className: "PC_TMAC02_103", name: "[PP] Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 70, maxAtk: 86, mAtk: 78, attackType: "Strike", script: { strArg: "PC_Equip" } }, +{ itemId: 636127, className: "PC_TMAC02_103", name: "[PP] Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 70, maxAtk: 86, mAtk: 78, attackType: "Strike", script: { strArg: "PC_Equip" } }, { itemId: 636200, className: "ChangeJob_SWD01_137", name: "Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Growth_Item" } }, { itemId: 636201, className: "ChangeJob_TSW01_129", name: "Two-handed Sword", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Slash", script: { strArg: "Growth_Item" } }, { itemId: 636202, className: "ChangeJob_STF01_137", name: "Rod", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 37, attackType: "Strike", script: { strArg: "Growth_Item" } }, @@ -25860,7 +25860,7 @@ { itemId: 636209, className: "ChangeJob_RAP01_103", name: "Rapier", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, minAtk: 37, maxAtk: 37, attackType: "Aries", script: { strArg: "Growth_Item" } }, { itemId: 636224, className: "ChangeJob_CAN100_101", name: "Cannon", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 22, maxAtk: 66, attackType: "Cannon", script: { strArg: "Growth_Item" } }, { itemId: 636226, className: "ChangeJob_MUS100_101", name: "Musket", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 29, maxAtk: 59, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Growth_Item" } }, -{ itemId: 636227, className: "ChangeJob_TMAC02_103", name: "Two-handed Mace", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 39, maxAtk: 48, mAtk: 44, attackType: "Strike", script: { strArg: "Growth_Item" } }, +{ itemId: 636227, className: "ChangeJob_TMAC02_103", name: "Two-handed Mace", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 39, maxAtk: 48, mAtk: 44, attackType: "Strike", script: { strArg: "Growth_Item" } }, { itemId: 636300, className: "NEWYEAR_WEAPON_SWD01_137", name: "[Wake Up] Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 50, maxAtk: 53, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Growth_Item_Unique" } }, { itemId: 636301, className: "NEWYEAR_WEAPON_TSW01_129", name: "[Wake Up] Two-handed Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 49, maxAtk: 73, attackType: "Slash", script: { strArg: "Growth_Item_Unique" } }, { itemId: 636302, className: "NEWYEAR_WEAPON_STF01_137", name: "[Wake Up] Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 52, attackType: "Strike", script: { strArg: "Growth_Item_Unique" } }, @@ -25913,60 +25913,60 @@ { itemId: 636512, className: "STEAM_TO_BEGIN_1_CAN04_113", name: "To begin: Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 30, maxAtk: 91, attackType: "Cannon", script: { strArg: "Growth_Item_Unique" } }, { itemId: 636514, className: "STEAM_TO_BEGIN_1_MUS04_113", name: "To begin: Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 40, maxAtk: 82, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Growth_Item_Unique" } }, { itemId: 636515, className: "STEAM_TO_BEGIN_1_TMAC04_112", name: "To begin: Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 55, maxAtk: 67, mAtk: 61, attackType: "Strike", script: { strArg: "Growth_Item_Unique" } }, -{ itemId: 636601, className: "PVP_SWD05_103", name: "Savinose Legva Sword (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 5173, maxAtk: 5493, attackType: "Slash", script: { strArg: "pvp_Mine" } }, -{ itemId: 636602, className: "PVP_TSW05_103", name: "Savinose Legva Two-handed Sword (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 5042, maxAtk: 7563, attackType: "Slash", script: { strArg: "pvp_Mine" } }, -{ itemId: 636603, className: "PVP_STF05_103", name: "Savinose Legva Rod (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 5333, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 636604, className: "PVP_TBW05_103", name: "Savinose Legva Bow (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 5042, maxAtk: 7563, attackType: "Arrow", script: { strArg: "pvp_Mine" } }, -{ itemId: 636605, className: "PVP_BOW05_103", name: "Savinose Legva Crossbow (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, minAtk: 5173, maxAtk: 5493, attackType: "Arrow", script: { strArg: "pvp_Mine" } }, -{ itemId: 636606, className: "PVP_MAC05_103", name: "Savinose Legva Mace (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 636607, className: "PVP_TMAC05_105", name: "Savinose Legva Two-handed Mace (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 636608, className: "PVP_SPR05_103", name: "Savinose Legva Spear (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, minAtk: 4800, maxAtk: 5866, attackType: "Aries", script: { strArg: "pvp_Mine" } }, -{ itemId: 636609, className: "PVP_TSP05_103", name: "Savinose Legva Pike (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, minAtk: 4412, maxAtk: 8193, attackType: "Aries", script: { strArg: "pvp_Mine" } }, -{ itemId: 636610, className: "PVP_TSF05_103", name: "Savinose Legva Staff (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, -{ itemId: 636611, className: "PVP_RAP05_103", name: "Savinose Legva Rapier (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, minAtk: 5333, maxAtk: 5333, attackType: "Aries", script: { strArg: "pvp_Mine" } }, -{ itemId: 636612, className: "PVP_CAN05_105", name: "Savinose Legva Cannon (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 3151, maxAtk: 9454, attackType: "Cannon", script: { strArg: "pvp_Mine" } }, -{ itemId: 636613, className: "PVP_MUS05_103", name: "Savinose Legva Musket (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "pvp_Mine" } }, -{ itemId: 636646, className: "PVP_SWD04_126", name: "Vaivora Sword - Echo (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 4341, maxAtk: 4610, attackType: "Slash", script: { strArg: "pvp_Mine" } }, -{ itemId: 636647, className: "PVP_TSW04_126", name: "Vaivora Two-handed Sword - Florescence (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 4231, maxAtk: 6347, attackType: "Slash", script: { strArg: "pvp_Mine" } }, -{ itemId: 636648, className: "PVP_STF04_127", name: "Vaivora Rod - Time Rush (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 4476, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 636649, className: "PVP_TBW04_126", name: "Vaivora Bow - Reinforced Bowstring (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 4231, maxAtk: 6347, attackType: "Arrow", script: { strArg: "pvp_Mine" } }, -{ itemId: 636650, className: "PVP_BOW04_126", name: "Vaivora Crossbow - Double Marking (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, minAtk: 4341, maxAtk: 4610, middleSizeBonus: 990, attackType: "Arrow", script: { strArg: "pvp_Mine" } }, -{ itemId: 636651, className: "PVP_MAC04_129", name: "Vaivora Mace - Mass Heal: Freeze (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 4431, maxAtk: 4520, mAtk: 4476, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 636652, className: "PVP_TMAC04_118", name: "Vaivora Two-handed Mace - Convict (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 636654, className: "PVP_SPR04_127", name: "Vaivora Spear - Rete Shooter (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, minAtk: 4028, maxAtk: 4923, attackType: "Aries", script: { strArg: "pvp_Mine" } }, -{ itemId: 636655, className: "PVP_TSP04_128", name: "Vaivora Pike - Halberd (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, minAtk: 3703, maxAtk: 6876, attackType: "Aries", script: { strArg: "pvp_Mine" } }, -{ itemId: 636657, className: "PVP_TSF04_129", name: "Vaivora Staff - Stone-slinger (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, -{ itemId: 636659, className: "PVP_RAP04_124", name: "Vaivora Rapier - Leventador (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, minAtk: 4476, maxAtk: 4476, attackType: "Aries", aries: 990, script: { strArg: "pvp_Mine" } }, -{ itemId: 636660, className: "PVP_CAN04_118", name: "Vaivora Cannon - Cannon Hold (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 2645, maxAtk: 7934, addMinAtk: 1780, attackType: "Cannon", script: { strArg: "pvp_Mine" } }, -{ itemId: 636661, className: "PVP_MUS04_118", name: "Vaivora Musket - Armor-piercing Shell (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 3438, maxAtk: 7141, addMaxAtk: 1025, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "pvp_Mine" } }, -{ itemId: 636663, className: "PVP_SWD04_126_1", name: "Vaivora Sword - Slash Space (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 4341, maxAtk: 4610, attackType: "Slash", script: { strArg: "pvp_Mine" } }, -{ itemId: 636664, className: "PVP_TSP04_128_1", name: "Vaivora Pike - Grind (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, minAtk: 3703, maxAtk: 6876, middleSizeBonus: 1488, attackType: "Aries", script: { strArg: "pvp_Mine" } }, -{ itemId: 636665, className: "PVP_TSF04_129_1", name: "Vaivora Staff - Diffuse Reflection (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, -{ itemId: 636667, className: "PVP_TSF04_129_2", name: "Vaivora Staff - Fire Bolt (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, -{ itemId: 636668, className: "PVP_STF04_127_1", name: "Vaivora Rod - Wicked Desire (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 4476, addMAtk: 590, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 636669, className: "PVP_MAC04_129_1", name: "Vaivora Mace - Sacred Armor (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 4431, maxAtk: 4520, mAtk: 4476, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 636670, className: "PVP_TMAC04_118_1", name: "Vaivora Two-handed Mace - Outrage (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 636674, className: "PVP_TBW04_126_1", name: "Vaivora Bow - Orbital Arrow (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 4231, maxAtk: 6347, attackType: "Arrow", script: { strArg: "pvp_Mine" } }, -{ itemId: 636675, className: "PVP_SWD04_126_2", name: "Vaivora Sword - Saber (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 4341, maxAtk: 4610, attackType: "Slash", slash: 992, script: { strArg: "pvp_Mine" } }, -{ itemId: 636676, className: "PVP_STF04_127_2", name: "Vaivora Rod - Icy Snow Bubble (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 4476, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 636677, className: "PVP_TSW04_126_1", name: "Vaivora Two-handed Sword - Dual Sword (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 4231, maxAtk: 6347, attackType: "Slash", script: { strArg: "pvp_Mine" } }, -{ itemId: 636678, className: "PVP_SPR04_127_1", name: "Vaivora Spear - Javelin (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, minAtk: 4028, maxAtk: 4923, attackType: "Aries", aries: 990, script: { strArg: "pvp_Mine" } }, -{ itemId: 636679, className: "PVP_MUS04_118_1", name: "Vaivora Musket - Triple Steps Single Shot (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 3438, maxAtk: 7141, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "pvp_Mine" } }, -{ itemId: 636680, className: "PVP_TMAC04_118_2", name: "Vaivora Two-handed Mace - Desition (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 636681, className: "PVP_SWD04_126_3", name: "Vaivora Sword - Coordination (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 4341, maxAtk: 4610, attackType: "Slash", script: { strArg: "pvp_Mine" } }, -{ itemId: 636701, className: "Event_SWD05_104", name: "[Moonlight] Skiaclipse Varna Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, -{ itemId: 636702, className: "Event_TSW05_104", name: "[Moonlight] Skiaclipse Varna Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, -{ itemId: 636703, className: "Event_STF05_104", name: "[Moonlight] Skiaclipse Varna Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 5333, attackType: "Strike" }, -{ itemId: 636704, className: "Event_TBW05_104", name: "[Moonlight] Skiaclipse Varna Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, -{ itemId: 636705, className: "Event_BOW05_104", name: "[Moonlight] Skiaclipse Varna Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, -{ itemId: 636706, className: "Event_MAC05_104", name: "[Moonlight] Skiaclipse Varna Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, -{ itemId: 636707, className: "Event_TMAC05_106", name: "[Moonlight] Skiaclipse Varna Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, -{ itemId: 636709, className: "Event_SPR05_104", name: "[Moonlight] Skiaclipse Varna Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, -{ itemId: 636710, className: "Event_TSP05_104", name: "[Moonlight] Skiaclipse Varna Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, -{ itemId: 636712, className: "Event_TSF05_104", name: "[Moonlight] Skiaclipse Varna Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 636714, className: "Event_RAP05_104", name: "[Moonlight] Skiaclipse Varna Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, -{ itemId: 636715, className: "Event_CAN05_106", name: "[Moonlight] Skiaclipse Varna Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, -{ itemId: 636716, className: "Event_MUS05_104", name: "[Moonlight] Skiaclipse Varna Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 636601, className: "PVP_SWD05_103", name: "Savinose Legva Sword (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Slash", script: { strArg: "pvp_Mine" } }, +{ itemId: 636602, className: "PVP_TSW05_103", name: "Savinose Legva Two-handed Sword (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Slash", script: { strArg: "pvp_Mine" } }, +{ itemId: 636603, className: "PVP_STF05_103", name: "Savinose Legva Rod (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 5333, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 636604, className: "PVP_TBW05_103", name: "Savinose Legva Bow (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Arrow", script: { strArg: "pvp_Mine" } }, +{ itemId: 636605, className: "PVP_BOW05_103", name: "Savinose Legva Crossbow (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Arrow", script: { strArg: "pvp_Mine" } }, +{ itemId: 636606, className: "PVP_MAC05_103", name: "Savinose Legva Mace (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 636607, className: "PVP_TMAC05_105", name: "Savinose Legva Two-handed Mace (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 636608, className: "PVP_SPR05_103", name: "Savinose Legva Spear (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 4800, maxAtk: 5866, attackType: "Aries", script: { strArg: "pvp_Mine" } }, +{ itemId: 636609, className: "PVP_TSP05_103", name: "Savinose Legva Pike (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 4412, maxAtk: 8193, attackType: "Aries", script: { strArg: "pvp_Mine" } }, +{ itemId: 636610, className: "PVP_TSF05_103", name: "Savinose Legva Staff (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, +{ itemId: 636611, className: "PVP_RAP05_103", name: "Savinose Legva Rapier (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 5333, attackType: "Aries", script: { strArg: "pvp_Mine" } }, +{ itemId: 636612, className: "PVP_CAN05_105", name: "Savinose Legva Cannon (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 3151, maxAtk: 9454, attackType: "Cannon", script: { strArg: "pvp_Mine" } }, +{ itemId: 636613, className: "PVP_MUS05_103", name: "Savinose Legva Musket (20 min)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "pvp_Mine" } }, +{ itemId: 636646, className: "PVP_SWD04_126", name: "Vaivora Sword - Echo (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 4341, maxAtk: 4610, attackType: "Slash", script: { strArg: "pvp_Mine" } }, +{ itemId: 636647, className: "PVP_TSW04_126", name: "Vaivora Two-handed Sword - Florescence (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 4231, maxAtk: 6347, attackType: "Slash", script: { strArg: "pvp_Mine" } }, +{ itemId: 636648, className: "PVP_STF04_127", name: "Vaivora Rod - Time Rush (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 4476, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 636649, className: "PVP_TBW04_126", name: "Vaivora Bow - Reinforced Bowstring (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 4231, maxAtk: 6347, attackType: "Arrow", script: { strArg: "pvp_Mine" } }, +{ itemId: 636650, className: "PVP_BOW04_126", name: "Vaivora Crossbow - Double Marking (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 4341, maxAtk: 4610, middleSizeBonus: 990, attackType: "Arrow", script: { strArg: "pvp_Mine" } }, +{ itemId: 636651, className: "PVP_MAC04_129", name: "Vaivora Mace - Mass Heal: Freeze (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 4520, mAtk: 4476, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 636652, className: "PVP_TMAC04_118", name: "Vaivora Two-handed Mace - Convict (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 636654, className: "PVP_SPR04_127", name: "Vaivora Spear - Rete Shooter (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 4028, maxAtk: 4923, attackType: "Aries", script: { strArg: "pvp_Mine" } }, +{ itemId: 636655, className: "PVP_TSP04_128", name: "Vaivora Pike - Halberd (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 3703, maxAtk: 6876, attackType: "Aries", script: { strArg: "pvp_Mine" } }, +{ itemId: 636657, className: "PVP_TSF04_129", name: "Vaivora Staff - Stone-slinger (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, +{ itemId: 636659, className: "PVP_RAP04_124", name: "Vaivora Rapier - Leventador (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 4476, maxAtk: 4476, attackType: "Aries", aries: 990, script: { strArg: "pvp_Mine" } }, +{ itemId: 636660, className: "PVP_CAN04_118", name: "Vaivora Cannon - Cannon Hold (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 2645, maxAtk: 7934, addMinAtk: 1780, attackType: "Cannon", script: { strArg: "pvp_Mine" } }, +{ itemId: 636661, className: "PVP_MUS04_118", name: "Vaivora Musket - Armor-piercing Shell (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 3438, maxAtk: 7141, addMaxAtk: 1025, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "pvp_Mine" } }, +{ itemId: 636663, className: "PVP_SWD04_126_1", name: "Vaivora Sword - Slash Space (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 4341, maxAtk: 4610, attackType: "Slash", script: { strArg: "pvp_Mine" } }, +{ itemId: 636664, className: "PVP_TSP04_128_1", name: "Vaivora Pike - Grind (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 3703, maxAtk: 6876, middleSizeBonus: 1488, attackType: "Aries", script: { strArg: "pvp_Mine" } }, +{ itemId: 636665, className: "PVP_TSF04_129_1", name: "Vaivora Staff - Diffuse Reflection (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, +{ itemId: 636667, className: "PVP_TSF04_129_2", name: "Vaivora Staff - Fire Bolt (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, +{ itemId: 636668, className: "PVP_STF04_127_1", name: "Vaivora Rod - Wicked Desire (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 4476, addMAtk: 590, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 636669, className: "PVP_MAC04_129_1", name: "Vaivora Mace - Sacred Armor (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 4520, mAtk: 4476, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 636670, className: "PVP_TMAC04_118_1", name: "Vaivora Two-handed Mace - Outrage (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 636674, className: "PVP_TBW04_126_1", name: "Vaivora Bow - Orbital Arrow (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 4231, maxAtk: 6347, attackType: "Arrow", script: { strArg: "pvp_Mine" } }, +{ itemId: 636675, className: "PVP_SWD04_126_2", name: "Vaivora Sword - Saber (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 4341, maxAtk: 4610, attackType: "Slash", slash: 992, script: { strArg: "pvp_Mine" } }, +{ itemId: 636676, className: "PVP_STF04_127_2", name: "Vaivora Rod - Icy Snow Bubble (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 4476, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 636677, className: "PVP_TSW04_126_1", name: "Vaivora Two-handed Sword - Dual Sword (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 4231, maxAtk: 6347, attackType: "Slash", script: { strArg: "pvp_Mine" } }, +{ itemId: 636678, className: "PVP_SPR04_127_1", name: "Vaivora Spear - Javelin (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 4028, maxAtk: 4923, attackType: "Aries", aries: 990, script: { strArg: "pvp_Mine" } }, +{ itemId: 636679, className: "PVP_MUS04_118_1", name: "Vaivora Musket - Triple Steps Single Shot (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 3438, maxAtk: 7141, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "pvp_Mine" } }, +{ itemId: 636680, className: "PVP_TMAC04_118_2", name: "Vaivora Two-handed Mace - Desition (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 636681, className: "PVP_SWD04_126_3", name: "Vaivora Sword - Coordination (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 4341, maxAtk: 4610, attackType: "Slash", script: { strArg: "pvp_Mine" } }, +{ itemId: 636701, className: "Event_SWD05_104", name: "[Moonlight] Skiaclipse Varna Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, +{ itemId: 636702, className: "Event_TSW05_104", name: "[Moonlight] Skiaclipse Varna Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, +{ itemId: 636703, className: "Event_STF05_104", name: "[Moonlight] Skiaclipse Varna Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 5333, attackType: "Strike" }, +{ itemId: 636704, className: "Event_TBW05_104", name: "[Moonlight] Skiaclipse Varna Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, +{ itemId: 636705, className: "Event_BOW05_104", name: "[Moonlight] Skiaclipse Varna Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, +{ itemId: 636706, className: "Event_MAC05_104", name: "[Moonlight] Skiaclipse Varna Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, +{ itemId: 636707, className: "Event_TMAC05_106", name: "[Moonlight] Skiaclipse Varna Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, +{ itemId: 636709, className: "Event_SPR05_104", name: "[Moonlight] Skiaclipse Varna Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, +{ itemId: 636710, className: "Event_TSP05_104", name: "[Moonlight] Skiaclipse Varna Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, +{ itemId: 636712, className: "Event_TSF05_104", name: "[Moonlight] Skiaclipse Varna Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 636714, className: "Event_RAP05_104", name: "[Moonlight] Skiaclipse Varna Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, +{ itemId: 636715, className: "Event_CAN05_106", name: "[Moonlight] Skiaclipse Varna Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, +{ itemId: 636716, className: "Event_MUS05_104", name: "[Moonlight] Skiaclipse Varna Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, { itemId: 636801, className: "NEWYEAR_WEAPON_SWD01_138", name: "[Harvest] Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 64, maxAtk: 68, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Growth_Item_Legend" } }, { itemId: 636802, className: "NEWYEAR_WEAPON_TSW01_130", name: "[Harvest] Two-handed Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 62, maxAtk: 94, attackType: "Slash", script: { strArg: "Growth_Item_Legend" } }, { itemId: 636803, className: "NEWYEAR_WEAPON_STF01_138", name: "[Harvest] Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 66, attackType: "Strike", script: { strArg: "Growth_Item_Legend" } }, @@ -25980,32 +25980,32 @@ { itemId: 636813, className: "NEWYEAR_WEAPON_CAN100_102", name: "[Harvest] Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 39, maxAtk: 117, attackType: "Cannon", script: { strArg: "Growth_Item_Legend" } }, { itemId: 636815, className: "NEWYEAR_WEAPON_MUS100_102", name: "[Harvest] Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 51, maxAtk: 105, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Growth_Item_Legend" } }, { itemId: 636816, className: "NEWYEAR_WEAPON_TMAC02_104", name: "[Harvest] Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 70, maxAtk: 86, mAtk: 78, attackType: "Strike", script: { strArg: "Growth_Item_Legend" } }, -{ itemId: 636913, className: "Grimoire_SWD04_120", name: "[Event] Asio Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, minAtk: 3841, maxAtk: 4079, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 636914, className: "Grimoire_STF04_120", name: "[Event] Asio Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, mAtk: 3960, addMDef: 325, attackType: "Strike" }, -{ itemId: 636919, className: "Grimoire_TSW04_120", name: "[Event] Asio Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, -{ itemId: 636920, className: "Grimoire_TBW04_120", name: "[Event] Asio Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, -{ itemId: 636921, className: "Grimoire_BOW04_120", name: "[Event] Asio Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, minAtk: 3841, maxAtk: 4079, attackType: "Arrow" }, -{ itemId: 636922, className: "Grimoire_MAC04_122", name: "[Event] Asio Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, -{ itemId: 636923, className: "Grimoire_TMAC04_111", name: "[Event] Asio Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, -{ itemId: 636925, className: "Grimoire_SPR04_121", name: "[Event] Asio Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, -{ itemId: 636926, className: "Grimoire_TSP04_122", name: "[Event] Asio Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, -{ itemId: 636928, className: "Grimoire_TSF04_120", name: "[Event] Asio Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 636930, className: "Grimoire_RAP04_115", name: "[Event] Asio Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, minAtk: 3960, maxAtk: 3960, attackType: "Aries" }, -{ itemId: 636931, className: "Grimoire_CAN04_111", name: "[Event] Asio Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, -{ itemId: 636932, className: "Grimoire_MUS04_111", name: "[Event] Asio Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, minAtk: 3042, maxAtk: 6318, addMaxAtk: 572, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 636933, className: "Grimoire_SWD04_119", name: "[Event] Wastrel Zvaigzde Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, minAtk: 3841, maxAtk: 4079, addDef: 248, attackType: "Slash", leftHandSkill: "Sword_Attack", strike: 325 }, -{ itemId: 636934, className: "Grimoire_TSW04_119", name: "[Event] Wastrel Zvaigzde Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, -{ itemId: 636935, className: "Grimoire_STF04_121", name: "[Event] Wastrel Zvaigzde Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, mAtk: 3960, addMAtk: 232, addDef: 325, attackType: "Strike" }, -{ itemId: 636936, className: "Grimoire_TBW04_119", name: "[Event] Wastrel Zvaigzde Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, -{ itemId: 636937, className: "Grimoire_BOW04_119", name: "[Event] Wastrel Zvaigzde Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, minAtk: 3841, maxAtk: 4079, addMinAtk: 152, addMaxAtk: 352, attackType: "Arrow" }, -{ itemId: 636938, className: "Grimoire_MAC04_121", name: "[Event] Wastrel Zvaigzde Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, -{ itemId: 636939, className: "Grimoire_TMAC04_110", name: "[Event] Wastrel Zvaigzde Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, -{ itemId: 636941, className: "Grimoire_SPR04_120", name: "[Event] Wastrel Zvaigzde Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, -{ itemId: 636942, className: "Grimoire_TSP04_121", name: "[Event] Wastrel Zvaigzde Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, -{ itemId: 636944, className: "Grimoire_TSF04_19", name: "[Event] Wastrel Zvaigzde Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 636946, className: "Grimoire_RAP04_114", name: "[Event] Wastrel Zvaigzde Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, minAtk: 3960, maxAtk: 3960, pAtk: 132, attackType: "Aries" }, -{ itemId: 636947, className: "Grimoire_CAN04_110", name: "[Event] Wastrel Zvaigzde Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, -{ itemId: 636978, className: "Grimoire_MUS04_110", name: "[Event] Wastrel Zvaigzde Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, minAtk: 3042, maxAtk: 6318, addMaxAtk: 732, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 636913, className: "Grimoire_SWD04_120", name: "[Event] Asio Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 636914, className: "Grimoire_STF04_120", name: "[Event] Asio Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 3960, addMDef: 325, attackType: "Strike" }, +{ itemId: 636919, className: "Grimoire_TSW04_120", name: "[Event] Asio Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, +{ itemId: 636920, className: "Grimoire_TBW04_120", name: "[Event] Asio Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, +{ itemId: 636921, className: "Grimoire_BOW04_120", name: "[Event] Asio Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, attackType: "Arrow" }, +{ itemId: 636922, className: "Grimoire_MAC04_122", name: "[Event] Asio Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, +{ itemId: 636923, className: "Grimoire_TMAC04_111", name: "[Event] Asio Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, +{ itemId: 636925, className: "Grimoire_SPR04_121", name: "[Event] Asio Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, +{ itemId: 636926, className: "Grimoire_TSP04_122", name: "[Event] Asio Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, +{ itemId: 636928, className: "Grimoire_TSF04_120", name: "[Event] Asio Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 636930, className: "Grimoire_RAP04_115", name: "[Event] Asio Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3960, maxAtk: 3960, attackType: "Aries" }, +{ itemId: 636931, className: "Grimoire_CAN04_111", name: "[Event] Asio Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, +{ itemId: 636932, className: "Grimoire_MUS04_111", name: "[Event] Asio Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3042, maxAtk: 6318, addMaxAtk: 572, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 636933, className: "Grimoire_SWD04_119", name: "[Event] Wastrel Zvaigzde Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, addDef: 248, attackType: "Slash", leftHandSkill: "Sword_Attack", strike: 325 }, +{ itemId: 636934, className: "Grimoire_TSW04_119", name: "[Event] Wastrel Zvaigzde Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, +{ itemId: 636935, className: "Grimoire_STF04_121", name: "[Event] Wastrel Zvaigzde Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 3960, addMAtk: 232, addDef: 325, attackType: "Strike" }, +{ itemId: 636936, className: "Grimoire_TBW04_119", name: "[Event] Wastrel Zvaigzde Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, +{ itemId: 636937, className: "Grimoire_BOW04_119", name: "[Event] Wastrel Zvaigzde Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, addMinAtk: 152, addMaxAtk: 352, attackType: "Arrow" }, +{ itemId: 636938, className: "Grimoire_MAC04_121", name: "[Event] Wastrel Zvaigzde Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, +{ itemId: 636939, className: "Grimoire_TMAC04_110", name: "[Event] Wastrel Zvaigzde Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, +{ itemId: 636941, className: "Grimoire_SPR04_120", name: "[Event] Wastrel Zvaigzde Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, +{ itemId: 636942, className: "Grimoire_TSP04_121", name: "[Event] Wastrel Zvaigzde Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, +{ itemId: 636944, className: "Grimoire_TSF04_19", name: "[Event] Wastrel Zvaigzde Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 636946, className: "Grimoire_RAP04_114", name: "[Event] Wastrel Zvaigzde Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3960, maxAtk: 3960, pAtk: 132, attackType: "Aries" }, +{ itemId: 636947, className: "Grimoire_CAN04_110", name: "[Event] Wastrel Zvaigzde Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, +{ itemId: 636978, className: "Grimoire_MUS04_110", name: "[Event] Wastrel Zvaigzde Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3042, maxAtk: 6318, addMaxAtk: 732, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, { itemId: 639701, className: "SWD02_109_QUEST_REWARD", name: "Kedoran Cheminis Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 40, minAtk: 387, maxAtk: 411, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 639702, className: "TSW03_107_QUEST_REWARD", name: "Kedoran Chapparition Two-handed Sword", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 5824, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 40, minAtk: 378, maxAtk: 566, largeSizeBonus: 46, attackType: "Slash" }, { itemId: 639703, className: "STF03_105_QUEST_REWARD", name: "Kedoran Chapparition Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 3640, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 40, mAtk: 399, attackType: "Strike" }, @@ -26071,19 +26071,19 @@ { itemId: 639824, className: "TMAC02_105_QUEST_REWARD", name: "Kedoran Pajoritas Two-handed Mace", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 220, minAtk: 2162, maxAtk: 2643, mAtk: 2402, attackType: "Strike" }, { itemId: 639826, className: "CAN01_107_QUEST_REWARD", name: "Kedoran Erera Cannon", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 220, minAtk: 1201, maxAtk: 3604, attackType: "Cannon" }, { itemId: 639827, className: "MUS02_107_QUEST_REWARD", name: "Kedoran Migantis Musket", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 52276, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 220, minAtk: 1562, maxAtk: 3243, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 639841, className: "SWD04_109_QUEST_REWARD_NT", name: "Kedoran Abdochar", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Sword", equipType2: "Sword", minLevel: 315, minAtk: 3191, maxAtk: 3388, addMaxAtk: 158, addDef: 245, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 639842, className: "TSW04_109_QUEST_REWARD_NT", name: "Kedoran Sarkmis", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THSword", equipType2: "Sword", minLevel: 315, minAtk: 3110, maxAtk: 4665, attackType: "Slash", darkRes: 180 }, -{ itemId: 639843, className: "MAC04_111_QUEST_REWARD_NT", name: "Kedoran Skull Smasher", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Mace", equipType2: "Mace", minLevel: 315, minAtk: 3257, maxAtk: 3323, mAtk: 3290, attackType: "Strike" }, -{ itemId: 639844, className: "TSF04_109_QUEST_REWARD_NT", name: "Kedoran Regard Horn Staff", type: "Equip", group: "Weapon", weight: 235, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, mAtk: 3888, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 639845, className: "STF04_110_QUEST_REWARD_NT", name: "Kedoran Heart of Glory", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Staff", equipType2: "Staff", minLevel: 315, mAtk: 3290, addDef: 132, attackType: "Strike" }, -{ itemId: 639846, className: "TMAC04_101_QUEST_REWARD_NT", name: "Kedoran Skull Breaker", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THMace", equipType2: "Mace", minLevel: 315, minAtk: 3499, maxAtk: 4277, mAtk: 3888, attackType: "Strike" }, -{ itemId: 639848, className: "SPR04_110_QUEST_REWARD_NT", name: "Kedoran Wingshard Spear", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 48800, sellPrice: 17798, equipType1: "Spear", equipType2: "Spear", minLevel: 315, minAtk: 2961, maxAtk: 3619, attackType: "Aries" }, -{ itemId: 639849, className: "TSP04_111_QUEST_REWARD_NT", name: "Kedoran Regard Horn Pike", type: "Equip", group: "Weapon", weight: 215, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, minAtk: 2721, maxAtk: 5054, attackType: "Aries" }, -{ itemId: 639850, className: "RAP04_106_QUEST_REWARD_NT", name: "Kedoran Black Horn", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 48800, sellPrice: 11991, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, minAtk: 3290, maxAtk: 3290, attackType: "Aries" }, -{ itemId: 639851, className: "BOW04_109_QUEST_REWARD_NT", name: "Kedoran Regard Horn Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Bow", equipType2: "Bow", minLevel: 315, minAtk: 3191, maxAtk: 3388, attackType: "Arrow" }, -{ itemId: 639852, className: "TBW04_109_QUEST_REWARD_NT", name: "Kedoran Astra Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THBow", equipType2: "Bow", minLevel: 315, minAtk: 3110, maxAtk: 4665, attackType: "Arrow" }, -{ itemId: 639854, className: "CAN04_103_QUEST_REWARD_NT", name: "Kedoran Emengard Cannon", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 78080, sellPrice: 8868, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, minAtk: 1944, maxAtk: 5832, addMaxAtk: 302, attackType: "Cannon" }, -{ itemId: 639855, className: "MUS04_103_QUEST_REWARD_NT", name: "Kedoran Emengard Musket", type: "Equip", group: "Weapon", weight: 172, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "Musket", equipType2: "Gun", minLevel: 315, minAtk: 2527, maxAtk: 5249, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 639841, className: "SWD04_109_QUEST_REWARD_NT", name: "Kedoran Abdochar", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Sword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 3191, maxAtk: 3388, addMaxAtk: 158, addDef: 245, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 639842, className: "TSW04_109_QUEST_REWARD_NT", name: "Kedoran Sarkmis", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THSword", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 3110, maxAtk: 4665, attackType: "Slash", darkRes: 180 }, +{ itemId: 639843, className: "MAC04_111_QUEST_REWARD_NT", name: "Kedoran Skull Smasher", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Mace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 3257, maxAtk: 3323, mAtk: 3290, attackType: "Strike" }, +{ itemId: 639844, className: "TSF04_109_QUEST_REWARD_NT", name: "Kedoran Regard Horn Staff", type: "Equip", group: "Weapon", weight: 235, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THStaff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 3888, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 639845, className: "STF04_110_QUEST_REWARD_NT", name: "Kedoran Heart of Glory", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Staff", equipType2: "Staff", minLevel: 315, equipExpGroup: "Equip", mAtk: 3290, addDef: 132, attackType: "Strike" }, +{ itemId: 639846, className: "TMAC04_101_QUEST_REWARD_NT", name: "Kedoran Skull Breaker", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THMace", equipType2: "Mace", minLevel: 315, equipExpGroup: "Equip", minAtk: 3499, maxAtk: 4277, mAtk: 3888, attackType: "Strike" }, +{ itemId: 639848, className: "SPR04_110_QUEST_REWARD_NT", name: "Kedoran Wingshard Spear", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 48800, sellPrice: 17798, equipType1: "Spear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2961, maxAtk: 3619, attackType: "Aries" }, +{ itemId: 639849, className: "TSP04_111_QUEST_REWARD_NT", name: "Kedoran Regard Horn Pike", type: "Equip", group: "Weapon", weight: 215, maxStack: 1, price: 78080, sellPrice: 20723, equipType1: "THSpear", equipType2: "Spear", minLevel: 315, equipExpGroup: "Equip", minAtk: 2721, maxAtk: 5054, attackType: "Aries" }, +{ itemId: 639850, className: "RAP04_106_QUEST_REWARD_NT", name: "Kedoran Black Horn", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 48800, sellPrice: 11991, equipType1: "Rapier", equipType2: "Sword", minLevel: 315, equipExpGroup: "Equip", minAtk: 3290, maxAtk: 3290, attackType: "Aries" }, +{ itemId: 639851, className: "BOW04_109_QUEST_REWARD_NT", name: "Kedoran Regard Horn Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 48800, sellPrice: 14780, equipType1: "Bow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 3191, maxAtk: 3388, attackType: "Arrow" }, +{ itemId: 639852, className: "TBW04_109_QUEST_REWARD_NT", name: "Kedoran Astra Bow", type: "Equip", group: "Weapon", weight: 250, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "THBow", equipType2: "Bow", minLevel: 315, equipExpGroup: "Equip", minAtk: 3110, maxAtk: 4665, attackType: "Arrow" }, +{ itemId: 639854, className: "CAN04_103_QUEST_REWARD_NT", name: "Kedoran Emengard Cannon", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 78080, sellPrice: 8868, equipType1: "Cannon", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 1944, maxAtk: 5832, addMaxAtk: 302, attackType: "Cannon" }, +{ itemId: 639855, className: "MUS04_103_QUEST_REWARD_NT", name: "Kedoran Emengard Musket", type: "Equip", group: "Weapon", weight: 172, maxStack: 1, price: 78080, sellPrice: 23649, equipType1: "Musket", equipType2: "Gun", minLevel: 315, equipExpGroup: "Equip", minAtk: 2527, maxAtk: 5249, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, { itemId: 639857, className: "SWD04_116_QUEST_REWARD", name: "Kedoran Raffye Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 350, minAtk: 3541, maxAtk: 3760, attackType: "Slash", leftHandSkill: "Sword_Attack" }, { itemId: 639858, className: "TSW04_116_QUEST_REWARD", name: "Kedoran Raffye Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 350, minAtk: 3451, maxAtk: 5177, attackType: "Slash" }, { itemId: 639859, className: "MAC04_118_QUEST_REWARD", name: "Kedoran Raffye Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 55466, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 350, minAtk: 3614, maxAtk: 3687, mAtk: 3651, attackType: "Strike" }, @@ -26097,45 +26097,45 @@ { itemId: 639868, className: "TBW04_116_QUEST_REWARD", name: "Kedoran Raffye Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 350, minAtk: 3451, maxAtk: 5177, attackType: "Arrow" }, { itemId: 639870, className: "CAN04_107_QUEST_REWARD", name: "Kedoran Raffye Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 350, minAtk: 2157, maxAtk: 6472, attackType: "Cannon" }, { itemId: 639871, className: "MUS04_107_QUEST_REWARD", name: "Kedoran Raffye Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 88745, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 350, minAtk: 2804, maxAtk: 5824, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 639873, className: "SWD04_118_QUEST_REWARD", name: "Kedoran Zvaigzde Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, minAtk: 3841, maxAtk: 4079, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 639874, className: "TSW04_118_QUEST_REWARD", name: "Kedoran Zvaigzde Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, -{ itemId: 639875, className: "STF04_119_QUEST_REWARD", name: "Kedoran Zvaigzde Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, mAtk: 3960, attackType: "Strike" }, -{ itemId: 639876, className: "TBW04_118_QUEST_REWARD", name: "Kedoran Zvaigzde Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, -{ itemId: 639877, className: "BOW04_118_QUEST_REWARD", name: "Kedoran Zvaigzde Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, minAtk: 3841, maxAtk: 4079, attackType: "Arrow" }, -{ itemId: 639878, className: "MAC04_120_QUEST_REWARD", name: "Kedoran Zvaigzde Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, -{ itemId: 639879, className: "TMAC04_109_QUEST_REWARD", name: "Kedoran Zvaigzde Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, -{ itemId: 639881, className: "SPR04_119_QUEST_REWARD", name: "Kedoran Zvaigzde Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, -{ itemId: 639882, className: "TSP04_120_QUEST_REWARD", name: "Kedoran Zvaigzde Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, -{ itemId: 639884, className: "TSF04_118_QUEST_REWARD", name: "Kedoran Zvaigzde Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 639886, className: "RAP04_113_QUEST_REWARD", name: "Kedoran Zvaigzde Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, minAtk: 3960, maxAtk: 3960, attackType: "Aries" }, -{ itemId: 639887, className: "CAN04_109_QUEST_REWARD", name: "Kedoran Zvaigzde Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, -{ itemId: 639888, className: "MUS04_109_QUEST_REWARD", name: "Kedoran Zvaigzde Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, minAtk: 3042, maxAtk: 6318, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 639903, className: "SWD04_110_QUEST_REWARD", name: "Kedoran Primus Migantis Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 270, minAtk: 2741, maxAtk: 2910, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 639904, className: "TSW04_114_QUEST_REWARD", name: "Kedoran Primus Migantis Two-handed Sword", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 270, minAtk: 2671, maxAtk: 4007, attackType: "Slash" }, -{ itemId: 639905, className: "STF04_115_QUEST_REWARD", name: "Kedoran Primus Migantis Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 270, mAtk: 2826, attackType: "Strike" }, -{ itemId: 639906, className: "TBW04_114_QUEST_REWARD", name: "Kedoran Primus Migantis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 270, minAtk: 2671, maxAtk: 4007, attackType: "Arrow" }, -{ itemId: 639907, className: "BOW04_114_QUEST_REWARD", name: "Kedoran Primus Migantis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 270, minAtk: 2741, maxAtk: 2910, attackType: "Arrow" }, -{ itemId: 639908, className: "MAC04_116_QUEST_REWARD", name: "Kedoran Primus Migantis Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 270, minAtk: 2797, maxAtk: 2854, mAtk: 2826, attackType: "Strike" }, -{ itemId: 639909, className: "TMAC04_105_QUEST_REWARD", name: "Kedoran Primus Migantis Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 270, minAtk: 3005, maxAtk: 3673, mAtk: 3339, attackType: "Strike" }, -{ itemId: 639911, className: "SPR04_115_QUEST_REWARD", name: "Kedoran Primus Migantis Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 270, minAtk: 2543, maxAtk: 3108, attackType: "Aries" }, -{ itemId: 639912, className: "TSP04_116_QUEST_REWARD", name: "Kedoran Primus Migantis Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, minAtk: 2338, maxAtk: 4341, attackType: "Aries" }, -{ itemId: 639914, className: "TSF04_114_QUEST_REWARD", name: "Kedoran Primus Migantis Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, mAtk: 3339, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 639916, className: "RAP04_109_QUEST_REWARD", name: "Kedoran Primus Migantis Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, minAtk: 2826, maxAtk: 2826, attackType: "Aries" }, -{ itemId: 639917, className: "CAN04_105_QUEST_REWARD", name: "Kedoran Primus Migantis Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, minAtk: 1670, maxAtk: 5009, attackType: "Cannon" }, -{ itemId: 639918, className: "MUS04_105_QUEST_REWARD", name: "Kedoran Primus Migantis Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 270, minAtk: 2171, maxAtk: 4508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 639955, className: "SWD04_121_QUEST_REWARD", name: "Kedoran Primus Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 4041, maxAtk: 4291, attackType: "Slash", leftHandSkill: "Sword_Attack" }, -{ itemId: 639956, className: "TSW04_121_QUEST_REWARD", name: "Kedoran Primus Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, -{ itemId: 639957, className: "STF04_122_QUEST_REWARD", name: "Kedoran Primus Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 4166, attackType: "Strike" }, -{ itemId: 639958, className: "TBW04_121_QUEST_REWARD", name: "Kedoran Primus Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, -{ itemId: 639959, className: "BOW04_121_QUEST_REWARD", name: "Kedoran Primus Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 4041, maxAtk: 4291, attackType: "Arrow" }, -{ itemId: 639960, className: "MAC04_123_QUEST_REWARD", name: "Kedoran Primus Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 4125, maxAtk: 4208, mAtk: 4166, attackType: "Strike" }, -{ itemId: 639961, className: "TMAC04_112_QUEST_REWARD", name: "Kedoran Primus Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike" }, -{ itemId: 639963, className: "SPR04_122_QUEST_REWARD", name: "Kedoran Primus Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 3750, maxAtk: 4583, attackType: "Aries" }, -{ itemId: 639964, className: "TSP04_123_QUEST_REWARD", name: "Kedoran Primus Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, -{ itemId: 639966, className: "TSF04_121_QUEST_REWARD", name: "Kedoran Primus Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 639968, className: "RAP04_118_QUEST_REWARD", name: "Kedoran Primus Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, -{ itemId: 639969, className: "CAN04_113_QUEST_REWARD", name: "Kedoran Primus Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 2462, maxAtk: 7386, attackType: "Cannon" }, -{ itemId: 639970, className: "MUS04_113_QUEST_REWARD", name: "Kedoran Primus Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 3200, maxAtk: 6647, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 639873, className: "SWD04_118_QUEST_REWARD", name: "Kedoran Zvaigzde Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 639874, className: "TSW04_118_QUEST_REWARD", name: "Kedoran Zvaigzde Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Slash" }, +{ itemId: 639875, className: "STF04_119_QUEST_REWARD", name: "Kedoran Zvaigzde Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 3960, attackType: "Strike" }, +{ itemId: 639876, className: "TBW04_118_QUEST_REWARD", name: "Kedoran Zvaigzde Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3744, maxAtk: 5616, attackType: "Arrow" }, +{ itemId: 639877, className: "BOW04_118_QUEST_REWARD", name: "Kedoran Zvaigzde Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 380, equipExpGroup: "Equip", minAtk: 3841, maxAtk: 4079, attackType: "Arrow" }, +{ itemId: 639878, className: "MAC04_120_QUEST_REWARD", name: "Kedoran Zvaigzde Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 3920, maxAtk: 4000, mAtk: 3960, attackType: "Strike" }, +{ itemId: 639879, className: "TMAC04_109_QUEST_REWARD", name: "Kedoran Zvaigzde Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 380, equipExpGroup: "Equip", minAtk: 4212, maxAtk: 5148, mAtk: 4680, attackType: "Strike" }, +{ itemId: 639881, className: "SPR04_119_QUEST_REWARD", name: "Kedoran Zvaigzde Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3564, maxAtk: 4356, attackType: "Aries" }, +{ itemId: 639882, className: "TSP04_120_QUEST_REWARD", name: "Kedoran Zvaigzde Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 380, equipExpGroup: "Equip", minAtk: 3276, maxAtk: 6084, attackType: "Aries" }, +{ itemId: 639884, className: "TSF04_118_QUEST_REWARD", name: "Kedoran Zvaigzde Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 380, equipExpGroup: "Equip", mAtk: 4680, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 639886, className: "RAP04_113_QUEST_REWARD", name: "Kedoran Zvaigzde Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 56990, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 380, equipExpGroup: "Equip", minAtk: 3960, maxAtk: 3960, attackType: "Aries" }, +{ itemId: 639887, className: "CAN04_109_QUEST_REWARD", name: "Kedoran Zvaigzde Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 2340, maxAtk: 7020, attackType: "Cannon" }, +{ itemId: 639888, className: "MUS04_109_QUEST_REWARD", name: "Kedoran Zvaigzde Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 91184, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 380, equipExpGroup: "Equip", minAtk: 3042, maxAtk: 6318, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 639903, className: "SWD04_110_QUEST_REWARD", name: "Kedoran Primus Migantis Sword", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2741, maxAtk: 2910, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 639904, className: "TSW04_114_QUEST_REWARD", name: "Kedoran Primus Migantis Two-handed Sword", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2671, maxAtk: 4007, attackType: "Slash" }, +{ itemId: 639905, className: "STF04_115_QUEST_REWARD", name: "Kedoran Primus Migantis Rod", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 2826, attackType: "Strike" }, +{ itemId: 639906, className: "TBW04_114_QUEST_REWARD", name: "Kedoran Primus Migantis Bow", type: "Equip", group: "Weapon", weight: 270, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 2671, maxAtk: 4007, attackType: "Arrow" }, +{ itemId: 639907, className: "BOW04_114_QUEST_REWARD", name: "Kedoran Primus Migantis Crossbow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 270, equipExpGroup: "Equip", minAtk: 2741, maxAtk: 2910, attackType: "Arrow" }, +{ itemId: 639908, className: "MAC04_116_QUEST_REWARD", name: "Kedoran Primus Migantis Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 2797, maxAtk: 2854, mAtk: 2826, attackType: "Strike" }, +{ itemId: 639909, className: "TMAC04_105_QUEST_REWARD", name: "Kedoran Primus Migantis Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 270, equipExpGroup: "Equip", minAtk: 3005, maxAtk: 3673, mAtk: 3339, attackType: "Strike" }, +{ itemId: 639911, className: "SPR04_115_QUEST_REWARD", name: "Kedoran Primus Migantis Spear", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 2543, maxAtk: 3108, attackType: "Aries" }, +{ itemId: 639912, className: "TSP04_116_QUEST_REWARD", name: "Kedoran Primus Migantis Pike", type: "Equip", group: "Weapon", weight: 290, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 270, equipExpGroup: "Equip", minAtk: 2338, maxAtk: 4341, attackType: "Aries" }, +{ itemId: 639914, className: "TSF04_114_QUEST_REWARD", name: "Kedoran Primus Migantis Staff", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 270, equipExpGroup: "Equip", mAtk: 3339, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 639916, className: "RAP04_109_QUEST_REWARD", name: "Kedoran Primus Migantis Rapier", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 40000, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 270, equipExpGroup: "Equip", minAtk: 2826, maxAtk: 2826, attackType: "Aries" }, +{ itemId: 639917, className: "CAN04_105_QUEST_REWARD", name: "Kedoran Primus Migantis Cannon", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 1670, maxAtk: 5009, attackType: "Cannon" }, +{ itemId: 639918, className: "MUS04_105_QUEST_REWARD", name: "Kedoran Primus Migantis Musket", type: "Equip", group: "Weapon", weight: 155, maxStack: 1, price: 64000, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 270, equipExpGroup: "Equip", minAtk: 2171, maxAtk: 4508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 639955, className: "SWD04_121_QUEST_REWARD", name: "Kedoran Primus Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, attackType: "Slash", leftHandSkill: "Sword_Attack" }, +{ itemId: 639956, className: "TSW04_121_QUEST_REWARD", name: "Kedoran Primus Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, +{ itemId: 639957, className: "STF04_122_QUEST_REWARD", name: "Kedoran Primus Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4166, attackType: "Strike" }, +{ itemId: 639958, className: "TBW04_121_QUEST_REWARD", name: "Kedoran Primus Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, +{ itemId: 639959, className: "BOW04_121_QUEST_REWARD", name: "Kedoran Primus Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, attackType: "Arrow" }, +{ itemId: 639960, className: "MAC04_123_QUEST_REWARD", name: "Kedoran Primus Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4125, maxAtk: 4208, mAtk: 4166, attackType: "Strike" }, +{ itemId: 639961, className: "TMAC04_112_QUEST_REWARD", name: "Kedoran Primus Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike" }, +{ itemId: 639963, className: "SPR04_122_QUEST_REWARD", name: "Kedoran Primus Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3750, maxAtk: 4583, attackType: "Aries" }, +{ itemId: 639964, className: "TSP04_123_QUEST_REWARD", name: "Kedoran Primus Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, +{ itemId: 639966, className: "TSF04_121_QUEST_REWARD", name: "Kedoran Primus Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 639968, className: "RAP04_118_QUEST_REWARD", name: "Kedoran Primus Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, +{ itemId: 639969, className: "CAN04_113_QUEST_REWARD", name: "Kedoran Primus Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 2462, maxAtk: 7386, attackType: "Cannon" }, +{ itemId: 639970, className: "MUS04_113_QUEST_REWARD", name: "Kedoran Primus Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3200, maxAtk: 6647, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, { itemId: 6360101, className: "FOREVER_WEAPON_SWD01_138", name: "[4ever] Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 64, maxAtk: 68, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Growth_Item_Legend" } }, { itemId: 6360102, className: "FOREVER_WEAPON_TSW01_130", name: "[4ever] Two-handed Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 62, maxAtk: 94, attackType: "Slash", script: { strArg: "Growth_Item_Legend" } }, { itemId: 6360103, className: "FOREVER_WEAPON_STF01_138", name: "[4ever] Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 66, attackType: "Strike", script: { strArg: "Growth_Item_Legend" } }, @@ -26149,40 +26149,40 @@ { itemId: 6360113, className: "FOREVER_WEAPON_CAN100_102", name: "[4ever] Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 39, maxAtk: 117, attackType: "Cannon", script: { strArg: "Growth_Item_Legend" } }, { itemId: 6360115, className: "FOREVER_WEAPON_MUS100_102", name: "[4ever] Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 51, maxAtk: 105, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Growth_Item_Legend" } }, { itemId: 6360116, className: "FOREVER_WEAPON_TMAC02_104", name: "[4ever] Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 70, maxAtk: 86, mAtk: 78, attackType: "Strike", script: { strArg: "Growth_Item_Legend" } }, -{ itemId: 6370101, className: "PVP_BOW04_126_1", name: "Vaivora Crossbow - Cluster Bomb (20 minutes)", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, minAtk: 4341, maxAtk: 4610, attackType: "Arrow", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370102, className: "PVP_TSW04_126_2", name: "Vaivora Two-handed Sword - Wedge Blast (20 minutes)", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 4231, maxAtk: 6347, attackType: "Slash", slash: 1480, script: { strArg: "pvp_Mine" } }, -{ itemId: 6370103, className: "PVP_TSP04_128_2", name: "Vaivora Pike - Matchless (20 minutes)", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, minAtk: 3703, maxAtk: 6876, attackType: "Aries", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370104, className: "PVP_RAP04_124_1", name: "Vaivora Rapier - Banderilla (20 minutes)", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, minAtk: 4476, maxAtk: 4476, attackType: "Aries", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370106, className: "PVP_CAN04_118_1", name: "Vaivora Cannon - Centerfire (20 minutes)", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 2645, maxAtk: 7934, attackType: "Cannon", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370107, className: "PVP_TSF04_129_3", name: "Vaivora Staff - Biased Gravity (20 minutes)", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370108, className: "PVP_TMAC04_118_3", name: "Vaivora Two-handed Mace - Necrosis (20 minutes)", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370109, className: "PVP_STF04_127_3", name: "Vaivora Rod - Rune of Vigilance (20 minutes)", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 4476, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370111, className: "PVP_TSF04_129_4", name: "Vaivora Staff - Lewa Advent (20 minutes)", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370112, className: "PVP_TMAC04_118_4", name: "Vaivora Two-handed Mace - Tuning (20 minutes)", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370114, className: "PVP_MUS04_118_2", name: "Vaivora Musket - Lever Action (20 minutes)", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 3438, maxAtk: 7141, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370115, className: "PVP_SWD04_126_4", name: "Vaivora Sword - Boreas (20 minutes)", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 4341, maxAtk: 4610, attackType: "Slash", strike: 996, script: { strArg: "pvp_Mine" } }, -{ itemId: 6370118, className: "PVP_TSF04_129_5", name: "Vaivora Staff - Red Tiger Claw (20 minutes)", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370119, className: "PVP_STF04_127_4", name: "Vaivora Rod - Distortion (20 minutes)", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 4476, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370120, className: "PVP_TSF04_129_6", name: "Vaivora Staff - Annihilate (20 minutes)", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370121, className: "PVP_TMAC04_118_5", name: "Vaivora Two-handed Mace - Thunder Kick (20 minutes)", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", strike: 1480, script: { strArg: "pvp_Mine" } }, -{ itemId: 6370122, className: "PVP_TMAC04_118_6", name: "Vaivora Two-handed Mace - Sacred Lightning (20 minutes)", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370125, className: "PVP_TMAC04_118_7", name: "Vaivora Two-handed Mace - Conviction (20 minutes)", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", strike: 1480, script: { strArg: "pvp_Mine" } }, -{ itemId: 6370126, className: "PVP_TSF04_129_7", name: "Vaivora Staff - Immortality (20 minutes)", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370127, className: "PVP_TSF04_129_8", name: "Vaivora Rod - Demonische (20 minutes)", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, -{ itemId: 6370128, className: "PVP_MAC04_129_2", name: "Vaivora Mace - Protecting Grace (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 4431, maxAtk: 4520, mAtk: 4476, attackType: "Strike", script: { strArg: "pvp_Mine" } }, -{ itemId: 6530001, className: "EP11_SWD05_103", name: "[EP11] Savinose Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, -{ itemId: 6530002, className: "EP11_TSW05_103", name: "[EP11] Savinose Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, -{ itemId: 6530003, className: "EP11_STF05_103", name: "[EP11] Savinose Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 5333, attackType: "Strike" }, -{ itemId: 6530004, className: "EP11_TBW05_103", name: "[EP11] Savinose Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, -{ itemId: 6530005, className: "EP11_BOW05_103", name: "[EP11] Savinose Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, -{ itemId: 6530006, className: "EP11_MAC05_103", name: "[EP11] Savinose Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, -{ itemId: 6530007, className: "EP11_TMAC05_105", name: "[EP11] Savinose Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, -{ itemId: 6530008, className: "EP11_SPR05_103", name: "[EP11] Savinose Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, -{ itemId: 6530009, className: "EP11_TSP05_103", name: "[EP11] Savinose Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, -{ itemId: 6530010, className: "EP11_TSF05_103", name: "[EP11] Savinose Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 6530011, className: "EP11_RAP05_103", name: "[EP11] Savinose Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, -{ itemId: 6530012, className: "EP11_CAN05_105", name: "[EP11] Savinose Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, -{ itemId: 6530013, className: "EP11_MUS05_103", name: "[EP11] Savinose Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 6370101, className: "PVP_BOW04_126_1", name: "Vaivora Crossbow - Cluster Bomb (20 minutes)", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 4341, maxAtk: 4610, attackType: "Arrow", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370102, className: "PVP_TSW04_126_2", name: "Vaivora Two-handed Sword - Wedge Blast (20 minutes)", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 4231, maxAtk: 6347, attackType: "Slash", slash: 1480, script: { strArg: "pvp_Mine" } }, +{ itemId: 6370103, className: "PVP_TSP04_128_2", name: "Vaivora Pike - Matchless (20 minutes)", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 3703, maxAtk: 6876, attackType: "Aries", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370104, className: "PVP_RAP04_124_1", name: "Vaivora Rapier - Banderilla (20 minutes)", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 4476, maxAtk: 4476, attackType: "Aries", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370106, className: "PVP_CAN04_118_1", name: "Vaivora Cannon - Centerfire (20 minutes)", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 2645, maxAtk: 7934, attackType: "Cannon", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370107, className: "PVP_TSF04_129_3", name: "Vaivora Staff - Biased Gravity (20 minutes)", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370108, className: "PVP_TMAC04_118_3", name: "Vaivora Two-handed Mace - Necrosis (20 minutes)", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370109, className: "PVP_STF04_127_3", name: "Vaivora Rod - Rune of Vigilance (20 minutes)", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 4476, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370111, className: "PVP_TSF04_129_4", name: "Vaivora Staff - Lewa Advent (20 minutes)", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370112, className: "PVP_TMAC04_118_4", name: "Vaivora Two-handed Mace - Tuning (20 minutes)", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370114, className: "PVP_MUS04_118_2", name: "Vaivora Musket - Lever Action (20 minutes)", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 3438, maxAtk: 7141, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370115, className: "PVP_SWD04_126_4", name: "Vaivora Sword - Boreas (20 minutes)", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 4341, maxAtk: 4610, attackType: "Slash", strike: 996, script: { strArg: "pvp_Mine" } }, +{ itemId: 6370118, className: "PVP_TSF04_129_5", name: "Vaivora Staff - Red Tiger Claw (20 minutes)", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370119, className: "PVP_STF04_127_4", name: "Vaivora Rod - Distortion (20 minutes)", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 4476, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370120, className: "PVP_TSF04_129_6", name: "Vaivora Staff - Annihilate (20 minutes)", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370121, className: "PVP_TMAC04_118_5", name: "Vaivora Two-handed Mace - Thunder Kick (20 minutes)", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", strike: 1480, script: { strArg: "pvp_Mine" } }, +{ itemId: 6370122, className: "PVP_TMAC04_118_6", name: "Vaivora Two-handed Mace - Sacred Lightning (20 minutes)", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370125, className: "PVP_TMAC04_118_7", name: "Vaivora Two-handed Mace - Conviction (20 minutes)", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike", strike: 1480, script: { strArg: "pvp_Mine" } }, +{ itemId: 6370126, className: "PVP_TSF04_129_7", name: "Vaivora Staff - Immortality (20 minutes)", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370127, className: "PVP_TSF04_129_8", name: "Vaivora Rod - Demonische (20 minutes)", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "pvp_Mine" } }, +{ itemId: 6370128, className: "PVP_MAC04_129_2", name: "Vaivora Mace - Protecting Grace (20 minutes)", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 4520, mAtk: 4476, attackType: "Strike", script: { strArg: "pvp_Mine" } }, +{ itemId: 6530001, className: "EP11_SWD05_103", name: "[EP11] Savinose Legva Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, +{ itemId: 6530002, className: "EP11_TSW05_103", name: "[EP11] Savinose Legva Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, +{ itemId: 6530003, className: "EP11_STF05_103", name: "[EP11] Savinose Legva Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 5333, attackType: "Strike" }, +{ itemId: 6530004, className: "EP11_TBW05_103", name: "[EP11] Savinose Legva Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, +{ itemId: 6530005, className: "EP11_BOW05_103", name: "[EP11] Savinose Legva Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, +{ itemId: 6530006, className: "EP11_MAC05_103", name: "[EP11] Savinose Legva Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, +{ itemId: 6530007, className: "EP11_TMAC05_105", name: "[EP11] Savinose Legva Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, +{ itemId: 6530008, className: "EP11_SPR05_103", name: "[EP11] Savinose Legva Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, +{ itemId: 6530009, className: "EP11_TSP05_103", name: "[EP11] Savinose Legva Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, +{ itemId: 6530010, className: "EP11_TSF05_103", name: "[EP11] Savinose Legva Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 6530011, className: "EP11_RAP05_103", name: "[EP11] Savinose Legva Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, +{ itemId: 6530012, className: "EP11_CAN05_105", name: "[EP11] Savinose Legva Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, +{ itemId: 6530013, className: "EP11_MUS05_103", name: "[EP11] Savinose Legva Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, { itemId: 9999983, className: "NoWeapon_THSpear", name: "Empty_weapon", type: "Equip", group: "Weapon", weight: 1, maxStack: 1, price: 0, sellPrice: 0, attackType: "Aries" }, { itemId: 9999989, className: "NoWeapon_Spear", name: "Empty_weapon", type: "Equip", group: "Weapon", weight: 1, maxStack: 1, price: 0, sellPrice: 0 }, { itemId: 9999991, className: "NoWeapon_Sword", name: "Empty_weapon", type: "Equip", group: "Weapon", weight: 1, maxStack: 1, price: 0, sellPrice: 0, leftHandSkill: "Sword_Attack" }, @@ -26219,71 +26219,71 @@ { itemId: 10003495, className: "Event_Vaivora_box_4_TWN", name: "[Event] Vaivora Unique Weapon Selection Box (Blunt, Dagger)", type: "Consume", group: "Weapon", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { numArg1: 1 } }, { itemId: 10003496, className: "Event_Vaivora_box_5_TWN", name: "[Event] Vaivora Unique Weapon Selection Box (Bow, Cannon, Musket, Pistol, Crossbow)", type: "Consume", group: "Weapon", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { numArg1: 1 } }, { itemId: 10003497, className: "Event_Vaivora_box_random_1_TWN", name: "[Event] 5th Anniversary Vaivora Unique Weapon Random Box LV.1", type: "Consume", group: "Weapon", weight: 0, maxStack: 99999, price: 0, sellPrice: 0, equipType1: "None", minLevel: 1, script: { function: "SCR_USE_STRING_GIVE_RANDOM_ITEM_NUMBER_SPLIT", strArg: "SWD04_126/1;SWD04_126_1/1;SWD04_126_2/1;SWD04_126_3/1;TSW04_126/1;TSW04_126_1/1;TSW04_126_2/1;TSP04_128/1;TSP04_128_1/1;TSP04_128_2/1;SPR04_127/1;SPR04_127_1/1;RAP04_124_1/1;RAP04_124/1;TSF04_129/1;TSF04_129_1/1;TSF04_129_2/1;TSF04_129_3/1;STF04_127/1;STF04_127_1/1;STF04_127_2/1;STF04_127_3/1;TRK04_111/1;SHD04_122_1/1;SHD04_122/1;MAC04_129/1;MAC04_129_1/1;TMAC04_118_2/1;TMAC04_118_1/1;TMAC04_118_3/1;TMAC04_118/1;DAG04_123/1;DAG04_123_3/1;DAG04_123_1/1;DAG04_123_2/1;DAG04_123_4/1;TBW04_126/1;TBW04_126_1/1;CAN04_118/1;CAN04_118_1/1;MUS04_118/1;MUS04_118_1/1;PST04_122_2/1;PST04_122/1;PST04_122_1/1;BOW04_126_1/1;BOW04_126/1;TSF04_129_4/1;SWD04_126_4/1;TMAC04_118_4/1;DAG04_123_5/1;MUS04_118_2/1;DAG04_123_6/1;SHD04_122_2/1;TSF04_129_5/1;STF04_127_4/1;TSF04_129_6/1;TMAC04_118_5/1;TMAC04_118_6/1;PST04_122_3/1;" } }, -{ itemId: 10306000, className: "Event_CAN05_106_Roulette", name: "[Event] Skiaclipse Varna Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, -{ itemId: 10306001, className: "Event_MUS05_104_Roulette", name: "[Event] Skiaclipse Varna Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 10306002, className: "Event_SWD05_104_Roulette", name: "[Event] Skiaclipse Varna Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, -{ itemId: 10306003, className: "Event_TSF05_104_Roulette", name: "[Event] Skiaclipse Varna Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 10306006, className: "Event_TSP05_104_Roulette", name: "[Event] Skiaclipse Varna Pike ", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, -{ itemId: 10306007, className: "Event_SPR05_104_Roulette", name: "[Event] Skiaclipse Varna Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, -{ itemId: 10306008, className: "Event_MAC05_104_Roulette", name: "[Event] Skiaclipse Varna Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, -{ itemId: 10306009, className: "Event_BOW05_104_Roulette", name: "[Event] Skiaclipse Varna Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, -{ itemId: 10306010, className: "Event_TMAC05_106_Roulette", name: "[Event] Skiaclipse Varna Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, -{ itemId: 10306012, className: "Event_TBW05_104_Roulette", name: "[Event] Skiaclipse Varna Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, -{ itemId: 10306013, className: "Event_STF05_104_Roulette", name: "[Event] Skiaclipse Varna Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 5333, attackType: "Strike" }, -{ itemId: 10306014, className: "Event_TSW05_104_Roulette", name: "[Event] Skiaclipse Varna Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, -{ itemId: 10306015, className: "Event_RAP05_104_Roulette", name: "[Event] Skiaclipse Varna Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, -{ itemId: 10306041, className: "Event_EP12_FIELD_SWORD", name: "[Event] Savinose Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Slash" }, -{ itemId: 10306042, className: "Event_EP12_FIELD_THSWORD", name: "[Event] Savinose Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Slash" }, -{ itemId: 10306043, className: "Event_EP12_FIELD_STAFF", name: "[Event] Savinose Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, mAtk: 6564, attackType: "Strike" }, -{ itemId: 10306044, className: "Event_EP12_FIELD_THBOW", name: "[Event] Savinose Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Arrow" }, -{ itemId: 10306045, className: "Event_EP12_FIELD_BOW", name: "[Event] Savinose Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Arrow" }, -{ itemId: 10306046, className: "Event_EP12_FIELD_MACE", name: "[Event] Savinose Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike" }, -{ itemId: 10306047, className: "Event_EP12_FIELD_THMACE", name: "[Event] Savinose Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike" }, -{ itemId: 10306049, className: "Event_EP12_FIELD_SPEAR", name: "[Event] Savinose Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, minAtk: 5908, maxAtk: 7221, attackType: "Aries" }, -{ itemId: 10306050, className: "Event_EP12_FIELD_THSPEAR", name: "[Event] Savinose Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, minAtk: 5333, maxAtk: 9905, attackType: "Aries" }, -{ itemId: 10306052, className: "Event_EP12_FIELD_THSTAFF", name: "[Event] Savinose Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 10306054, className: "Event_EP12_FIELD_RAPIER", name: "[Event] Savinose Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, minAtk: 6564, maxAtk: 6564, attackType: "Aries" }, -{ itemId: 10306055, className: "Event_EP12_FIELD_CANNON", name: "[Event] Savinose Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, minAtk: 3810, maxAtk: 11429, attackType: "Cannon" }, -{ itemId: 10306056, className: "Event_EP12_FIELD_MUSKET", name: "[Event] Savinose Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 10306070, className: "Event2_EP12_FIELD_SWORD", name: "[Event] Savinose Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Slash" }, -{ itemId: 10306071, className: "Event2_EP12_FIELD_THSWORD", name: "[Event] Savinose Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Slash" }, -{ itemId: 10306072, className: "Event2_EP12_FIELD_STAFF", name: "[Event] Savinose Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, mAtk: 6564, attackType: "Strike" }, -{ itemId: 10306073, className: "Event2_EP12_FIELD_THBOW", name: "[Event] Savinose Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Arrow" }, -{ itemId: 10306074, className: "Event2_EP12_FIELD_BOW", name: "[Event] Savinose Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Arrow" }, -{ itemId: 10306075, className: "Event2_EP12_FIELD_MACE", name: "[Event] Savinose Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike" }, -{ itemId: 10306076, className: "Event2_EP12_FIELD_THMACE", name: "[Event] Savinose Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike" }, -{ itemId: 10306078, className: "Event2_EP12_FIELD_SPEAR", name: "[Event] Savinose Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, minAtk: 5908, maxAtk: 7221, attackType: "Aries" }, -{ itemId: 10306079, className: "Event2_EP12_FIELD_THSPEAR", name: "[Event] Savinose Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, minAtk: 5333, maxAtk: 9905, attackType: "Aries" }, -{ itemId: 10306081, className: "Event2_EP12_FIELD_THSTAFF", name: "[Event] Savinose Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 10306083, className: "Event2_EP12_FIELD_RAPIER", name: "[Event] Savinose Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, minAtk: 6564, maxAtk: 6564, attackType: "Aries" }, -{ itemId: 10306084, className: "Event2_EP12_FIELD_CANNON", name: "[Event] Savinose Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, minAtk: 3810, maxAtk: 11429, attackType: "Cannon" }, -{ itemId: 10306085, className: "Event2_EP12_FIELD_MUSKET", name: "[Event] Savinose Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 10306087, className: "Event_EP12_RAID_SWORD", name: "[Event] Glacia Legenda Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Slash", script: { strArg: "Legenda" } }, -{ itemId: 10306088, className: "Event_EP12_RAID_THSWORD", name: "[Event] Glacia Legenda Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Slash", script: { strArg: "Legenda" } }, -{ itemId: 10306089, className: "Event_EP12_RAID_STAFF", name: "[Event] Glacia Legenda Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, -{ itemId: 10306090, className: "Event_EP12_RAID_THBOW", name: "[Event] Glacia Legenda Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Arrow", script: { strArg: "Legenda" } }, -{ itemId: 10306091, className: "Event_EP12_RAID_BOW", name: "[Event] Glacia Legenda Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Arrow", script: { strArg: "Legenda" } }, -{ itemId: 10306092, className: "Event_EP12_RAID_MACE", name: "[Event] Glacia Legenda Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, -{ itemId: 10306093, className: "Event_EP12_RAID_THMACE", name: "[Event] Glacia Legenda Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike", script: { strArg: "Legenda" } }, -{ itemId: 10306095, className: "Event_EP12_RAID_SPEAR", name: "[Event] Glacia Legenda Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, minAtk: 5908, maxAtk: 7221, attackType: "Aries", script: { strArg: "Legenda" } }, -{ itemId: 10306096, className: "Event_EP12_RAID_THSPEAR", name: "[Event] Glacia Legenda Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, minAtk: 5333, maxAtk: 9905, attackType: "Aries", script: { strArg: "Legenda" } }, -{ itemId: 10306098, className: "Event_EP12_RAID_THSTAFF", name: "[Event] Glacia Legenda Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Legenda" } }, -{ itemId: 10306100, className: "Event_EP12_RAID_RAPIER", name: "[Event] Glacia Legenda Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, minAtk: 6564, maxAtk: 6564, attackType: "Aries", script: { strArg: "Legenda" } }, -{ itemId: 10306101, className: "Event_EP12_RAID_CANNON", name: "[Event] Glacia Legenda Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, minAtk: 3810, maxAtk: 11429, attackType: "Cannon", script: { strArg: "Legenda" } }, -{ itemId: 10306102, className: "Event_EP12_RAID_MUSKET", name: "[Event] Glacia Legenda Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Legenda" } }, -{ itemId: 10306116, className: "Event_EP12_RAID_SWORD_2", name: "[Event] Glacia Legenda Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Slash", script: { strArg: "Legenda" } }, -{ itemId: 10306117, className: "Event_EP12_RAID_THSWORD_2", name: "[Event] Glacia Legenda Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Slash", script: { strArg: "Legenda" } }, -{ itemId: 10306118, className: "Event_EP12_RAID_STAFF_2", name: "[Event] Glacia Legenda Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, -{ itemId: 10306119, className: "Event_EP12_RAID_THBOW_2", name: "[Event] Glacia Legenda Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Arrow", script: { strArg: "Legenda" } }, -{ itemId: 10306120, className: "Event_EP12_RAID_BOW_2", name: "[Event] Glacia Legenda Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Arrow", script: { strArg: "Legenda" } }, -{ itemId: 10306121, className: "Event_EP12_RAID_MACE_2", name: "[Event] Glacia Legenda Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, -{ itemId: 10306122, className: "Event_EP12_RAID_THMACE_2", name: "[Event] Glacia Legenda Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike", script: { strArg: "Legenda" } }, -{ itemId: 10306124, className: "Event_EP12_RAID_SPEAR_2", name: "[Event] Glacia Legenda Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, minAtk: 5908, maxAtk: 7221, attackType: "Aries", script: { strArg: "Legenda" } }, -{ itemId: 10306125, className: "Event_EP12_RAID_THSPEAR_2", name: "[Event] Glacia Legenda Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, minAtk: 5333, maxAtk: 9905, attackType: "Aries", script: { strArg: "Legenda" } }, -{ itemId: 10306127, className: "Event_EP12_RAID_THSTAFF_2", name: "[Event] Glacia Legenda Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Legenda" } }, -{ itemId: 10306129, className: "Event_EP12_RAID_RAPIER_2", name: "[Event] Glacia Legenda Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, minAtk: 6564, maxAtk: 6564, attackType: "Aries", script: { strArg: "Legenda" } }, -{ itemId: 10306130, className: "Event_EP12_RAID_CANNON_2", name: "[Event] Glacia Legenda Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, minAtk: 3810, maxAtk: 11429, attackType: "Cannon", script: { strArg: "Legenda" } }, -{ itemId: 10306131, className: "Event_EP12_RAID_MUSKET_2", name: "[Event] Glacia Legenda Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Legenda" } }, +{ itemId: 10306000, className: "Event_CAN05_106_Roulette", name: "[Event] Skiaclipse Varna Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3151, maxAtk: 9454, attackType: "Cannon" }, +{ itemId: 10306001, className: "Event_MUS05_104_Roulette", name: "[Event] Skiaclipse Varna Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 4097, maxAtk: 8508, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 10306002, className: "Event_SWD05_104_Roulette", name: "[Event] Skiaclipse Varna Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Slash" }, +{ itemId: 10306003, className: "Event_TSF05_104_Roulette", name: "[Event] Skiaclipse Varna Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 6302, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 10306006, className: "Event_TSP05_104_Roulette", name: "[Event] Skiaclipse Varna Pike ", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4412, maxAtk: 8193, attackType: "Aries" }, +{ itemId: 10306007, className: "Event_SPR05_104_Roulette", name: "[Event] Skiaclipse Varna Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 4800, maxAtk: 5866, attackType: "Aries" }, +{ itemId: 10306008, className: "Event_MAC05_104_Roulette", name: "[Event] Skiaclipse Varna Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5279, maxAtk: 5386, mAtk: 5333, attackType: "Strike" }, +{ itemId: 10306009, className: "Event_BOW05_104_Roulette", name: "[Event] Skiaclipse Varna Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5173, maxAtk: 5493, attackType: "Arrow" }, +{ itemId: 10306010, className: "Event_TMAC05_106_Roulette", name: "[Event] Skiaclipse Varna Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 5672, maxAtk: 6933, mAtk: 6302, attackType: "Strike" }, +{ itemId: 10306012, className: "Event_TBW05_104_Roulette", name: "[Event] Skiaclipse Varna Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Arrow" }, +{ itemId: 10306013, className: "Event_STF05_104_Roulette", name: "[Event] Skiaclipse Varna Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 5333, attackType: "Strike" }, +{ itemId: 10306014, className: "Event_TSW05_104_Roulette", name: "[Event] Skiaclipse Varna Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5042, maxAtk: 7563, attackType: "Slash" }, +{ itemId: 10306015, className: "Event_RAP05_104_Roulette", name: "[Event] Skiaclipse Varna Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 5333, attackType: "Aries" }, +{ itemId: 10306041, className: "Event_EP12_FIELD_SWORD", name: "[Event] Savinose Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Slash" }, +{ itemId: 10306042, className: "Event_EP12_FIELD_THSWORD", name: "[Event] Savinose Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Slash" }, +{ itemId: 10306043, className: "Event_EP12_FIELD_STAFF", name: "[Event] Savinose Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 6564, attackType: "Strike" }, +{ itemId: 10306044, className: "Event_EP12_FIELD_THBOW", name: "[Event] Savinose Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Arrow" }, +{ itemId: 10306045, className: "Event_EP12_FIELD_BOW", name: "[Event] Savinose Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Arrow" }, +{ itemId: 10306046, className: "Event_EP12_FIELD_MACE", name: "[Event] Savinose Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike" }, +{ itemId: 10306047, className: "Event_EP12_FIELD_THMACE", name: "[Event] Savinose Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike" }, +{ itemId: 10306049, className: "Event_EP12_FIELD_SPEAR", name: "[Event] Savinose Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5908, maxAtk: 7221, attackType: "Aries" }, +{ itemId: 10306050, className: "Event_EP12_FIELD_THSPEAR", name: "[Event] Savinose Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 9905, attackType: "Aries" }, +{ itemId: 10306052, className: "Event_EP12_FIELD_THSTAFF", name: "[Event] Savinose Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 10306054, className: "Event_EP12_FIELD_RAPIER", name: "[Event] Savinose Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6564, maxAtk: 6564, attackType: "Aries" }, +{ itemId: 10306055, className: "Event_EP12_FIELD_CANNON", name: "[Event] Savinose Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 3810, maxAtk: 11429, attackType: "Cannon" }, +{ itemId: 10306056, className: "Event_EP12_FIELD_MUSKET", name: "[Event] Savinose Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 10306070, className: "Event2_EP12_FIELD_SWORD", name: "[Event] Savinose Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Slash" }, +{ itemId: 10306071, className: "Event2_EP12_FIELD_THSWORD", name: "[Event] Savinose Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Slash" }, +{ itemId: 10306072, className: "Event2_EP12_FIELD_STAFF", name: "[Event] Savinose Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 6564, attackType: "Strike" }, +{ itemId: 10306073, className: "Event2_EP12_FIELD_THBOW", name: "[Event] Savinose Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Arrow" }, +{ itemId: 10306074, className: "Event2_EP12_FIELD_BOW", name: "[Event] Savinose Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Arrow" }, +{ itemId: 10306075, className: "Event2_EP12_FIELD_MACE", name: "[Event] Savinose Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike" }, +{ itemId: 10306076, className: "Event2_EP12_FIELD_THMACE", name: "[Event] Savinose Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike" }, +{ itemId: 10306078, className: "Event2_EP12_FIELD_SPEAR", name: "[Event] Savinose Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5908, maxAtk: 7221, attackType: "Aries" }, +{ itemId: 10306079, className: "Event2_EP12_FIELD_THSPEAR", name: "[Event] Savinose Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 9905, attackType: "Aries" }, +{ itemId: 10306081, className: "Event2_EP12_FIELD_THSTAFF", name: "[Event] Savinose Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 10306083, className: "Event2_EP12_FIELD_RAPIER", name: "[Event] Savinose Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6564, maxAtk: 6564, attackType: "Aries" }, +{ itemId: 10306084, className: "Event2_EP12_FIELD_CANNON", name: "[Event] Savinose Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 3810, maxAtk: 11429, attackType: "Cannon" }, +{ itemId: 10306085, className: "Event2_EP12_FIELD_MUSKET", name: "[Event] Savinose Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 10306087, className: "Event_EP12_RAID_SWORD", name: "[Event] Glacia Legenda Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Slash", script: { strArg: "Legenda" } }, +{ itemId: 10306088, className: "Event_EP12_RAID_THSWORD", name: "[Event] Glacia Legenda Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Slash", script: { strArg: "Legenda" } }, +{ itemId: 10306089, className: "Event_EP12_RAID_STAFF", name: "[Event] Glacia Legenda Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, +{ itemId: 10306090, className: "Event_EP12_RAID_THBOW", name: "[Event] Glacia Legenda Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Arrow", script: { strArg: "Legenda" } }, +{ itemId: 10306091, className: "Event_EP12_RAID_BOW", name: "[Event] Glacia Legenda Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Arrow", script: { strArg: "Legenda" } }, +{ itemId: 10306092, className: "Event_EP12_RAID_MACE", name: "[Event] Glacia Legenda Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, +{ itemId: 10306093, className: "Event_EP12_RAID_THMACE", name: "[Event] Glacia Legenda Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike", script: { strArg: "Legenda" } }, +{ itemId: 10306095, className: "Event_EP12_RAID_SPEAR", name: "[Event] Glacia Legenda Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5908, maxAtk: 7221, attackType: "Aries", script: { strArg: "Legenda" } }, +{ itemId: 10306096, className: "Event_EP12_RAID_THSPEAR", name: "[Event] Glacia Legenda Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 9905, attackType: "Aries", script: { strArg: "Legenda" } }, +{ itemId: 10306098, className: "Event_EP12_RAID_THSTAFF", name: "[Event] Glacia Legenda Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Legenda" } }, +{ itemId: 10306100, className: "Event_EP12_RAID_RAPIER", name: "[Event] Glacia Legenda Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6564, maxAtk: 6564, attackType: "Aries", script: { strArg: "Legenda" } }, +{ itemId: 10306101, className: "Event_EP12_RAID_CANNON", name: "[Event] Glacia Legenda Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 3810, maxAtk: 11429, attackType: "Cannon", script: { strArg: "Legenda" } }, +{ itemId: 10306102, className: "Event_EP12_RAID_MUSKET", name: "[Event] Glacia Legenda Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Legenda" } }, +{ itemId: 10306116, className: "Event_EP12_RAID_SWORD_2", name: "[Event] Glacia Legenda Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Slash", script: { strArg: "Legenda" } }, +{ itemId: 10306117, className: "Event_EP12_RAID_THSWORD_2", name: "[Event] Glacia Legenda Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Slash", script: { strArg: "Legenda" } }, +{ itemId: 10306118, className: "Event_EP12_RAID_STAFF_2", name: "[Event] Glacia Legenda Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, +{ itemId: 10306119, className: "Event_EP12_RAID_THBOW_2", name: "[Event] Glacia Legenda Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Arrow", script: { strArg: "Legenda" } }, +{ itemId: 10306120, className: "Event_EP12_RAID_BOW_2", name: "[Event] Glacia Legenda Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Arrow", script: { strArg: "Legenda" } }, +{ itemId: 10306121, className: "Event_EP12_RAID_MACE_2", name: "[Event] Glacia Legenda Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, +{ itemId: 10306122, className: "Event_EP12_RAID_THMACE_2", name: "[Event] Glacia Legenda Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike", script: { strArg: "Legenda" } }, +{ itemId: 10306124, className: "Event_EP12_RAID_SPEAR_2", name: "[Event] Glacia Legenda Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5908, maxAtk: 7221, attackType: "Aries", script: { strArg: "Legenda" } }, +{ itemId: 10306125, className: "Event_EP12_RAID_THSPEAR_2", name: "[Event] Glacia Legenda Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 9905, attackType: "Aries", script: { strArg: "Legenda" } }, +{ itemId: 10306127, className: "Event_EP12_RAID_THSTAFF_2", name: "[Event] Glacia Legenda Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Legenda" } }, +{ itemId: 10306129, className: "Event_EP12_RAID_RAPIER_2", name: "[Event] Glacia Legenda Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6564, maxAtk: 6564, attackType: "Aries", script: { strArg: "Legenda" } }, +{ itemId: 10306130, className: "Event_EP12_RAID_CANNON_2", name: "[Event] Glacia Legenda Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 3810, maxAtk: 11429, attackType: "Cannon", script: { strArg: "Legenda" } }, +{ itemId: 10306131, className: "Event_EP12_RAID_MUSKET_2", name: "[Event] Glacia Legenda Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Legenda" } }, { itemId: 10306133, className: "Event_Growth_Sword", name: "[Growth] Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 64, maxAtk: 68, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, { itemId: 10306134, className: "Event_Growth_THSword", name: "[Growth] Two-handed Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 62, maxAtk: 94, attackType: "Slash", script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, { itemId: 10306135, className: "Event_Growth_Rod", name: "[Growth] Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 66, attackType: "Strike", script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, @@ -26296,126 +26296,126 @@ { itemId: 10306142, className: "Event_Growth_Rapier", name: "[Growth] Rapier", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, minAtk: 66, maxAtk: 66, attackType: "Aries", script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, { itemId: 10306157, className: "Event_Growth_Cannon", name: "[Growth] Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 39, maxAtk: 117, attackType: "Cannon", script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, { itemId: 10306159, className: "Event_Growth_Musket", name: "[Growth] Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 51, maxAtk: 105, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, -{ itemId: 10306160, className: "Event_Growth_THMace", name: "[Growth] Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 70, maxAtk: 86, mAtk: 78, attackType: "Strike", script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, -{ itemId: 10310001, className: "SWD04_123_Ev", name: "[Event] Moringponia Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 4041, maxAtk: 4291, attackType: "Slash" }, -{ itemId: 10310002, className: "TSW04_123_Ev", name: "[Event] Moringponia Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, -{ itemId: 10310003, className: "STF04_124_Ev", name: "[Event] Moringponia Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 4166, attackType: "Strike" }, -{ itemId: 10310004, className: "TBW04_123_Ev", name: "[Event] Moringponia Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, -{ itemId: 10310005, className: "BOW04_123_Ev", name: "[Event] Moringponia Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 4041, maxAtk: 4291, addMaxAtk: 339, attackType: "Arrow" }, -{ itemId: 10310006, className: "MAC04_126_Ev", name: "[Event] Moringponia Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 4125, maxAtk: 4208, mAtk: 4166, addDef: 410, attackType: "Strike" }, -{ itemId: 10310007, className: "TMAC04_115_Ev", name: "[Event] Moringponia Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike", strike: 291 }, -{ itemId: 10310008, className: "SPR04_124_Ev", name: "[Event] Moringponia Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 3750, maxAtk: 4583, attackType: "Aries" }, -{ itemId: 10310009, className: "TSP04_125_Ev", name: "[Event] Moringponia Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, -{ itemId: 10310010, className: "TSF04_125_Ev", name: "[Event] Moringponia Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 10310011, className: "TSF04_126_Ev", name: "[Event] Moringponia Caster", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 10310012, className: "RAP04_121_Ev", name: "[Event] Moringponia Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, -{ itemId: 10310013, className: "CAN04_115_Ev", name: "[Event] Moringponia Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 2462, maxAtk: 7386, attackType: "Cannon" }, -{ itemId: 10310014, className: "MUS04_115_Ev", name: "[Event] Moringponia Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 3200, maxAtk: 6647, pAtk: 350, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 10310019, className: "SWD04_124_Ev", name: "[Event] Misrus Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 4041, maxAtk: 4291, addMDef: 420, attackType: "Slash" }, -{ itemId: 10310020, className: "TSW04_124_Ev", name: "[Event] Misrus Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, -{ itemId: 10310021, className: "STF04_125_Ev", name: "[Event] Misrus Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 4166, attackType: "Strike" }, -{ itemId: 10310022, className: "TBW04_124_Ev", name: "[Event] Misrus Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, -{ itemId: 10310023, className: "BOW04_124_Ev", name: "[Event] Misrus Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 4041, maxAtk: 4291, attackType: "Arrow" }, -{ itemId: 10310024, className: "MAC04_127_Ev", name: "[Event] Misrus Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 4125, maxAtk: 4208, mAtk: 4166, addMDef: 398, attackType: "Strike" }, -{ itemId: 10310025, className: "TMAC04_116_Ev", name: "[Event] Misrus Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike" }, -{ itemId: 10310026, className: "SPR04_125_Ev", name: "[Event] Misrus Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 3750, maxAtk: 4583, attackType: "Aries", aries: 392 }, -{ itemId: 10310027, className: "TSP04_126_Ev", name: "[Event] Misrus Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, -{ itemId: 10310028, className: "TSF04_127_Ev", name: "[Event] Misrus Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4924, addMAtk: 407, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 10310029, className: "RAP04_122_Ev", name: "[Event] Misrus Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, -{ itemId: 10310030, className: "CAN04_116_Ev", name: "[Event] Misrus Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 2462, maxAtk: 7386, addMaxAtk: 722, attackType: "Cannon" }, -{ itemId: 10310031, className: "MUS04_116_Ev", name: "[Event] Misrus Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 3200, maxAtk: 6647, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 10310037, className: "SWD_Galimybe", name: "Galimive Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 430, minAtk: 4341, maxAtk: 4610, attackType: "Slash" }, -{ itemId: 10310038, className: "TSW_Galimybe", name: "Galimive Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 430, minAtk: 4231, maxAtk: 6347, attackType: "Slash" }, -{ itemId: 10310039, className: "STF_Galimybe", name: "Galimive Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 430, mAtk: 4476, attackType: "Strike" }, -{ itemId: 10310040, className: "TBW_Galimybe", name: "Galimive Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 430, minAtk: 4231, maxAtk: 6347, attackType: "Arrow" }, -{ itemId: 10310041, className: "BOW_Galimybe", name: "Galimive Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 430, minAtk: 4341, maxAtk: 4610, attackType: "Arrow" }, -{ itemId: 10310042, className: "MAC_Galimybe", name: "Galimive Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 430, minAtk: 4431, maxAtk: 4520, mAtk: 4476, attackType: "Strike" }, -{ itemId: 10310043, className: "TMAC_Galimybe", name: "Galimive Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 430, minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike" }, -{ itemId: 10310044, className: "SPR_Galimybe", name: "Galimive Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 430, minAtk: 4028, maxAtk: 4923, attackType: "Aries" }, -{ itemId: 10310045, className: "TSP_Galimybe", name: "Galimive Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 430, minAtk: 3703, maxAtk: 6876, attackType: "Aries" }, -{ itemId: 10310046, className: "TSF_Galimybe", name: "Galimive Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 430, mAtk: 5289, addMAtk: 407, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 10310047, className: "RAP_Galimybe", name: "Galimive Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 430, minAtk: 4476, maxAtk: 4476, attackType: "Aries" }, -{ itemId: 10310048, className: "CAN_Galimybe", name: "Galimive Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 430, minAtk: 2645, maxAtk: 7934, attackType: "Cannon" }, -{ itemId: 10310049, className: "MUS_Galimybe", name: "Galimive Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 430, minAtk: 3438, maxAtk: 7141, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 10310054, className: "SWD04_123_Ev_2", name: "[Event] Moringponia Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 4041, maxAtk: 4291, attackType: "Slash" }, -{ itemId: 10310055, className: "TSW04_123_Ev_2", name: "[Event] Moringponia Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, -{ itemId: 10310056, className: "STF04_124_Ev_2", name: "[Event] Moringponia Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 4166, attackType: "Strike" }, -{ itemId: 10310057, className: "TBW04_123_Ev_2", name: "[Event] Moringponia Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, -{ itemId: 10310058, className: "BOW04_123_Ev_2", name: "[Event] Moringponia Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 4041, maxAtk: 4291, addMaxAtk: 339, attackType: "Arrow" }, -{ itemId: 10310059, className: "MAC04_126_Ev_2", name: "[Event] Moringponia Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 4125, maxAtk: 4208, mAtk: 4166, addDef: 410, attackType: "Strike" }, -{ itemId: 10310060, className: "TMAC04_115_Ev_2", name: "[Event] Moringponia Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike", strike: 291 }, -{ itemId: 10310061, className: "SPR04_124_Ev_2", name: "[Event] Moringponia Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 3750, maxAtk: 4583, attackType: "Aries" }, -{ itemId: 10310062, className: "TSP04_125_Ev_2", name: "[Event] Moringponia Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, -{ itemId: 10310063, className: "TSF04_125_Ev_2", name: "[Event] Moringponia Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 10310064, className: "TSF04_126_Ev_2", name: "[Event] Moringponia Caster", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 10310065, className: "RAP04_121_Ev_2", name: "[Event] Moringponia Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, -{ itemId: 10310066, className: "CAN04_115_Ev_2", name: "[Event] Moringponia Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 2462, maxAtk: 7386, attackType: "Cannon" }, -{ itemId: 10310067, className: "MUS04_115_Ev_2", name: "[Event] Moringponia Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 3200, maxAtk: 6647, pAtk: 350, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 10310072, className: "SWD04_124_Ev_2", name: "[Event] Misrus Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, minAtk: 4041, maxAtk: 4291, addMDef: 420, attackType: "Slash" }, -{ itemId: 10310073, className: "TSW04_124_Ev_2", name: "[Event] Misrus Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, -{ itemId: 10310074, className: "STF04_125_Ev_2", name: "[Event] Misrus Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, mAtk: 4166, attackType: "Strike" }, -{ itemId: 10310075, className: "TBW04_124_Ev_2", name: "[Event] Misrus Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, -{ itemId: 10310076, className: "BOW04_124_Ev_2", name: "[Event] Misrus Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, minAtk: 4041, maxAtk: 4291, attackType: "Arrow" }, -{ itemId: 10310077, className: "MAC04_127_Ev_2", name: "[Event] Misrus Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, minAtk: 4125, maxAtk: 4208, mAtk: 4166, addMDef: 398, attackType: "Strike" }, -{ itemId: 10310078, className: "TMAC04_116_Ev_2", name: "[Event] Misrus Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike" }, -{ itemId: 10310079, className: "SPR04_125_Ev_2", name: "[Event] Misrus Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, minAtk: 3750, maxAtk: 4583, attackType: "Aries", aries: 392 }, -{ itemId: 10310080, className: "TSP04_126_Ev_2", name: "[Event] Misrus Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, -{ itemId: 10310081, className: "TSF04_127_Ev_2", name: "[Event] Misrus Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, mAtk: 4924, addMAtk: 407, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 10310082, className: "RAP04_122_Ev_2", name: "[Event] Misrus Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, -{ itemId: 10310083, className: "CAN04_116_Ev_2", name: "[Event] Misrus Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, minAtk: 2462, maxAtk: 7386, addMaxAtk: 722, attackType: "Cannon" }, -{ itemId: 10310084, className: "MUS04_116_Ev_2", name: "[Event] Misrus Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, minAtk: 3200, maxAtk: 6647, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 10800013, className: "Episode12_EP12_FIELD_SWORD", name: "[EP12] Savinose Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Slash" }, -{ itemId: 10800014, className: "Episode12_EP12_FIELD_THSWORD", name: "[EP12] Savinose Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Slash" }, -{ itemId: 10800015, className: "Episode12_EP12_FIELD_STAFF", name: "[EP12] Savinose Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, mAtk: 6564, attackType: "Strike" }, -{ itemId: 10800016, className: "Episode12_EP12_FIELD_THBOW", name: "[EP12] Savinose Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Arrow" }, -{ itemId: 10800017, className: "Episode12_EP12_FIELD_BOW", name: "[EP12] Savinose Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Arrow" }, -{ itemId: 10800018, className: "Episode12_EP12_FIELD_MACE", name: "[EP12] Savinose Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike" }, -{ itemId: 10800019, className: "Episode12_EP12_FIELD_THMACE", name: "[EP12] Savinose Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike" }, -{ itemId: 10800021, className: "Episode12_EP12_FIELD_SPEAR", name: "[EP12] Savinose Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, minAtk: 5908, maxAtk: 7221, attackType: "Aries" }, -{ itemId: 10800022, className: "Episode12_EP12_FIELD_THSPEAR", name: "[EP12] Savinose Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, minAtk: 5333, maxAtk: 9905, attackType: "Aries" }, -{ itemId: 10800024, className: "Episode12_EP12_FIELD_THSTAFF", name: "[EP12] Savinose Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 10800026, className: "Episode12_EP12_FIELD_RAPIER", name: "[EP12] Savinose Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, minAtk: 6564, maxAtk: 6564, attackType: "Aries" }, -{ itemId: 10800027, className: "Episode12_EP12_FIELD_CANNON", name: "[EP12] Savinose Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, minAtk: 3810, maxAtk: 11429, attackType: "Cannon" }, -{ itemId: 10800028, className: "Episode12_EP12_FIELD_MUSKET", name: "[EP12] Savinose Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 10800042, className: "2021_NewYear_EP12_FIELD_SWORD", name: "[2021] Savinose Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Slash" }, -{ itemId: 10800043, className: "2021_NewYear_EP12_FIELD_THSWORD", name: "[2021] Savinose Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Slash" }, -{ itemId: 10800044, className: "2021_NewYear_EP12_FIELD_STAFF", name: "[2021] Savinose Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, mAtk: 6564, attackType: "Strike" }, -{ itemId: 10800045, className: "2021_NewYear_EP12_FIELD_THBOW", name: "[2021] Savinose Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Arrow" }, -{ itemId: 10800046, className: "2021_NewYear_EP12_FIELD_BOW", name: "[2021] Savinose Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Arrow" }, -{ itemId: 10800047, className: "2021_NewYear_EP12_FIELD_MACE", name: "[2021] Savinose Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike" }, -{ itemId: 10800048, className: "2021_NewYear_EP12_FIELD_THMACE", name: "[2021] Savinose Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike" }, -{ itemId: 10800050, className: "2021_NewYear_EP12_FIELD_SPEAR", name: "[2021] Savinose Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, minAtk: 5908, maxAtk: 7221, attackType: "Aries" }, -{ itemId: 10800051, className: "2021_NewYear_EP12_FIELD_THSPEAR", name: "[2021] Savinose Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, minAtk: 5333, maxAtk: 9905, attackType: "Aries" }, -{ itemId: 10800053, className: "2021_NewYear_EP12_FIELD_THSTAFF", name: "[2021] Savinose Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 10800055, className: "2021_NewYear_EP12_FIELD_RAPIER", name: "[2021] Savinose Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, minAtk: 6564, maxAtk: 6564, attackType: "Aries" }, -{ itemId: 10800056, className: "2021_NewYear_EP12_FIELD_CANNON", name: "[2021] Savinose Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, minAtk: 3810, maxAtk: 11429, attackType: "Cannon" }, -{ itemId: 10800057, className: "2021_NewYear_EP12_FIELD_MUSKET", name: "[2021] Savinose Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 10999001, className: "TOSHero_SWORD", name: "Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 970, maxAtk: 1030, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Slash", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999002, className: "TOSHero_THSWORD", name: "Two-handed Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 800, maxAtk: 1200, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Slash", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999003, className: "TOSHero_STAFF", name: "Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, minAtk: 1000, maxAtk: 1000, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Strike", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999004, className: "TOSHero_THBOW", name: "Bow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 800, maxAtk: 1200, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Arrow", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999005, className: "TOSHero_BOW", name: "Crossbow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, minAtk: 970, maxAtk: 1030, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Arrow", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999006, className: "TOSHero_MACE", name: "Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 990, maxAtk: 1010, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Strike", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999007, className: "TOSHero_THMACE", name: "Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 900, maxAtk: 1100, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Strike", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999009, className: "TOSHero_SPEAR", name: "Spear", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, minAtk: 900, maxAtk: 1100, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Aries", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999010, className: "TOSHero_THSPEAR", name: "Pike", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, minAtk: 700, maxAtk: 1300, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Aries", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999012, className: "TOSHero_THSTAFF", name: "Staff", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, minAtk: 1000, maxAtk: 1000, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999014, className: "TOSHero_RAPIER", name: "Rapier", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, minAtk: 1000, maxAtk: 1000, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Aries", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999015, className: "TOSHero_CANNON", name: "Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 500, maxAtk: 1500, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Cannon", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 10999016, className: "TOSHero_MUSKET", name: "Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 650, maxAtk: 1350, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "TOSHeroEquip" } }, -{ itemId: 11002010, className: "EP12_SWD04_001", name: "Glacia Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 430, minAtk: 4341, maxAtk: 4610, attackType: "Slash" }, -{ itemId: 11002011, className: "EP12_TSW04_001", name: "Glacia Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 430, minAtk: 4231, maxAtk: 6347, attackType: "Slash" }, -{ itemId: 11002012, className: "EP12_SPR04_001", name: "Glacia Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 430, minAtk: 4028, maxAtk: 4923, attackType: "Aries" }, -{ itemId: 11002013, className: "EP12_TSP04_001", name: "Glacia Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 430, minAtk: 3703, maxAtk: 6876, attackType: "Aries" }, -{ itemId: 11002014, className: "EP12_MAC04_001", name: "Glacia Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 430, minAtk: 4431, maxAtk: 4520, mAtk: 4476, addDef: 795, addMDef: 795, attackType: "Strike" }, -{ itemId: 11002015, className: "EP12_TMAC04_001", name: "Glacia Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 430, minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike" }, -{ itemId: 11002016, className: "EP12_TBW04_001", name: "Glacia Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 430, minAtk: 4231, maxAtk: 6347, attackType: "Arrow" }, -{ itemId: 11002017, className: "EP12_CAN04_001", name: "Glacia Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 430, minAtk: 2645, maxAtk: 7934, attackType: "Cannon" }, -{ itemId: 11002019, className: "EP12_RAP04_001", name: "Glacia Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 430, minAtk: 4476, maxAtk: 4476, attackType: "Aries" }, -{ itemId: 11002021, className: "EP12_MUS04_001", name: "Glacia Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 430, minAtk: 3438, maxAtk: 7141, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 11002022, className: "EP12_STF04_001", name: "Glacia Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 430, mAtk: 4476, attackType: "Strike" }, -{ itemId: 11002023, className: "EP12_TSF04_001", name: "Glacia Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 430, mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 11002025, className: "EP12_BOW04_001", name: "Glacia Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 430, minAtk: 4341, maxAtk: 4610, attackType: "Arrow" }, +{ itemId: 10306160, className: "Event_Growth_THMace", name: "[Growth] Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 70, maxAtk: 86, mAtk: 78, attackType: "Strike", script: { strArg: "Growth_Item_Legend", numArg1: 440 } }, +{ itemId: 10310001, className: "SWD04_123_Ev", name: "[Event] Moringponia Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, attackType: "Slash" }, +{ itemId: 10310002, className: "TSW04_123_Ev", name: "[Event] Moringponia Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, +{ itemId: 10310003, className: "STF04_124_Ev", name: "[Event] Moringponia Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4166, attackType: "Strike" }, +{ itemId: 10310004, className: "TBW04_123_Ev", name: "[Event] Moringponia Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, +{ itemId: 10310005, className: "BOW04_123_Ev", name: "[Event] Moringponia Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, addMaxAtk: 339, attackType: "Arrow" }, +{ itemId: 10310006, className: "MAC04_126_Ev", name: "[Event] Moringponia Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4125, maxAtk: 4208, mAtk: 4166, addDef: 410, attackType: "Strike" }, +{ itemId: 10310007, className: "TMAC04_115_Ev", name: "[Event] Moringponia Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike", strike: 291 }, +{ itemId: 10310008, className: "SPR04_124_Ev", name: "[Event] Moringponia Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3750, maxAtk: 4583, attackType: "Aries" }, +{ itemId: 10310009, className: "TSP04_125_Ev", name: "[Event] Moringponia Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, +{ itemId: 10310010, className: "TSF04_125_Ev", name: "[Event] Moringponia Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 10310011, className: "TSF04_126_Ev", name: "[Event] Moringponia Caster", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 10310012, className: "RAP04_121_Ev", name: "[Event] Moringponia Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, +{ itemId: 10310013, className: "CAN04_115_Ev", name: "[Event] Moringponia Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 2462, maxAtk: 7386, attackType: "Cannon" }, +{ itemId: 10310014, className: "MUS04_115_Ev", name: "[Event] Moringponia Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3200, maxAtk: 6647, pAtk: 350, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 10310019, className: "SWD04_124_Ev", name: "[Event] Misrus Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, addMDef: 420, attackType: "Slash" }, +{ itemId: 10310020, className: "TSW04_124_Ev", name: "[Event] Misrus Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, +{ itemId: 10310021, className: "STF04_125_Ev", name: "[Event] Misrus Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4166, attackType: "Strike" }, +{ itemId: 10310022, className: "TBW04_124_Ev", name: "[Event] Misrus Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, +{ itemId: 10310023, className: "BOW04_124_Ev", name: "[Event] Misrus Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, attackType: "Arrow" }, +{ itemId: 10310024, className: "MAC04_127_Ev", name: "[Event] Misrus Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4125, maxAtk: 4208, mAtk: 4166, addMDef: 398, attackType: "Strike" }, +{ itemId: 10310025, className: "TMAC04_116_Ev", name: "[Event] Misrus Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike" }, +{ itemId: 10310026, className: "SPR04_125_Ev", name: "[Event] Misrus Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3750, maxAtk: 4583, attackType: "Aries", aries: 392 }, +{ itemId: 10310027, className: "TSP04_126_Ev", name: "[Event] Misrus Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, +{ itemId: 10310028, className: "TSF04_127_Ev", name: "[Event] Misrus Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4924, addMAtk: 407, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 10310029, className: "RAP04_122_Ev", name: "[Event] Misrus Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, +{ itemId: 10310030, className: "CAN04_116_Ev", name: "[Event] Misrus Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 2462, maxAtk: 7386, addMaxAtk: 722, attackType: "Cannon" }, +{ itemId: 10310031, className: "MUS04_116_Ev", name: "[Event] Misrus Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3200, maxAtk: 6647, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 10310037, className: "SWD_Galimybe", name: "Galimive Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 430, equipExpGroup: "Equip", minAtk: 4341, maxAtk: 4610, attackType: "Slash" }, +{ itemId: 10310038, className: "TSW_Galimybe", name: "Galimive Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 430, equipExpGroup: "Equip", minAtk: 4231, maxAtk: 6347, attackType: "Slash" }, +{ itemId: 10310039, className: "STF_Galimybe", name: "Galimive Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 430, equipExpGroup: "Equip", mAtk: 4476, attackType: "Strike" }, +{ itemId: 10310040, className: "TBW_Galimybe", name: "Galimive Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 430, equipExpGroup: "Equip", minAtk: 4231, maxAtk: 6347, attackType: "Arrow" }, +{ itemId: 10310041, className: "BOW_Galimybe", name: "Galimive Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 430, equipExpGroup: "Equip", minAtk: 4341, maxAtk: 4610, attackType: "Arrow" }, +{ itemId: 10310042, className: "MAC_Galimybe", name: "Galimive Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 430, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 4520, mAtk: 4476, attackType: "Strike" }, +{ itemId: 10310043, className: "TMAC_Galimybe", name: "Galimive Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 430, equipExpGroup: "Equip", minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike" }, +{ itemId: 10310044, className: "SPR_Galimybe", name: "Galimive Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 430, equipExpGroup: "Equip", minAtk: 4028, maxAtk: 4923, attackType: "Aries" }, +{ itemId: 10310045, className: "TSP_Galimybe", name: "Galimive Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 430, equipExpGroup: "Equip", minAtk: 3703, maxAtk: 6876, attackType: "Aries" }, +{ itemId: 10310046, className: "TSF_Galimybe", name: "Galimive Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 430, equipExpGroup: "Equip", mAtk: 5289, addMAtk: 407, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 10310047, className: "RAP_Galimybe", name: "Galimive Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 430, equipExpGroup: "Equip", minAtk: 4476, maxAtk: 4476, attackType: "Aries" }, +{ itemId: 10310048, className: "CAN_Galimybe", name: "Galimive Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 430, equipExpGroup: "Equip", minAtk: 2645, maxAtk: 7934, attackType: "Cannon" }, +{ itemId: 10310049, className: "MUS_Galimybe", name: "Galimive Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 430, equipExpGroup: "Equip", minAtk: 3438, maxAtk: 7141, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 10310054, className: "SWD04_123_Ev_2", name: "[Event] Moringponia Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, attackType: "Slash" }, +{ itemId: 10310055, className: "TSW04_123_Ev_2", name: "[Event] Moringponia Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, +{ itemId: 10310056, className: "STF04_124_Ev_2", name: "[Event] Moringponia Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4166, attackType: "Strike" }, +{ itemId: 10310057, className: "TBW04_123_Ev_2", name: "[Event] Moringponia Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, +{ itemId: 10310058, className: "BOW04_123_Ev_2", name: "[Event] Moringponia Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, addMaxAtk: 339, attackType: "Arrow" }, +{ itemId: 10310059, className: "MAC04_126_Ev_2", name: "[Event] Moringponia Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4125, maxAtk: 4208, mAtk: 4166, addDef: 410, attackType: "Strike" }, +{ itemId: 10310060, className: "TMAC04_115_Ev_2", name: "[Event] Moringponia Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike", strike: 291 }, +{ itemId: 10310061, className: "SPR04_124_Ev_2", name: "[Event] Moringponia Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3750, maxAtk: 4583, attackType: "Aries" }, +{ itemId: 10310062, className: "TSP04_125_Ev_2", name: "[Event] Moringponia Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, +{ itemId: 10310063, className: "TSF04_125_Ev_2", name: "[Event] Moringponia Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 10310064, className: "TSF04_126_Ev_2", name: "[Event] Moringponia Caster", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4924, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 10310065, className: "RAP04_121_Ev_2", name: "[Event] Moringponia Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, +{ itemId: 10310066, className: "CAN04_115_Ev_2", name: "[Event] Moringponia Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 2462, maxAtk: 7386, attackType: "Cannon" }, +{ itemId: 10310067, className: "MUS04_115_Ev_2", name: "[Event] Moringponia Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3200, maxAtk: 6647, pAtk: 350, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 10310072, className: "SWD04_124_Ev_2", name: "[Event] Misrus Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, addMDef: 420, attackType: "Slash" }, +{ itemId: 10310073, className: "TSW04_124_Ev_2", name: "[Event] Misrus Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Slash" }, +{ itemId: 10310074, className: "STF04_125_Ev_2", name: "[Event] Misrus Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4166, attackType: "Strike" }, +{ itemId: 10310075, className: "TBW04_124_Ev_2", name: "[Event] Misrus Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 3939, maxAtk: 5909, attackType: "Arrow" }, +{ itemId: 10310076, className: "BOW04_124_Ev_2", name: "[Event] Misrus Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 400, equipExpGroup: "Equip", minAtk: 4041, maxAtk: 4291, attackType: "Arrow" }, +{ itemId: 10310077, className: "MAC04_127_Ev_2", name: "[Event] Misrus Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4125, maxAtk: 4208, mAtk: 4166, addMDef: 398, attackType: "Strike" }, +{ itemId: 10310078, className: "TMAC04_116_Ev_2", name: "[Event] Misrus Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 400, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 5416, mAtk: 4924, attackType: "Strike" }, +{ itemId: 10310079, className: "SPR04_125_Ev_2", name: "[Event] Misrus Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3750, maxAtk: 4583, attackType: "Aries", aries: 392 }, +{ itemId: 10310080, className: "TSP04_126_Ev_2", name: "[Event] Misrus Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 400, equipExpGroup: "Equip", minAtk: 3447, maxAtk: 6401, attackType: "Aries" }, +{ itemId: 10310081, className: "TSF04_127_Ev_2", name: "[Event] Misrus Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 400, equipExpGroup: "Equip", mAtk: 4924, addMAtk: 407, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 10310082, className: "RAP04_122_Ev_2", name: "[Event] Misrus Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 64609, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 400, equipExpGroup: "Equip", minAtk: 4166, maxAtk: 4166, attackType: "Aries" }, +{ itemId: 10310083, className: "CAN04_116_Ev_2", name: "[Event] Misrus Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 2462, maxAtk: 7386, addMaxAtk: 722, attackType: "Cannon" }, +{ itemId: 10310084, className: "MUS04_116_Ev_2", name: "[Event] Misrus Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 103374, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 400, equipExpGroup: "Equip", minAtk: 3200, maxAtk: 6647, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 10800013, className: "Episode12_EP12_FIELD_SWORD", name: "[EP12] Savinose Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Slash" }, +{ itemId: 10800014, className: "Episode12_EP12_FIELD_THSWORD", name: "[EP12] Savinose Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Slash" }, +{ itemId: 10800015, className: "Episode12_EP12_FIELD_STAFF", name: "[EP12] Savinose Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 6564, attackType: "Strike" }, +{ itemId: 10800016, className: "Episode12_EP12_FIELD_THBOW", name: "[EP12] Savinose Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Arrow" }, +{ itemId: 10800017, className: "Episode12_EP12_FIELD_BOW", name: "[EP12] Savinose Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Arrow" }, +{ itemId: 10800018, className: "Episode12_EP12_FIELD_MACE", name: "[EP12] Savinose Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike" }, +{ itemId: 10800019, className: "Episode12_EP12_FIELD_THMACE", name: "[EP12] Savinose Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike" }, +{ itemId: 10800021, className: "Episode12_EP12_FIELD_SPEAR", name: "[EP12] Savinose Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5908, maxAtk: 7221, attackType: "Aries" }, +{ itemId: 10800022, className: "Episode12_EP12_FIELD_THSPEAR", name: "[EP12] Savinose Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 9905, attackType: "Aries" }, +{ itemId: 10800024, className: "Episode12_EP12_FIELD_THSTAFF", name: "[EP12] Savinose Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 10800026, className: "Episode12_EP12_FIELD_RAPIER", name: "[EP12] Savinose Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6564, maxAtk: 6564, attackType: "Aries" }, +{ itemId: 10800027, className: "Episode12_EP12_FIELD_CANNON", name: "[EP12] Savinose Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 3810, maxAtk: 11429, attackType: "Cannon" }, +{ itemId: 10800028, className: "Episode12_EP12_FIELD_MUSKET", name: "[EP12] Savinose Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 10800042, className: "2021_NewYear_EP12_FIELD_SWORD", name: "[2021] Savinose Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Slash" }, +{ itemId: 10800043, className: "2021_NewYear_EP12_FIELD_THSWORD", name: "[2021] Savinose Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Slash" }, +{ itemId: 10800044, className: "2021_NewYear_EP12_FIELD_STAFF", name: "[2021] Savinose Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 6564, attackType: "Strike" }, +{ itemId: 10800045, className: "2021_NewYear_EP12_FIELD_THBOW", name: "[2021] Savinose Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Arrow" }, +{ itemId: 10800046, className: "2021_NewYear_EP12_FIELD_BOW", name: "[2021] Savinose Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Arrow" }, +{ itemId: 10800047, className: "2021_NewYear_EP12_FIELD_MACE", name: "[2021] Savinose Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike" }, +{ itemId: 10800048, className: "2021_NewYear_EP12_FIELD_THMACE", name: "[2021] Savinose Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike" }, +{ itemId: 10800050, className: "2021_NewYear_EP12_FIELD_SPEAR", name: "[2021] Savinose Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5908, maxAtk: 7221, attackType: "Aries" }, +{ itemId: 10800051, className: "2021_NewYear_EP12_FIELD_THSPEAR", name: "[2021] Savinose Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 9905, attackType: "Aries" }, +{ itemId: 10800053, className: "2021_NewYear_EP12_FIELD_THSTAFF", name: "[2021] Savinose Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 10800055, className: "2021_NewYear_EP12_FIELD_RAPIER", name: "[2021] Savinose Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6564, maxAtk: 6564, attackType: "Aries" }, +{ itemId: 10800056, className: "2021_NewYear_EP12_FIELD_CANNON", name: "[2021] Savinose Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 3810, maxAtk: 11429, attackType: "Cannon" }, +{ itemId: 10800057, className: "2021_NewYear_EP12_FIELD_MUSKET", name: "[2021] Savinose Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 10999001, className: "TOSHero_SWORD", name: "Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 970, maxAtk: 1030, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Slash", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999002, className: "TOSHero_THSWORD", name: "Two-handed Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 800, maxAtk: 1200, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Slash", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999003, className: "TOSHero_STAFF", name: "Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", minAtk: 1000, maxAtk: 1000, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Strike", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999004, className: "TOSHero_THBOW", name: "Bow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 800, maxAtk: 1200, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Arrow", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999005, className: "TOSHero_BOW", name: "Crossbow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 970, maxAtk: 1030, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Arrow", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999006, className: "TOSHero_MACE", name: "Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 990, maxAtk: 1010, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Strike", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999007, className: "TOSHero_THMACE", name: "Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 900, maxAtk: 1100, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Strike", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999009, className: "TOSHero_SPEAR", name: "Spear", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 900, maxAtk: 1100, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Aries", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999010, className: "TOSHero_THSPEAR", name: "Pike", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 700, maxAtk: 1300, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Aries", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999012, className: "TOSHero_THSTAFF", name: "Staff", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", minAtk: 1000, maxAtk: 1000, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999014, className: "TOSHero_RAPIER", name: "Rapier", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 1000, maxAtk: 1000, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Aries", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999015, className: "TOSHero_CANNON", name: "Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 500, maxAtk: 1500, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Cannon", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 10999016, className: "TOSHero_MUSKET", name: "Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 650, maxAtk: 1350, mAtk: 1000, def: 1000, mDef: 1000, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "TOSHeroEquip" } }, +{ itemId: 11002010, className: "EP12_SWD04_001", name: "Glacia Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 430, equipExpGroup: "Equip", minAtk: 4341, maxAtk: 4610, attackType: "Slash" }, +{ itemId: 11002011, className: "EP12_TSW04_001", name: "Glacia Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 430, equipExpGroup: "Equip", minAtk: 4231, maxAtk: 6347, attackType: "Slash" }, +{ itemId: 11002012, className: "EP12_SPR04_001", name: "Glacia Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 430, equipExpGroup: "Equip", minAtk: 4028, maxAtk: 4923, attackType: "Aries" }, +{ itemId: 11002013, className: "EP12_TSP04_001", name: "Glacia Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 430, equipExpGroup: "Equip", minAtk: 3703, maxAtk: 6876, attackType: "Aries" }, +{ itemId: 11002014, className: "EP12_MAC04_001", name: "Glacia Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 430, equipExpGroup: "Equip", minAtk: 4431, maxAtk: 4520, mAtk: 4476, addDef: 795, addMDef: 795, attackType: "Strike" }, +{ itemId: 11002015, className: "EP12_TMAC04_001", name: "Glacia Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 430, equipExpGroup: "Equip", minAtk: 4760, maxAtk: 5818, mAtk: 5289, attackType: "Strike" }, +{ itemId: 11002016, className: "EP12_TBW04_001", name: "Glacia Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 430, equipExpGroup: "Equip", minAtk: 4231, maxAtk: 6347, attackType: "Arrow" }, +{ itemId: 11002017, className: "EP12_CAN04_001", name: "Glacia Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 430, equipExpGroup: "Equip", minAtk: 2645, maxAtk: 7934, attackType: "Cannon" }, +{ itemId: 11002019, className: "EP12_RAP04_001", name: "Glacia Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 430, equipExpGroup: "Equip", minAtk: 4476, maxAtk: 4476, attackType: "Aries" }, +{ itemId: 11002021, className: "EP12_MUS04_001", name: "Glacia Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 430, equipExpGroup: "Equip", minAtk: 3438, maxAtk: 7141, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 11002022, className: "EP12_STF04_001", name: "Glacia Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 430, equipExpGroup: "Equip", mAtk: 4476, attackType: "Strike" }, +{ itemId: 11002023, className: "EP12_TSF04_001", name: "Glacia Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 105812, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 430, equipExpGroup: "Equip", mAtk: 5289, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 11002025, className: "EP12_BOW04_001", name: "Glacia Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 66133, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 430, equipExpGroup: "Equip", minAtk: 4341, maxAtk: 4610, attackType: "Arrow" }, { itemId: 11007001, className: "EP12_Artefact_001", name: "Red Fox Sword", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "WoodCarving" } }, { itemId: 11007002, className: "EP12_Artefact_002", name: "Red Fox Two-handed Sword", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Slash", script: { strArg: "WoodCarving" } }, { itemId: 11007003, className: "EP12_Artefact_003", name: "Blooming Rose Spear", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, minAtk: 33, maxAtk: 41, attackType: "Aries", script: { strArg: "WoodCarving" } }, @@ -26752,112 +26752,112 @@ { itemId: 11007411, className: "EP13_Artefact_122_NoTrade", name: "TOSummer Rod", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 37, attackType: "Strike", script: { strArg: "WoodCarving" } }, { itemId: 11007412, className: "EP13_Artefact_123_NoTrade", name: "TOSummer Staff", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 44, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "WoodCarving" } }, { itemId: 11007413, className: "EP13_Artefact_124_NoTrade", name: "TOSummer Pike", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, minAtk: 31, maxAtk: 57, attackType: "Aries", script: { strArg: "WoodCarving" } }, -{ itemId: 11020001, className: "EP12_FIELD_SWORD", name: "Savinose Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Slash", script: { strArg: "Legenda" } }, -{ itemId: 11020002, className: "EP12_FIELD_THSWORD", name: "Savinose Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Slash", script: { strArg: "Legenda" } }, -{ itemId: 11020003, className: "EP12_FIELD_STAFF", name: "Savinose Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, -{ itemId: 11020004, className: "EP12_FIELD_THBOW", name: "Savinose Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Arrow", script: { strArg: "Legenda" } }, -{ itemId: 11020005, className: "EP12_FIELD_BOW", name: "Savinose Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Arrow", script: { strArg: "Legenda" } }, -{ itemId: 11020006, className: "EP12_FIELD_MACE", name: "Savinose Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, -{ itemId: 11020007, className: "EP12_FIELD_THMACE", name: "Savinose Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike", script: { strArg: "Legenda" } }, -{ itemId: 11020009, className: "EP12_FIELD_SPEAR", name: "Savinose Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, minAtk: 5908, maxAtk: 7221, attackType: "Aries", script: { strArg: "Legenda" } }, -{ itemId: 11020010, className: "EP12_FIELD_THSPEAR", name: "Savinose Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, minAtk: 5333, maxAtk: 9905, attackType: "Aries", script: { strArg: "Legenda" } }, -{ itemId: 11020012, className: "EP12_FIELD_THSTAFF", name: "Savinose Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Legenda" } }, -{ itemId: 11020014, className: "EP12_FIELD_RAPIER", name: "Savinose Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, minAtk: 6564, maxAtk: 6564, attackType: "Aries", script: { strArg: "Legenda" } }, -{ itemId: 11020015, className: "EP12_FIELD_CANNON", name: "Savinose Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, minAtk: 3810, maxAtk: 11429, attackType: "Cannon", script: { strArg: "Legenda" } }, -{ itemId: 11020016, className: "EP12_FIELD_MUSKET", name: "Savinose Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Legenda" } }, -{ itemId: 11020018, className: "EP12_RAID_SWORD", name: "Glacia Legenda Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Slash", script: { strArg: "Legenda" } }, -{ itemId: 11020019, className: "EP12_RAID_THSWORD", name: "Glacia Legenda Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Slash", script: { strArg: "Legenda" } }, -{ itemId: 11020020, className: "EP12_RAID_STAFF", name: "Glacia Legenda Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, -{ itemId: 11020021, className: "EP12_RAID_THBOW", name: "Glacia Legenda Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, minAtk: 6095, maxAtk: 9143, attackType: "Arrow", script: { strArg: "Legenda" } }, -{ itemId: 11020022, className: "EP12_RAID_BOW", name: "Glacia Legenda Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, minAtk: 6367, maxAtk: 6761, attackType: "Arrow", script: { strArg: "Legenda" } }, -{ itemId: 11020023, className: "EP12_RAID_MACE", name: "Glacia Legenda Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, -{ itemId: 11020024, className: "EP12_RAID_THMACE", name: "Glacia Legenda Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike", script: { strArg: "Legenda" } }, -{ itemId: 11020026, className: "EP12_RAID_SPEAR", name: "Glacia Legenda Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, minAtk: 5908, maxAtk: 7221, attackType: "Aries", script: { strArg: "Legenda" } }, -{ itemId: 11020027, className: "EP12_RAID_THSPEAR", name: "Glacia Legenda Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, minAtk: 5333, maxAtk: 9905, attackType: "Aries", script: { strArg: "Legenda" } }, -{ itemId: 11020029, className: "EP12_RAID_THSTAFF", name: "Glacia Legenda Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Legenda" } }, -{ itemId: 11020031, className: "EP12_RAID_RAPIER", name: "Glacia Legenda Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, minAtk: 6564, maxAtk: 6564, attackType: "Aries", script: { strArg: "Legenda" } }, -{ itemId: 11020032, className: "EP12_RAID_CANNON", name: "Glacia Legenda Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, minAtk: 3810, maxAtk: 11429, attackType: "Cannon", script: { strArg: "Legenda" } }, -{ itemId: 11020033, className: "EP12_RAID_MUSKET", name: "Glacia Legenda Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Legenda" } }, -{ itemId: 11040004, className: "Dummy_Sword_Guilty", name: "Liberated Res Sacrae Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash" }, -{ itemId: 11040005, className: "Dummy_Thsword_Guilty", name: "Liberated Res Sacrae Two-handed Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Slash" }, -{ itemId: 11040006, className: "Dummy_Spear_Guilty", name: "Liberated Res Sacrae Spear", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, minAtk: 33, maxAtk: 41, attackType: "Aries" }, -{ itemId: 11040007, className: "Dummy_Thspear_Guilty", name: "Liberated Res Sacrae Pike", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, minAtk: 31, maxAtk: 57, attackType: "Aries" }, -{ itemId: 11040008, className: "Dummy_Mace_Guilty", name: "Liberated Res Sacrae Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, -{ itemId: 11040009, className: "Dummy_Thmace_Guilty", name: "Liberated Res Sacrae Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 39, maxAtk: 48, mAtk: 44, attackType: "Strike" }, -{ itemId: 11040010, className: "Dummy_Bow_Guilty", name: "Liberated Res Sacrae Bow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Arrow" }, -{ itemId: 11040011, className: "Dummy_Cannon_Guilty", name: "Liberated Res Sacrae Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 22, maxAtk: 66, attackType: "Cannon" }, -{ itemId: 11040013, className: "Dummy_Rapier_Guilty", name: "Liberated Res Sacrae Rapier", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, minAtk: 37, maxAtk: 37, attackType: "Aries" }, -{ itemId: 11040015, className: "Dummy_Musket_Guilty", name: "Liberated Res Sacrae Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 29, maxAtk: 59, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, -{ itemId: 11040016, className: "Dummy_Rod_Guilty", name: "Liberated Res Sacrae Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 37, attackType: "Strike" }, -{ itemId: 11040017, className: "Dummy_Staff_Guilty", name: "Liberated Res Sacrae Staff", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 44, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, -{ itemId: 11040019, className: "Dummy_Crossbow_Guilty", name: "Liberated Res Sacrae Crossbow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Arrow" }, +{ itemId: 11020001, className: "EP12_FIELD_SWORD", name: "Savinose Dysnai Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Slash", script: { strArg: "Legenda" } }, +{ itemId: 11020002, className: "EP12_FIELD_THSWORD", name: "Savinose Dysnai Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Slash", script: { strArg: "Legenda" } }, +{ itemId: 11020003, className: "EP12_FIELD_STAFF", name: "Savinose Dysnai Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, +{ itemId: 11020004, className: "EP12_FIELD_THBOW", name: "Savinose Dysnai Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Arrow", script: { strArg: "Legenda" } }, +{ itemId: 11020005, className: "EP12_FIELD_BOW", name: "Savinose Dysnai Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Arrow", script: { strArg: "Legenda" } }, +{ itemId: 11020006, className: "EP12_FIELD_MACE", name: "Savinose Dysnai Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, +{ itemId: 11020007, className: "EP12_FIELD_THMACE", name: "Savinose Dysnai Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike", script: { strArg: "Legenda" } }, +{ itemId: 11020009, className: "EP12_FIELD_SPEAR", name: "Savinose Dysnai Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5908, maxAtk: 7221, attackType: "Aries", script: { strArg: "Legenda" } }, +{ itemId: 11020010, className: "EP12_FIELD_THSPEAR", name: "Savinose Dysnai Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 9905, attackType: "Aries", script: { strArg: "Legenda" } }, +{ itemId: 11020012, className: "EP12_FIELD_THSTAFF", name: "Savinose Dysnai Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Legenda" } }, +{ itemId: 11020014, className: "EP12_FIELD_RAPIER", name: "Savinose Dysnai Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6564, maxAtk: 6564, attackType: "Aries", script: { strArg: "Legenda" } }, +{ itemId: 11020015, className: "EP12_FIELD_CANNON", name: "Savinose Dysnai Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 3810, maxAtk: 11429, attackType: "Cannon", script: { strArg: "Legenda" } }, +{ itemId: 11020016, className: "EP12_FIELD_MUSKET", name: "Savinose Dysnai Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Legenda" } }, +{ itemId: 11020018, className: "EP12_RAID_SWORD", name: "Glacia Legenda Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Slash", script: { strArg: "Legenda" } }, +{ itemId: 11020019, className: "EP12_RAID_THSWORD", name: "Glacia Legenda Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Slash", script: { strArg: "Legenda" } }, +{ itemId: 11020020, className: "EP12_RAID_STAFF", name: "Glacia Legenda Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, +{ itemId: 11020021, className: "EP12_RAID_THBOW", name: "Glacia Legenda Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6095, maxAtk: 9143, attackType: "Arrow", script: { strArg: "Legenda" } }, +{ itemId: 11020022, className: "EP12_RAID_BOW", name: "Glacia Legenda Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 440, equipExpGroup: "Equip", minAtk: 6367, maxAtk: 6761, attackType: "Arrow", script: { strArg: "Legenda" } }, +{ itemId: 11020023, className: "EP12_RAID_MACE", name: "Glacia Legenda Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6498, maxAtk: 6630, mAtk: 6564, attackType: "Strike", script: { strArg: "Legenda" } }, +{ itemId: 11020024, className: "EP12_RAID_THMACE", name: "Glacia Legenda Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 440, equipExpGroup: "Equip", minAtk: 6857, maxAtk: 8381, mAtk: 7619, attackType: "Strike", script: { strArg: "Legenda" } }, +{ itemId: 11020026, className: "EP12_RAID_SPEAR", name: "Glacia Legenda Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5908, maxAtk: 7221, attackType: "Aries", script: { strArg: "Legenda" } }, +{ itemId: 11020027, className: "EP12_RAID_THSPEAR", name: "Glacia Legenda Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 440, equipExpGroup: "Equip", minAtk: 5333, maxAtk: 9905, attackType: "Aries", script: { strArg: "Legenda" } }, +{ itemId: 11020029, className: "EP12_RAID_THSTAFF", name: "Glacia Legenda Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 440, equipExpGroup: "Equip", mAtk: 7619, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Legenda" } }, +{ itemId: 11020031, className: "EP12_RAID_RAPIER", name: "Glacia Legenda Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73752, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 440, equipExpGroup: "Equip", minAtk: 6564, maxAtk: 6564, attackType: "Aries", script: { strArg: "Legenda" } }, +{ itemId: 11020032, className: "EP12_RAID_CANNON", name: "Glacia Legenda Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 3810, maxAtk: 11429, attackType: "Cannon", script: { strArg: "Legenda" } }, +{ itemId: 11020033, className: "EP12_RAID_MUSKET", name: "Glacia Legenda Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118003, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 440, equipExpGroup: "Equip", minAtk: 4952, maxAtk: 10286, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Legenda" } }, +{ itemId: 11040004, className: "Dummy_Sword_Guilty", name: "Liberated Res Sacrae Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 36, maxAtk: 38, attackType: "Slash" }, +{ itemId: 11040005, className: "Dummy_Thsword_Guilty", name: "Liberated Res Sacrae Two-handed Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 35, maxAtk: 53, attackType: "Slash" }, +{ itemId: 11040006, className: "Dummy_Spear_Guilty", name: "Liberated Res Sacrae Spear", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 33, maxAtk: 41, attackType: "Aries" }, +{ itemId: 11040007, className: "Dummy_Thspear_Guilty", name: "Liberated Res Sacrae Pike", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 31, maxAtk: 57, attackType: "Aries" }, +{ itemId: 11040008, className: "Dummy_Mace_Guilty", name: "Liberated Res Sacrae Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 37, maxAtk: 37, mAtk: 37, attackType: "Strike" }, +{ itemId: 11040009, className: "Dummy_Thmace_Guilty", name: "Liberated Res Sacrae Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 39, maxAtk: 48, mAtk: 44, attackType: "Strike" }, +{ itemId: 11040010, className: "Dummy_Bow_Guilty", name: "Liberated Res Sacrae Bow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 35, maxAtk: 53, attackType: "Arrow" }, +{ itemId: 11040011, className: "Dummy_Cannon_Guilty", name: "Liberated Res Sacrae Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 22, maxAtk: 66, attackType: "Cannon" }, +{ itemId: 11040013, className: "Dummy_Rapier_Guilty", name: "Liberated Res Sacrae Rapier", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 37, maxAtk: 37, attackType: "Aries" }, +{ itemId: 11040015, className: "Dummy_Musket_Guilty", name: "Liberated Res Sacrae Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 29, maxAtk: 59, attackType: "Gun", leftHandSkill: "Common_MusketAttack" }, +{ itemId: 11040016, className: "Dummy_Rod_Guilty", name: "Liberated Res Sacrae Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 37, attackType: "Strike" }, +{ itemId: 11040017, className: "Dummy_Staff_Guilty", name: "Liberated Res Sacrae Staff", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 44, attackType: "Strike", leftHandSkill: "Common_StaffAttack" }, +{ itemId: 11040019, className: "Dummy_Crossbow_Guilty", name: "Liberated Res Sacrae Crossbow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 36, maxAtk: 38, attackType: "Arrow" }, { itemId: 11043001, className: "EP14_Contents_Artefact_001", name: "Baubas Sword", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "WoodCarving" } }, { itemId: 11043002, className: "EP14_Contents_Artefact_002", name: "Baubas Two-handed Sword", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Slash", script: { strArg: "WoodCarving" } }, -{ itemId: 11095000, className: "EP13_RAID_SWORD", name: "Vasilisa Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 460, minAtk: 12734, maxAtk: 13522, attackType: "Slash", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095001, className: "EP13_RAID_THSWORD", name: "Vasilisa Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 460, minAtk: 12078, maxAtk: 18117, attackType: "Slash", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095002, className: "EP13_RAID_STAFF", name: "Vasilisa Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 460, mAtk: 13128, attackType: "Strike", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095003, className: "EP13_RAID_THBOW", name: "Vasilisa Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 460, minAtk: 12078, maxAtk: 18117, attackType: "Arrow", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095004, className: "EP13_RAID_BOW", name: "Vasilisa Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 460, minAtk: 12734, maxAtk: 13522, attackType: "Arrow", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095005, className: "EP13_RAID_MACE", name: "Vasilisa Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 460, minAtk: 12997, maxAtk: 13259, mAtk: 13128, attackType: "Strike", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095006, className: "EP13_RAID_THMACE", name: "Vasilisa Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 460, minAtk: 13587, maxAtk: 16607, mAtk: 15097, attackType: "Strike", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095008, className: "EP13_RAID_SPEAR", name: "Vasilisa Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 460, minAtk: 11815, maxAtk: 14441, attackType: "Aries", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095009, className: "EP13_RAID_THSPEAR", name: "Vasilisa Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 460, minAtk: 10568, maxAtk: 19626, attackType: "Aries", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095011, className: "EP13_RAID_THSTAFF", name: "Vasilisa Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 460, mAtk: 15097, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095013, className: "EP13_RAID_RAPIER", name: "Vasilisa Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 460, minAtk: 13128, maxAtk: 13128, attackType: "Aries", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095014, className: "EP13_RAID_CANNON", name: "Vasilisa Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 460, minAtk: 7549, maxAtk: 22646, attackType: "Cannon", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11095015, className: "EP13_RAID_MUSKET", name: "Vasilisa Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 460, minAtk: 9813, maxAtk: 20381, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Goddess_Vasilisa" } }, -{ itemId: 11096500, className: "GROWTH_REINFORCE_TIER1_SWORD", name: "Guardian Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 78, maxAtk: 82, attackType: "Slash", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096501, className: "GROWTH_REINFORCE_TIER1_THSWORD", name: "Guardian Two-handed Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, minAtk: 75, maxAtk: 113, attackType: "Slash", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096502, className: "GROWTH_REINFORCE_TIER1_STAFF", name: "Guardian Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, mAtk: 80, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096503, className: "GROWTH_REINFORCE_TIER1_THBOW", name: "Guardian Bow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 75, maxAtk: 113, attackType: "Arrow", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096504, className: "GROWTH_REINFORCE_TIER1_BOW", name: "Guardian Crossbow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, minAtk: 78, maxAtk: 82, attackType: "Arrow", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096505, className: "GROWTH_REINFORCE_TIER1_MACE", name: "Guardian Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 79, maxAtk: 81, mAtk: 80, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096506, className: "GROWTH_REINFORCE_TIER1_THMACE", name: "Guardian Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, minAtk: 85, maxAtk: 103, mAtk: 94, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096508, className: "GROWTH_REINFORCE_TIER1_SPEAR", name: "Guardian Spear", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, minAtk: 72, maxAtk: 88, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096509, className: "GROWTH_REINFORCE_TIER1_THSPEAR", name: "Guardian Pike", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, minAtk: 66, maxAtk: 122, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096511, className: "GROWTH_REINFORCE_TIER1_THSTAFF", name: "Guardian Staff", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 94, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096513, className: "GROWTH_REINFORCE_TIER1_RAPIER", name: "Guardian Rapier", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, minAtk: 80, maxAtk: 80, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096514, className: "GROWTH_REINFORCE_TIER1_CANNON", name: "Guardian Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, minAtk: 47, maxAtk: 141, attackType: "Cannon", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096515, className: "GROWTH_REINFORCE_TIER1_MUSKET", name: "Guardian Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 61, maxAtk: 127, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, -{ itemId: 11096530, className: "GROWTH_REINFORCE_TIER2_SWORD", name: "Elite Guardian Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 120, minAtk: 1809, maxAtk: 1921, attackType: "Slash", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096531, className: "GROWTH_REINFORCE_TIER2_THSWORD", name: "Elite Guardian Two-handed Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 120, minAtk: 1692, maxAtk: 2538, attackType: "Slash", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096532, className: "GROWTH_REINFORCE_TIER2_STAFF", name: "Elite Guardian Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 120, mAtk: 1865, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096533, className: "GROWTH_REINFORCE_TIER2_THBOW", name: "Elite Guardian Bow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 120, minAtk: 1692, maxAtk: 2538, attackType: "Arrow", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096534, className: "GROWTH_REINFORCE_TIER2_BOW", name: "Elite Guardian Crossbow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 120, minAtk: 1809, maxAtk: 1921, attackType: "Arrow", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096535, className: "GROWTH_REINFORCE_TIER2_MACE", name: "Elite Guardian Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 120, minAtk: 1846, maxAtk: 1884, mAtk: 1865, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096536, className: "GROWTH_REINFORCE_TIER2_THMACE", name: "Elite Guardian Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 120, minAtk: 1903, maxAtk: 2327, mAtk: 2115, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096538, className: "GROWTH_REINFORCE_TIER2_SPEAR", name: "Elite Guardian Spear", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 120, minAtk: 1678, maxAtk: 2052, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096539, className: "GROWTH_REINFORCE_TIER2_THSPEAR", name: "Elite Guardian Pike", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, minAtk: 1481, maxAtk: 2749, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096541, className: "GROWTH_REINFORCE_TIER2_THSTAFF", name: "Elite Guardian Staff", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, mAtk: 2115, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096543, className: "GROWTH_REINFORCE_TIER2_RAPIER", name: "Elite Guardian Rapier", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 120, minAtk: 1865, maxAtk: 1865, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096544, className: "GROWTH_REINFORCE_TIER2_CANNON", name: "Elite Guardian Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 120, minAtk: 1058, maxAtk: 3173, attackType: "Cannon", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096545, className: "GROWTH_REINFORCE_TIER2_MUSKET", name: "Elite Guardian Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 120, minAtk: 1375, maxAtk: 2855, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, -{ itemId: 11096570, className: "GROWTH_REINFORCE_TIER3_SWORD", name: "Royal Guardian Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 280, minAtk: 8358, maxAtk: 8874, attackType: "Slash", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096571, className: "GROWTH_REINFORCE_TIER3_THSWORD", name: "Royal Guardian Two-handed Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 66048, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 280, minAtk: 7815, maxAtk: 11723, attackType: "Slash", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096572, className: "GROWTH_REINFORCE_TIER3_STAFF", name: "Royal Guardian Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 280, mAtk: 8616, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096573, className: "GROWTH_REINFORCE_TIER3_THBOW", name: "Royal Guardian Bow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 66048, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 280, minAtk: 7815, maxAtk: 11723, attackType: "Arrow", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096574, className: "GROWTH_REINFORCE_TIER3_BOW", name: "Royal Guardian Crossbow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 280, minAtk: 8358, maxAtk: 8874, attackType: "Arrow", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096575, className: "GROWTH_REINFORCE_TIER3_MACE", name: "Royal Guardian Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 280, minAtk: 8530, maxAtk: 8702, mAtk: 8616, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096576, className: "GROWTH_REINFORCE_TIER3_THMACE", name: "Royal Guardian Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 66048, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 280, minAtk: 8792, maxAtk: 10746, mAtk: 9769, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096578, className: "GROWTH_REINFORCE_TIER3_SPEAR", name: "Royal Guardian Spear", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 280, minAtk: 7754, maxAtk: 9478, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096579, className: "GROWTH_REINFORCE_TIER3_THSPEAR", name: "Royal Guardian Pike", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 66048, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 280, minAtk: 6838, maxAtk: 12700, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096581, className: "GROWTH_REINFORCE_TIER3_THSTAFF", name: "Royal Guardian Staff", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 66048, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 280, mAtk: 9769, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096583, className: "GROWTH_REINFORCE_TIER3_RAPIER", name: "Royal Guardian Rapier", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 280, minAtk: 8616, maxAtk: 8616, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096584, className: "GROWTH_REINFORCE_TIER3_CANNON", name: "Royal Guardian Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 66048, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 280, minAtk: 4885, maxAtk: 14654, attackType: "Cannon", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11096585, className: "GROWTH_REINFORCE_TIER3_MUSKET", name: "Royal Guardian Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 66048, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 280, minAtk: 6350, maxAtk: 13188, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, -{ itemId: 11100027, className: "EP14_RAID_SWORD", name: "Reservoir Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 480, minAtk: 29634, maxAtk: 31468, attackType: "Slash", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100028, className: "EP14_RAID_THSWORD", name: "Reservoir Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118977, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 480, minAtk: 28107, maxAtk: 42160, attackType: "Slash", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100029, className: "EP14_RAID_STAFF", name: "Reservoir Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 480, mAtk: 30551, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100030, className: "EP14_RAID_THBOW", name: "Reservoir Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118977, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 480, minAtk: 28107, maxAtk: 42160, attackType: "Arrow", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100031, className: "EP14_RAID_BOW", name: "Reservoir Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 480, minAtk: 29634, maxAtk: 31468, attackType: "Arrow", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100032, className: "EP14_RAID_MACE", name: "Reservoir Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 480, minAtk: 30245, maxAtk: 30857, mAtk: 30551, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100033, className: "EP14_RAID_THMACE", name: "Reservoir Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118977, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 480, minAtk: 31620, maxAtk: 38647, mAtk: 35134, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100035, className: "EP14_RAID_SPEAR", name: "Reservoir Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 480, minAtk: 27496, maxAtk: 33606, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100036, className: "EP14_RAID_THSPEAR", name: "Reservoir Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118977, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 480, minAtk: 24594, maxAtk: 45674, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100038, className: "EP14_RAID_THSTAFF", name: "Reservoir Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118977, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 480, mAtk: 35134, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100040, className: "EP14_RAID_RAPIER", name: "Reservoir Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 480, minAtk: 30551, maxAtk: 30551, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100041, className: "EP14_RAID_CANNON", name: "Reservoir Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118977, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 480, minAtk: 17567, maxAtk: 52700, attackType: "Cannon", script: { strArg: "Goddess_Weapon_Lv480" } }, -{ itemId: 11100042, className: "EP14_RAID_MUSKET", name: "Reservoir Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118977, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 480, minAtk: 22837, maxAtk: 47430, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11095000, className: "EP13_RAID_SWORD", name: "Vasilisa Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 460, equipExpGroup: "Equip", minAtk: 12734, maxAtk: 13522, attackType: "Slash", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095001, className: "EP13_RAID_THSWORD", name: "Vasilisa Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 460, equipExpGroup: "Equip", minAtk: 12078, maxAtk: 18117, attackType: "Slash", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095002, className: "EP13_RAID_STAFF", name: "Vasilisa Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 460, equipExpGroup: "Equip", mAtk: 13128, attackType: "Strike", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095003, className: "EP13_RAID_THBOW", name: "Vasilisa Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 460, equipExpGroup: "Equip", minAtk: 12078, maxAtk: 18117, attackType: "Arrow", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095004, className: "EP13_RAID_BOW", name: "Vasilisa Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 460, equipExpGroup: "Equip", minAtk: 12734, maxAtk: 13522, attackType: "Arrow", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095005, className: "EP13_RAID_MACE", name: "Vasilisa Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 460, equipExpGroup: "Equip", minAtk: 12997, maxAtk: 13259, mAtk: 13128, attackType: "Strike", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095006, className: "EP13_RAID_THMACE", name: "Vasilisa Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 460, equipExpGroup: "Equip", minAtk: 13587, maxAtk: 16607, mAtk: 15097, attackType: "Strike", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095008, className: "EP13_RAID_SPEAR", name: "Vasilisa Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 460, equipExpGroup: "Equip", minAtk: 11815, maxAtk: 14441, attackType: "Aries", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095009, className: "EP13_RAID_THSPEAR", name: "Vasilisa Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 460, equipExpGroup: "Equip", minAtk: 10568, maxAtk: 19626, attackType: "Aries", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095011, className: "EP13_RAID_THSTAFF", name: "Vasilisa Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 460, equipExpGroup: "Equip", mAtk: 15097, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095013, className: "EP13_RAID_RAPIER", name: "Vasilisa Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 73904, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 460, equipExpGroup: "Equip", minAtk: 13128, maxAtk: 13128, attackType: "Aries", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095014, className: "EP13_RAID_CANNON", name: "Vasilisa Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 460, equipExpGroup: "Equip", minAtk: 7549, maxAtk: 22646, attackType: "Cannon", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11095015, className: "EP13_RAID_MUSKET", name: "Vasilisa Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118246, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 460, equipExpGroup: "Equip", minAtk: 9813, maxAtk: 20381, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Goddess_Vasilisa" } }, +{ itemId: 11096500, className: "GROWTH_REINFORCE_TIER1_SWORD", name: "Guardian Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 78, maxAtk: 82, attackType: "Slash", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096501, className: "GROWTH_REINFORCE_TIER1_THSWORD", name: "Guardian Two-handed Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 75, maxAtk: 113, attackType: "Slash", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096502, className: "GROWTH_REINFORCE_TIER1_STAFF", name: "Guardian Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 80, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096503, className: "GROWTH_REINFORCE_TIER1_THBOW", name: "Guardian Bow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 75, maxAtk: 113, attackType: "Arrow", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096504, className: "GROWTH_REINFORCE_TIER1_BOW", name: "Guardian Crossbow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 1, equipExpGroup: "Equip", minAtk: 78, maxAtk: 82, attackType: "Arrow", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096505, className: "GROWTH_REINFORCE_TIER1_MACE", name: "Guardian Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 79, maxAtk: 81, mAtk: 80, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096506, className: "GROWTH_REINFORCE_TIER1_THMACE", name: "Guardian Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 1, equipExpGroup: "Equip", minAtk: 85, maxAtk: 103, mAtk: 94, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096508, className: "GROWTH_REINFORCE_TIER1_SPEAR", name: "Guardian Spear", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 72, maxAtk: 88, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096509, className: "GROWTH_REINFORCE_TIER1_THSPEAR", name: "Guardian Pike", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 1, equipExpGroup: "Equip", minAtk: 66, maxAtk: 122, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096511, className: "GROWTH_REINFORCE_TIER1_THSTAFF", name: "Guardian Staff", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, equipExpGroup: "Equip", mAtk: 94, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096513, className: "GROWTH_REINFORCE_TIER1_RAPIER", name: "Guardian Rapier", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 1, equipExpGroup: "Equip", minAtk: 80, maxAtk: 80, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096514, className: "GROWTH_REINFORCE_TIER1_CANNON", name: "Guardian Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 47, maxAtk: 141, attackType: "Cannon", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096515, className: "GROWTH_REINFORCE_TIER1_MUSKET", name: "Guardian Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, equipExpGroup: "Equip", minAtk: 61, maxAtk: 127, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier1" } }, +{ itemId: 11096530, className: "GROWTH_REINFORCE_TIER2_SWORD", name: "Elite Guardian Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1809, maxAtk: 1921, attackType: "Slash", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096531, className: "GROWTH_REINFORCE_TIER2_THSWORD", name: "Elite Guardian Two-handed Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1692, maxAtk: 2538, attackType: "Slash", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096532, className: "GROWTH_REINFORCE_TIER2_STAFF", name: "Elite Guardian Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 1865, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096533, className: "GROWTH_REINFORCE_TIER2_THBOW", name: "Elite Guardian Bow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1692, maxAtk: 2538, attackType: "Arrow", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096534, className: "GROWTH_REINFORCE_TIER2_BOW", name: "Elite Guardian Crossbow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 120, equipExpGroup: "Equip", minAtk: 1809, maxAtk: 1921, attackType: "Arrow", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096535, className: "GROWTH_REINFORCE_TIER2_MACE", name: "Elite Guardian Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1846, maxAtk: 1884, mAtk: 1865, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096536, className: "GROWTH_REINFORCE_TIER2_THMACE", name: "Elite Guardian Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 120, equipExpGroup: "Equip", minAtk: 1903, maxAtk: 2327, mAtk: 2115, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096538, className: "GROWTH_REINFORCE_TIER2_SPEAR", name: "Elite Guardian Spear", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1678, maxAtk: 2052, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096539, className: "GROWTH_REINFORCE_TIER2_THSPEAR", name: "Elite Guardian Pike", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 120, equipExpGroup: "Equip", minAtk: 1481, maxAtk: 2749, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096541, className: "GROWTH_REINFORCE_TIER2_THSTAFF", name: "Elite Guardian Staff", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 120, equipExpGroup: "Equip", mAtk: 2115, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096543, className: "GROWTH_REINFORCE_TIER2_RAPIER", name: "Elite Guardian Rapier", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 15520, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 120, equipExpGroup: "Equip", minAtk: 1865, maxAtk: 1865, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096544, className: "GROWTH_REINFORCE_TIER2_CANNON", name: "Elite Guardian Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 120, equipExpGroup: "Equip", minAtk: 1058, maxAtk: 3173, attackType: "Cannon", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096545, className: "GROWTH_REINFORCE_TIER2_MUSKET", name: "Elite Guardian Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 24832, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 120, equipExpGroup: "Equip", minAtk: 1375, maxAtk: 2855, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier2" } }, +{ itemId: 11096570, className: "GROWTH_REINFORCE_TIER3_SWORD", name: "Royal Guardian Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 280, equipExpGroup: "Equip", minAtk: 8358, maxAtk: 8874, attackType: "Slash", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096571, className: "GROWTH_REINFORCE_TIER3_THSWORD", name: "Royal Guardian Two-handed Sword", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 66048, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 280, equipExpGroup: "Equip", minAtk: 7815, maxAtk: 11723, attackType: "Slash", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096572, className: "GROWTH_REINFORCE_TIER3_STAFF", name: "Royal Guardian Rod", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 280, equipExpGroup: "Equip", mAtk: 8616, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096573, className: "GROWTH_REINFORCE_TIER3_THBOW", name: "Royal Guardian Bow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 66048, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 280, equipExpGroup: "Equip", minAtk: 7815, maxAtk: 11723, attackType: "Arrow", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096574, className: "GROWTH_REINFORCE_TIER3_BOW", name: "Royal Guardian Crossbow", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 280, equipExpGroup: "Equip", minAtk: 8358, maxAtk: 8874, attackType: "Arrow", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096575, className: "GROWTH_REINFORCE_TIER3_MACE", name: "Royal Guardian Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 280, equipExpGroup: "Equip", minAtk: 8530, maxAtk: 8702, mAtk: 8616, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096576, className: "GROWTH_REINFORCE_TIER3_THMACE", name: "Royal Guardian Two-handed Mace", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 66048, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 280, equipExpGroup: "Equip", minAtk: 8792, maxAtk: 10746, mAtk: 9769, attackType: "Strike", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096578, className: "GROWTH_REINFORCE_TIER3_SPEAR", name: "Royal Guardian Spear", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 280, equipExpGroup: "Equip", minAtk: 7754, maxAtk: 9478, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096579, className: "GROWTH_REINFORCE_TIER3_THSPEAR", name: "Royal Guardian Pike", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 66048, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 280, equipExpGroup: "Equip", minAtk: 6838, maxAtk: 12700, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096581, className: "GROWTH_REINFORCE_TIER3_THSTAFF", name: "Royal Guardian Staff", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 66048, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 280, equipExpGroup: "Equip", mAtk: 9769, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096583, className: "GROWTH_REINFORCE_TIER3_RAPIER", name: "Royal Guardian Rapier", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 41280, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 280, equipExpGroup: "Equip", minAtk: 8616, maxAtk: 8616, attackType: "Aries", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096584, className: "GROWTH_REINFORCE_TIER3_CANNON", name: "Royal Guardian Cannon", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 66048, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 280, equipExpGroup: "Equip", minAtk: 4885, maxAtk: 14654, attackType: "Cannon", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11096585, className: "GROWTH_REINFORCE_TIER3_MUSKET", name: "Royal Guardian Musket", type: "Equip", group: "Weapon", weight: 0, maxStack: 1, price: 66048, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 280, equipExpGroup: "Equip", minAtk: 6350, maxAtk: 13188, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Growth_By_Reinforce/Growth_Goddess_Tier3" } }, +{ itemId: 11100027, className: "EP14_RAID_SWORD", name: "Reservoir Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 480, equipExpGroup: "Equip", minAtk: 29634, maxAtk: 31468, attackType: "Slash", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100028, className: "EP14_RAID_THSWORD", name: "Reservoir Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 118977, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 480, equipExpGroup: "Equip", minAtk: 28107, maxAtk: 42160, attackType: "Slash", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100029, className: "EP14_RAID_STAFF", name: "Reservoir Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 480, equipExpGroup: "Equip", mAtk: 30551, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100030, className: "EP14_RAID_THBOW", name: "Reservoir Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118977, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 480, equipExpGroup: "Equip", minAtk: 28107, maxAtk: 42160, attackType: "Arrow", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100031, className: "EP14_RAID_BOW", name: "Reservoir Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 480, equipExpGroup: "Equip", minAtk: 29634, maxAtk: 31468, attackType: "Arrow", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100032, className: "EP14_RAID_MACE", name: "Reservoir Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 480, equipExpGroup: "Equip", minAtk: 30245, maxAtk: 30857, mAtk: 30551, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100033, className: "EP14_RAID_THMACE", name: "Reservoir Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 118977, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 480, equipExpGroup: "Equip", minAtk: 31620, maxAtk: 38647, mAtk: 35134, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100035, className: "EP14_RAID_SPEAR", name: "Reservoir Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 480, equipExpGroup: "Equip", minAtk: 27496, maxAtk: 33606, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100036, className: "EP14_RAID_THSPEAR", name: "Reservoir Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 118977, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 480, equipExpGroup: "Equip", minAtk: 24594, maxAtk: 45674, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100038, className: "EP14_RAID_THSTAFF", name: "Reservoir Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 118977, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 480, equipExpGroup: "Equip", mAtk: 35134, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100040, className: "EP14_RAID_RAPIER", name: "Reservoir Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 74361, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 480, equipExpGroup: "Equip", minAtk: 30551, maxAtk: 30551, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100041, className: "EP14_RAID_CANNON", name: "Reservoir Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 118977, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 480, equipExpGroup: "Equip", minAtk: 17567, maxAtk: 52700, attackType: "Cannon", script: { strArg: "Goddess_Weapon_Lv480" } }, +{ itemId: 11100042, className: "EP14_RAID_MUSKET", name: "Reservoir Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 118977, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 480, equipExpGroup: "Equip", minAtk: 22837, maxAtk: 47430, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Goddess_Weapon_Lv480" } }, { itemId: 11104001, className: "guiltynelaima_bow", name: "Goddess Sister's Bow", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 35, maxAtk: 53, attackType: "Arrow", script: { strArg: "WoodCarving" } }, { itemId: 11104002, className: "guiltynelaima_sword", name: "Goddess Sister's Sword", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 1, minAtk: 36, maxAtk: 38, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "WoodCarving" } }, { itemId: 11104004, className: "guiltynelaima_staff", name: "Goddess Sister's Staff", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 1, mAtk: 44, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "WoodCarving" } }, @@ -26908,80 +26908,80 @@ { itemId: 11104061, className: "ep16poporiruta_mace", name: "Popo Wings Mace", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 400, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 1, minAtk: 45, maxAtk: 46, mAtk: 45, attackType: "Strike", script: { strArg: "WoodCarving" } }, { itemId: 11104062, className: "ep16poporiruta_bow", name: "Popo Wings Bow", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 640, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 1, minAtk: 43, maxAtk: 64, attackType: "Arrow", script: { strArg: "WoodCarving" } }, { itemId: 11104063, className: "ep16poporiruta_musket", name: "Popo Wings Musket", type: "Equip", group: "Weapon", weight: 10, maxStack: 1, price: 640, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 1, minAtk: 35, maxAtk: 72, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "WoodCarving" } }, -{ itemId: 11107000, className: "EP15_RAID_SWORD", name: "Demonic Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 500, minAtk: 41488, maxAtk: 44054, attackType: "Slash", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107001, className: "EP15_RAID_THSWORD", name: "Demonic Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 127068, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 500, minAtk: 39349, maxAtk: 59024, attackType: "Slash", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107002, className: "EP15_RAID_STAFF", name: "Demonic Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 500, mAtk: 42771, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107003, className: "EP15_RAID_THBOW", name: "Demonic Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 127068, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 500, minAtk: 39349, maxAtk: 59024, attackType: "Arrow", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107004, className: "EP15_RAID_BOW", name: "Demonic Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 500, minAtk: 41488, maxAtk: 44054, attackType: "Arrow", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107005, className: "EP15_RAID_MACE", name: "Demonic Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 500, minAtk: 42343, maxAtk: 43199, mAtk: 42771, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107006, className: "EP15_RAID_THMACE", name: "Demonic Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 127068, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 500, minAtk: 44268, maxAtk: 54105, mAtk: 49187, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107008, className: "EP15_RAID_SPEAR", name: "Demonic Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 500, minAtk: 38494, maxAtk: 47048, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107009, className: "EP15_RAID_THSPEAR", name: "Demonic Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 127068, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 500, minAtk: 34431, maxAtk: 63943, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107011, className: "EP15_RAID_THSTAFF", name: "Demonic Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 127068, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 500, mAtk: 49187, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107013, className: "EP15_RAID_RAPIER", name: "Demonic Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 500, minAtk: 42771, maxAtk: 42771, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107014, className: "EP15_RAID_CANNON", name: "Demonic Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 127068, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 500, minAtk: 24593, maxAtk: 73780, attackType: "Cannon", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107015, className: "EP15_RAID_MUSKET", name: "Demonic Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 127068, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 500, minAtk: 31971, maxAtk: 66402, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Goddess_Weapon_Lv500" } }, -{ itemId: 11107029, className: "EP16_RAID_SWORD", name: "Black Revelation Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 520, minAtk: 49788, maxAtk: 52868, attackType: "Slash", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107030, className: "EP16_RAID_THSWORD", name: "Black Revelation Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 127766, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 520, minAtk: 47222, maxAtk: 70833, attackType: "Slash", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107031, className: "EP16_RAID_STAFF", name: "Black Revelation Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 520, mAtk: 51328, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107032, className: "EP16_RAID_THBOW", name: "Black Revelation Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 127766, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 520, minAtk: 47222, maxAtk: 70833, attackType: "Arrow", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107033, className: "EP16_RAID_BOW", name: "Black Revelation Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 520, minAtk: 49788, maxAtk: 52868, attackType: "Arrow", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107034, className: "EP16_RAID_MACE", name: "Black Revelation Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 520, minAtk: 50815, maxAtk: 51841, mAtk: 51328, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107035, className: "EP16_RAID_THMACE", name: "Black Revelation Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 127766, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 520, minAtk: 53124, maxAtk: 64930, mAtk: 59027, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107037, className: "EP16_RAID_SPEAR", name: "Black Revelation Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 520, minAtk: 46195, maxAtk: 56461, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107038, className: "EP16_RAID_THSPEAR", name: "Black Revelation Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 127766, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 520, minAtk: 41319, maxAtk: 76735, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107040, className: "EP16_RAID_THSTAFF", name: "Black Revelation Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 127766, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 520, mAtk: 59027, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107042, className: "EP16_RAID_RAPIER", name: "Black Revelation Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 520, minAtk: 51328, maxAtk: 51328, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107043, className: "EP16_RAID_CANNON", name: "Black Revelation Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 127766, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 520, minAtk: 29514, maxAtk: 88541, attackType: "Cannon", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11107044, className: "EP16_RAID_MUSKET", name: "Black Revelation Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 127766, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 520, minAtk: 38368, maxAtk: 79687, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Goddess_Weapon_Lv520" } }, -{ itemId: 11109000, className: "TSW02_101_16", name: "[Lada] Potentia", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 127068, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 500, minAtk: 5405, maxAtk: 8108, attackType: "Slash", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109001, className: "TSW02_102_16", name: "[Lada] Temsus Flamberge", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 127068, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 500, minAtk: 5405, maxAtk: 8108, attackType: "Slash", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109002, className: "TSW02_103_16", name: "[Lada] Didel Colossus", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 127068, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 500, minAtk: 5405, maxAtk: 8108, attackType: "Slash", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109003, className: "TSF02_101_16", name: "[Lada] Melinas Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 127068, sellPrice: 1388, equipType1: "THStaff", equipType2: "Staff", minLevel: 500, mAtk: 6757, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109004, className: "TSF02_102_16", name: "[Lada] Magi Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 127068, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 500, mAtk: 6757, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109005, className: "TSF02_103_16", name: "[Lada] Ludas Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 127068, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 500, mAtk: 6757, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109006, className: "MAC02_101_16", name: "[Lada] Five Hammer", type: "Equip", group: "Weapon", weight: 55, maxStack: 1, price: 79418, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 500, minAtk: 5763, maxAtk: 5879, mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109007, className: "MAC02_102_16", name: "[Lada] Spiked Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 79418, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 500, minAtk: 5763, maxAtk: 5879, mAtk: 5821, attackType: "Aries", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109008, className: "MAC02_103_16", name: "[Lada] Shield Breaker", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 79418, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 500, minAtk: 5763, maxAtk: 5879, mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109012, className: "TBW02_101_16", name: "[Lada] Seeker", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 127068, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 500, minAtk: 5405, maxAtk: 8108, attackType: "Arrow", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109013, className: "TBW02_102_16", name: "[Lada] Iron Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 127068, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 500, minAtk: 5405, maxAtk: 8108, attackType: "Arrow", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109014, className: "TBW02_103_16", name: "[Lada] Hawk Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 127068, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 500, minAtk: 5405, maxAtk: 8108, attackType: "Arrow", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109015, className: "STF02_102_16", name: "[Lada] Ice Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79418, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 500, mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109016, className: "STF02_103_16", name: "[Lada] Fire Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 79418, sellPrice: 2673, equipType1: "Staff", equipType2: "Staff", minLevel: 500, mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109017, className: "STF02_104_16", name: "[Lada] Vasia Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 79418, sellPrice: 2730, equipType1: "Staff", equipType2: "Staff", minLevel: 500, mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109018, className: "STF02_105_16", name: "[Lada] Magic Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79418, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 500, mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109019, className: "SWD02_102_16", name: "[Lada] Flonas Sabre", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 79418, sellPrice: 2759, equipType1: "Sword", equipType2: "Sword", minLevel: 500, minAtk: 5647, maxAtk: 5996, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109020, className: "SWD02_104_16", name: "[Lada] Golden Falchion", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 79418, sellPrice: 1746, equipType1: "Sword", equipType2: "Sword", minLevel: 500, minAtk: 5647, maxAtk: 5996, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109021, className: "SWD02_105_16", name: "[Lada] Steel Falchion", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79418, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 500, minAtk: 5647, maxAtk: 5996, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109022, className: "SWD02_106_16", name: "[Lada] Silver Falchion", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 79418, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 500, minAtk: 5647, maxAtk: 5996, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109032, className: "STF02_106_16", name: "[Lada] Grynas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 79418, sellPrice: 4304, equipType1: "Staff", equipType2: "Staff", minLevel: 500, mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109033, className: "STF02_107_16", name: "[Lada] Cheminis Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 79418, sellPrice: 1746, equipType1: "Staff", equipType2: "Staff", minLevel: 500, mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109034, className: "STF02_108_16", name: "[Lada] Arch Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 79418, sellPrice: 4335, equipType1: "Staff", equipType2: "Staff", minLevel: 500, mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109053, className: "TSW02_104_16", name: "[Jurate] Collecture", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 127766, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 520, minAtk: 5620, maxAtk: 8430, attackType: "Slash", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109054, className: "TSW02_105_16", name: "[Jurate] Hogma Greatsword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 127766, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 520, minAtk: 5620, maxAtk: 8430, attackType: "Slash", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109055, className: "TSW02_106_16", name: "[Jurate] Cheminis Bastard Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 127766, sellPrice: 2794, equipType1: "THSword", equipType2: "Sword", minLevel: 520, minAtk: 5620, maxAtk: 8430, attackType: "Slash", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109056, className: "TSF02_104_16", name: "[Jurate] Saltas Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 127766, sellPrice: 3322, equipType1: "THStaff", equipType2: "Staff", minLevel: 520, mAtk: 7025, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109057, className: "TSF02_105_16", name: "[Jurate] Cheminis Staff", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 127766, sellPrice: 2794, equipType1: "THStaff", equipType2: "Staff", minLevel: 520, mAtk: 7025, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109058, className: "TSF02_106_16", name: "[Jurate] Karsto Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 127766, sellPrice: 4368, equipType1: "THStaff", equipType2: "Staff", minLevel: 520, mAtk: 7025, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109059, className: "MAC02_104_16", name: "[Jurate] Skull Crusher", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 79854, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 520, minAtk: 5992, maxAtk: 6113, mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109060, className: "MAC02_105_16", name: "[Jurate] Cheminis Maul", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 79854, sellPrice: 1746, equipType1: "Mace", equipType2: "Mace", minLevel: 520, minAtk: 5992, maxAtk: 6113, mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109061, className: "MAC02_106_16", name: "[Jurate] Mauros Club", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 79854, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 520, minAtk: 5992, maxAtk: 6113, mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109065, className: "TBW02_104_16", name: "[Jurate] Cheminis Bow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 127766, sellPrice: 2794, equipType1: "THBow", equipType2: "Bow", minLevel: 520, minAtk: 5620, maxAtk: 8430, attackType: "Arrow", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109066, className: "TBW02_105_16", name: "[Jurate] Hunting Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 127766, sellPrice: 2842, equipType1: "THBow", equipType2: "Bow", minLevel: 520, minAtk: 5620, maxAtk: 8430, attackType: "Arrow", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109067, className: "TBW02_106_16", name: "[Jurate] Maker Bow", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 127766, sellPrice: 3322, equipType1: "THBow", equipType2: "Bow", minLevel: 520, minAtk: 5620, maxAtk: 8430, attackType: "Arrow", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109068, className: "STF02_109_16", name: "[Jurate] Imperni Road", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 2702, equipType1: "Staff", equipType2: "Staff", minLevel: 520, mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109069, className: "TSF02_107_16", name: "[Jurate] Expecta Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 127766, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 520, mAtk: 7025, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109070, className: "STF02_110_16", name: "[Jurate] Soldier's Long Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 79854, sellPrice: 106, equipType1: "Staff", equipType2: "Staff", minLevel: 520, mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109071, className: "STF02_111_16", name: "[Jurate] Smith Road", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 79854, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 520, mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109072, className: "TSF02_108_16", name: "[Jurate] Black Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 127766, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 520, mAtk: 7025, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109073, className: "STF02_112_16", name: "[Jurate] Clavis Road", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 520, mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109074, className: "SWD02_107_16", name: "[Jurate] Mandrapick", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 79854, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 520, minAtk: 5871, maxAtk: 6234, attackType: "Slash", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109075, className: "SWD02_108_16", name: "[Jurate] Wizard Blade", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 3546, equipType1: "Sword", equipType2: "Sword", minLevel: 520, minAtk: 5871, maxAtk: 6234, attackType: "Slash", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109076, className: "TSW02_107_16", name: "[Jurate] Primaluce", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 127766, sellPrice: 4368, equipType1: "THSword", equipType2: "Sword", minLevel: 520, minAtk: 5620, maxAtk: 8430, attackType: "Slash", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109077, className: "SWD02_109_16", name: "[Jurate] Cheminis Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 79854, sellPrice: 1746, equipType1: "Sword", equipType2: "Sword", minLevel: 520, minAtk: 5871, maxAtk: 6234, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109078, className: "SWD02_110_16", name: "[Jurate] Austas", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 6501, equipType1: "Sword", equipType2: "Sword", minLevel: 520, minAtk: 5871, maxAtk: 6234, attackType: "Slash", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109079, className: "TSW02_108_16", name: "[Jurate] Kindzal", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 127766, sellPrice: 4414, equipType1: "THSword", equipType2: "Sword", minLevel: 520, minAtk: 5620, maxAtk: 8430, attackType: "Slash", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109089, className: "STF02_113_16", name: "[Jurate] Dio Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 728, equipType1: "Staff", equipType2: "Staff", minLevel: 520, mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109090, className: "STF02_114_16", name: "[Jurate] Thresh Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 1716, equipType1: "Staff", equipType2: "Staff", minLevel: 520, mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, -{ itemId: 11109091, className: "STF02_115_16", name: "[Jurate] Sestas Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 3104, equipType1: "Staff", equipType2: "Staff", minLevel: 520, mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11107000, className: "EP15_RAID_SWORD", name: "Demonic Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 500, equipExpGroup: "Equip", minAtk: 41488, maxAtk: 44054, attackType: "Slash", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107001, className: "EP15_RAID_THSWORD", name: "Demonic Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 127068, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 500, equipExpGroup: "Equip", minAtk: 39349, maxAtk: 59024, attackType: "Slash", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107002, className: "EP15_RAID_STAFF", name: "Demonic Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 500, equipExpGroup: "Equip", mAtk: 42771, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107003, className: "EP15_RAID_THBOW", name: "Demonic Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 127068, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 500, equipExpGroup: "Equip", minAtk: 39349, maxAtk: 59024, attackType: "Arrow", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107004, className: "EP15_RAID_BOW", name: "Demonic Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 500, equipExpGroup: "Equip", minAtk: 41488, maxAtk: 44054, attackType: "Arrow", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107005, className: "EP15_RAID_MACE", name: "Demonic Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 500, equipExpGroup: "Equip", minAtk: 42343, maxAtk: 43199, mAtk: 42771, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107006, className: "EP15_RAID_THMACE", name: "Demonic Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 127068, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 500, equipExpGroup: "Equip", minAtk: 44268, maxAtk: 54105, mAtk: 49187, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107008, className: "EP15_RAID_SPEAR", name: "Demonic Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 500, equipExpGroup: "Equip", minAtk: 38494, maxAtk: 47048, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107009, className: "EP15_RAID_THSPEAR", name: "Demonic Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 127068, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 500, equipExpGroup: "Equip", minAtk: 34431, maxAtk: 63943, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107011, className: "EP15_RAID_THSTAFF", name: "Demonic Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 127068, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 500, equipExpGroup: "Equip", mAtk: 49187, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107013, className: "EP15_RAID_RAPIER", name: "Demonic Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79418, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 500, equipExpGroup: "Equip", minAtk: 42771, maxAtk: 42771, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107014, className: "EP15_RAID_CANNON", name: "Demonic Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 127068, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 500, equipExpGroup: "Equip", minAtk: 24593, maxAtk: 73780, attackType: "Cannon", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107015, className: "EP15_RAID_MUSKET", name: "Demonic Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 127068, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 500, equipExpGroup: "Equip", minAtk: 31971, maxAtk: 66402, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Goddess_Weapon_Lv500" } }, +{ itemId: 11107029, className: "EP16_RAID_SWORD", name: "Black Revelation Sword", type: "Equip", group: "Weapon", weight: 170, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Sword", equipType2: "Sword", minLevel: 520, equipExpGroup: "Equip", minAtk: 49788, maxAtk: 52868, attackType: "Slash", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107030, className: "EP16_RAID_THSWORD", name: "Black Revelation Two-handed Sword", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 127766, sellPrice: 0, equipType1: "THSword", equipType2: "Sword", minLevel: 520, equipExpGroup: "Equip", minAtk: 47222, maxAtk: 70833, attackType: "Slash", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107031, className: "EP16_RAID_STAFF", name: "Black Revelation Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Staff", equipType2: "Staff", minLevel: 520, equipExpGroup: "Equip", mAtk: 51328, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107032, className: "EP16_RAID_THBOW", name: "Black Revelation Bow", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 127766, sellPrice: 0, equipType1: "THBow", equipType2: "Bow", minLevel: 520, equipExpGroup: "Equip", minAtk: 47222, maxAtk: 70833, attackType: "Arrow", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107033, className: "EP16_RAID_BOW", name: "Black Revelation Crossbow", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Bow", equipType2: "Bow", minLevel: 520, equipExpGroup: "Equip", minAtk: 49788, maxAtk: 52868, attackType: "Arrow", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107034, className: "EP16_RAID_MACE", name: "Black Revelation Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Mace", equipType2: "Mace", minLevel: 520, equipExpGroup: "Equip", minAtk: 50815, maxAtk: 51841, mAtk: 51328, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107035, className: "EP16_RAID_THMACE", name: "Black Revelation Two-handed Mace", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 127766, sellPrice: 0, equipType1: "THMace", equipType2: "Mace", minLevel: 520, equipExpGroup: "Equip", minAtk: 53124, maxAtk: 64930, mAtk: 59027, attackType: "Strike", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107037, className: "EP16_RAID_SPEAR", name: "Black Revelation Spear", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Spear", equipType2: "Spear", minLevel: 520, equipExpGroup: "Equip", minAtk: 46195, maxAtk: 56461, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107038, className: "EP16_RAID_THSPEAR", name: "Black Revelation Pike", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 127766, sellPrice: 0, equipType1: "THSpear", equipType2: "Spear", minLevel: 520, equipExpGroup: "Equip", minAtk: 41319, maxAtk: 76735, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107040, className: "EP16_RAID_THSTAFF", name: "Black Revelation Staff", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 127766, sellPrice: 0, equipType1: "THStaff", equipType2: "Staff", minLevel: 520, equipExpGroup: "Equip", mAtk: 59027, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107042, className: "EP16_RAID_RAPIER", name: "Black Revelation Rapier", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 0, equipType1: "Rapier", equipType2: "Sword", minLevel: 520, equipExpGroup: "Equip", minAtk: 51328, maxAtk: 51328, attackType: "Aries", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107043, className: "EP16_RAID_CANNON", name: "Black Revelation Cannon", type: "Equip", group: "Weapon", weight: 100, maxStack: 1, price: 127766, sellPrice: 0, equipType1: "Cannon", equipType2: "Gun", minLevel: 520, equipExpGroup: "Equip", minAtk: 29514, maxAtk: 88541, attackType: "Cannon", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11107044, className: "EP16_RAID_MUSKET", name: "Black Revelation Musket", type: "Equip", group: "Weapon", weight: 125, maxStack: 1, price: 127766, sellPrice: 0, equipType1: "Musket", equipType2: "Gun", minLevel: 520, equipExpGroup: "Equip", minAtk: 38368, maxAtk: 79687, attackType: "Gun", leftHandSkill: "Common_MusketAttack", script: { strArg: "Goddess_Weapon_Lv520" } }, +{ itemId: 11109000, className: "TSW02_101_16", name: "[Lada] Potentia", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 127068, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 500, equipExpGroup: "Equip", minAtk: 5405, maxAtk: 8108, attackType: "Slash", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109001, className: "TSW02_102_16", name: "[Lada] Temsus Flamberge", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 127068, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 500, equipExpGroup: "Equip", minAtk: 5405, maxAtk: 8108, attackType: "Slash", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109002, className: "TSW02_103_16", name: "[Lada] Didel Colossus", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 127068, sellPrice: 2419, equipType1: "THSword", equipType2: "Sword", minLevel: 500, equipExpGroup: "Equip", minAtk: 5405, maxAtk: 8108, attackType: "Slash", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109003, className: "TSF02_101_16", name: "[Lada] Melinas Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 127068, sellPrice: 1388, equipType1: "THStaff", equipType2: "Staff", minLevel: 500, equipExpGroup: "Equip", mAtk: 6757, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109004, className: "TSF02_102_16", name: "[Lada] Magi Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 127068, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 500, equipExpGroup: "Equip", mAtk: 6757, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109005, className: "TSF02_103_16", name: "[Lada] Ludas Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 127068, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 500, equipExpGroup: "Equip", mAtk: 6757, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109006, className: "MAC02_101_16", name: "[Lada] Five Hammer", type: "Equip", group: "Weapon", weight: 55, maxStack: 1, price: 79418, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 500, equipExpGroup: "Equip", minAtk: 5763, maxAtk: 5879, mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109007, className: "MAC02_102_16", name: "[Lada] Spiked Mace", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 79418, sellPrice: 1512, equipType1: "Mace", equipType2: "Mace", minLevel: 500, equipExpGroup: "Equip", minAtk: 5763, maxAtk: 5879, mAtk: 5821, attackType: "Aries", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109008, className: "MAC02_103_16", name: "[Lada] Shield Breaker", type: "Equip", group: "Weapon", weight: 190, maxStack: 1, price: 79418, sellPrice: 2702, equipType1: "Mace", equipType2: "Mace", minLevel: 500, equipExpGroup: "Equip", minAtk: 5763, maxAtk: 5879, mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109012, className: "TBW02_101_16", name: "[Lada] Seeker", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 127068, sellPrice: 921, equipType1: "THBow", equipType2: "Bow", minLevel: 500, equipExpGroup: "Equip", minAtk: 5405, maxAtk: 8108, attackType: "Arrow", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109013, className: "TBW02_102_16", name: "[Lada] Iron Bow", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 127068, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 500, equipExpGroup: "Equip", minAtk: 5405, maxAtk: 8108, attackType: "Arrow", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109014, className: "TBW02_103_16", name: "[Lada] Hawk Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 127068, sellPrice: 2419, equipType1: "THBow", equipType2: "Bow", minLevel: 500, equipExpGroup: "Equip", minAtk: 5405, maxAtk: 8108, attackType: "Arrow", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109015, className: "STF02_102_16", name: "[Lada] Ice Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79418, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 500, equipExpGroup: "Equip", mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109016, className: "STF02_103_16", name: "[Lada] Fire Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 79418, sellPrice: 2673, equipType1: "Staff", equipType2: "Staff", minLevel: 500, equipExpGroup: "Equip", mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109017, className: "STF02_104_16", name: "[Lada] Vasia Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 79418, sellPrice: 2730, equipType1: "Staff", equipType2: "Staff", minLevel: 500, equipExpGroup: "Equip", mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109018, className: "STF02_105_16", name: "[Lada] Magic Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79418, sellPrice: 1512, equipType1: "Staff", equipType2: "Staff", minLevel: 500, equipExpGroup: "Equip", mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109019, className: "SWD02_102_16", name: "[Lada] Flonas Sabre", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 79418, sellPrice: 2759, equipType1: "Sword", equipType2: "Sword", minLevel: 500, equipExpGroup: "Equip", minAtk: 5647, maxAtk: 5996, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109020, className: "SWD02_104_16", name: "[Lada] Golden Falchion", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 79418, sellPrice: 1746, equipType1: "Sword", equipType2: "Sword", minLevel: 500, equipExpGroup: "Equip", minAtk: 5647, maxAtk: 5996, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109021, className: "SWD02_105_16", name: "[Lada] Steel Falchion", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79418, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 500, equipExpGroup: "Equip", minAtk: 5647, maxAtk: 5996, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109022, className: "SWD02_106_16", name: "[Lada] Silver Falchion", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 79418, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 500, equipExpGroup: "Equip", minAtk: 5647, maxAtk: 5996, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109032, className: "STF02_106_16", name: "[Lada] Grynas Rod", type: "Equip", group: "Weapon", weight: 150, maxStack: 1, price: 79418, sellPrice: 4304, equipType1: "Staff", equipType2: "Staff", minLevel: 500, equipExpGroup: "Equip", mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109033, className: "STF02_107_16", name: "[Lada] Cheminis Rod", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 79418, sellPrice: 1746, equipType1: "Staff", equipType2: "Staff", minLevel: 500, equipExpGroup: "Equip", mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109034, className: "STF02_108_16", name: "[Lada] Arch Rod", type: "Equip", group: "Weapon", weight: 130, maxStack: 1, price: 79418, sellPrice: 4335, equipType1: "Staff", equipType2: "Staff", minLevel: 500, equipExpGroup: "Equip", mAtk: 5821, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109053, className: "TSW02_104_16", name: "[Jurate] Collecture", type: "Equip", group: "Weapon", weight: 280, maxStack: 1, price: 127766, sellPrice: 921, equipType1: "THSword", equipType2: "Sword", minLevel: 520, equipExpGroup: "Equip", minAtk: 5620, maxAtk: 8430, attackType: "Slash", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109054, className: "TSW02_105_16", name: "[Jurate] Hogma Greatsword", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 127766, sellPrice: 4323, equipType1: "THSword", equipType2: "Sword", minLevel: 520, equipExpGroup: "Equip", minAtk: 5620, maxAtk: 8430, attackType: "Slash", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109055, className: "TSW02_106_16", name: "[Jurate] Cheminis Bastard Sword", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 127766, sellPrice: 2794, equipType1: "THSword", equipType2: "Sword", minLevel: 520, equipExpGroup: "Equip", minAtk: 5620, maxAtk: 8430, attackType: "Slash", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109056, className: "TSF02_104_16", name: "[Jurate] Saltas Staff", type: "Equip", group: "Weapon", weight: 220, maxStack: 1, price: 127766, sellPrice: 3322, equipType1: "THStaff", equipType2: "Staff", minLevel: 520, equipExpGroup: "Equip", mAtk: 7025, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109057, className: "TSF02_105_16", name: "[Jurate] Cheminis Staff", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 127766, sellPrice: 2794, equipType1: "THStaff", equipType2: "Staff", minLevel: 520, equipExpGroup: "Equip", mAtk: 7025, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109058, className: "TSF02_106_16", name: "[Jurate] Karsto Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 127766, sellPrice: 4368, equipType1: "THStaff", equipType2: "Staff", minLevel: 520, equipExpGroup: "Equip", mAtk: 7025, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109059, className: "MAC02_104_16", name: "[Jurate] Skull Crusher", type: "Equip", group: "Weapon", weight: 210, maxStack: 1, price: 79854, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 520, equipExpGroup: "Equip", minAtk: 5992, maxAtk: 6113, mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109060, className: "MAC02_105_16", name: "[Jurate] Cheminis Maul", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 79854, sellPrice: 1746, equipType1: "Mace", equipType2: "Mace", minLevel: 520, equipExpGroup: "Equip", minAtk: 5992, maxAtk: 6113, mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109061, className: "MAC02_106_16", name: "[Jurate] Mauros Club", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 79854, sellPrice: 2730, equipType1: "Mace", equipType2: "Mace", minLevel: 520, equipExpGroup: "Equip", minAtk: 5992, maxAtk: 6113, mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109065, className: "TBW02_104_16", name: "[Jurate] Cheminis Bow", type: "Equip", group: "Weapon", weight: 160, maxStack: 1, price: 127766, sellPrice: 2794, equipType1: "THBow", equipType2: "Bow", minLevel: 520, equipExpGroup: "Equip", minAtk: 5620, maxAtk: 8430, attackType: "Arrow", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109066, className: "TBW02_105_16", name: "[Jurate] Hunting Bow", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 127766, sellPrice: 2842, equipType1: "THBow", equipType2: "Bow", minLevel: 520, equipExpGroup: "Equip", minAtk: 5620, maxAtk: 8430, attackType: "Arrow", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109067, className: "TBW02_106_16", name: "[Jurate] Maker Bow", type: "Equip", group: "Weapon", weight: 240, maxStack: 1, price: 127766, sellPrice: 3322, equipType1: "THBow", equipType2: "Bow", minLevel: 520, equipExpGroup: "Equip", minAtk: 5620, maxAtk: 8430, attackType: "Arrow", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109068, className: "STF02_109_16", name: "[Jurate] Imperni Road", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 2702, equipType1: "Staff", equipType2: "Staff", minLevel: 520, equipExpGroup: "Equip", mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109069, className: "TSF02_107_16", name: "[Jurate] Expecta Staff", type: "Equip", group: "Weapon", weight: 200, maxStack: 1, price: 127766, sellPrice: 2419, equipType1: "THStaff", equipType2: "Staff", minLevel: 520, equipExpGroup: "Equip", mAtk: 7025, attackType: "Strike", leftHandSkill: "Common_StaffAttack", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109070, className: "STF02_110_16", name: "[Jurate] Soldier's Long Rod", type: "Equip", group: "Weapon", weight: 110, maxStack: 1, price: 79854, sellPrice: 106, equipType1: "Staff", equipType2: "Staff", minLevel: 520, equipExpGroup: "Equip", mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109071, className: "STF02_111_16", name: "[Jurate] Smith Road", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 79854, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 520, equipExpGroup: "Equip", mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109072, className: "TSF02_108_16", name: "[Jurate] Black Staff", type: "Equip", group: "Weapon", weight: 180, maxStack: 1, price: 127766, sellPrice: 6936, equipType1: "THStaff", equipType2: "Staff", minLevel: 520, equipExpGroup: "Equip", mAtk: 7025, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109073, className: "STF02_112_16", name: "[Jurate] Clavis Road", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 576, equipType1: "Staff", equipType2: "Staff", minLevel: 520, equipExpGroup: "Equip", mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109074, className: "SWD02_107_16", name: "[Jurate] Mandrapick", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 79854, sellPrice: 1512, equipType1: "Sword", equipType2: "Sword", minLevel: 520, equipExpGroup: "Equip", minAtk: 5871, maxAtk: 6234, attackType: "Slash", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109075, className: "SWD02_108_16", name: "[Jurate] Wizard Blade", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 3546, equipType1: "Sword", equipType2: "Sword", minLevel: 520, equipExpGroup: "Equip", minAtk: 5871, maxAtk: 6234, attackType: "Slash", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109076, className: "TSW02_107_16", name: "[Jurate] Primaluce", type: "Equip", group: "Weapon", weight: 230, maxStack: 1, price: 127766, sellPrice: 4368, equipType1: "THSword", equipType2: "Sword", minLevel: 520, equipExpGroup: "Equip", minAtk: 5620, maxAtk: 8430, attackType: "Slash", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109077, className: "SWD02_109_16", name: "[Jurate] Cheminis Sword", type: "Equip", group: "Weapon", weight: 120, maxStack: 1, price: 79854, sellPrice: 1746, equipType1: "Sword", equipType2: "Sword", minLevel: 520, equipExpGroup: "Equip", minAtk: 5871, maxAtk: 6234, attackType: "Slash", leftHandSkill: "Sword_Attack", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109078, className: "SWD02_110_16", name: "[Jurate] Austas", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 6501, equipType1: "Sword", equipType2: "Sword", minLevel: 520, equipExpGroup: "Equip", minAtk: 5871, maxAtk: 6234, attackType: "Slash", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109079, className: "TSW02_108_16", name: "[Jurate] Kindzal", type: "Equip", group: "Weapon", weight: 260, maxStack: 1, price: 127766, sellPrice: 4414, equipType1: "THSword", equipType2: "Sword", minLevel: 520, equipExpGroup: "Equip", minAtk: 5620, maxAtk: 8430, attackType: "Slash", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109089, className: "STF02_113_16", name: "[Jurate] Dio Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 728, equipType1: "Staff", equipType2: "Staff", minLevel: 520, equipExpGroup: "Equip", mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109090, className: "STF02_114_16", name: "[Jurate] Thresh Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 1716, equipType1: "Staff", equipType2: "Staff", minLevel: 520, equipExpGroup: "Equip", mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, +{ itemId: 11109091, className: "STF02_115_16", name: "[Jurate] Sestas Rod", type: "Equip", group: "Weapon", weight: 140, maxStack: 1, price: 79854, sellPrice: 3104, equipType1: "Staff", equipType2: "Staff", minLevel: 520, equipExpGroup: "Equip", mAtk: 6052, attackType: "Strike", script: { strArg: "Moru_goddess" } }, ] diff --git a/system/scripts/zone/core/normal_tx.cs b/system/scripts/zone/core/normal_tx.cs index 8bafcddfe..e048febcb 100644 --- a/system/scripts/zone/core/normal_tx.cs +++ b/system/scripts/zone/core/normal_tx.cs @@ -6,11 +6,13 @@ using System.Linq; using Melia.Shared.Game.Const; +using Melia.Shared.L10N; using Melia.Zone; using Melia.Zone.Network; using Melia.Zone.Scripting; using Melia.Zone.Skills; using Melia.Zone.World.Actors.Characters; +using Melia.Zone.World.Actors.Characters.Components; using Yggdrasil.Logging; public class NormalTxFunctionsScript : GeneralScript @@ -185,4 +187,87 @@ public NormalTxResult SCR_TX_SKILL_UP(Character character, int[] numArgs) return NormalTxResult.Okay; } + + [ScriptableFunction] + public NormalTxResult SCR_TX_EQUIP_CARD_SLOT(Character character, string strArg) + { + var argList = strArg.Split('#'); + if (argList.Length < 2) + { + Log.Warning("SCR_TX_EQUIP_CARD_SLOT: User '{0}' failed to parse at least 2 items {1}.", character.Username, argList); + return NormalTxResult.Fail; + } + if (!int.TryParse(argList[0], out var slot)) + { + Log.Warning("SCR_TX_EQUIP_CARD_SLOT: User '{0}' failed to parse slot {1}.", character.Username, argList[0]); + return NormalTxResult.Fail; + } + // Lua to C# 0 -> 1 based array offset + slot += 1; + if (!long.TryParse(argList[1], out var itemWorldId)) + { + Log.Warning("SCR_TX_EQUIP_CARD_SLOT: User '{0}' failed to parse slot {1}.", character.Username, argList[1]); + return NormalTxResult.Fail; + } + + if (!character.Inventory.TryGetItem(itemWorldId, out var card)) + { + Log.Warning("SCR_TX_EQUIP_CARD_SLOT: User '{0}' no card found {1}.", character.Username, argList[0]); + return NormalTxResult.Fail; + } + + if (character.Inventory.EquipCard(slot, itemWorldId) != InventoryResult.Success) + { + Log.Warning("SCR_TX_EQUIP_CARD_SLOT: User '{0}' failed equip card {1} into slot {2}.", character.Username, itemWorldId, slot); + return NormalTxResult.Fail; + } + + // TODO: Possibly Process Equip Card Use Type "Always" here. + + // Not too sure if officially they cheat by just re-creating this item on login similar to what the gems do. + // Currently we save the items to their own table. + character.Etc.Properties.SetFloat($"EquipCardID_Slot{slot}", card.Id); + character.Etc.Properties.SetFloat($"EquipCardLv_Slot{slot}", card.Properties.GetFloat(PropertyName.CardLevel)); + character.Etc.Properties.SetFloat($"EquipCardExp_Slot{slot}", card.Properties.GetFloat(PropertyName.ItemExp)); + character.Etc.Properties.SetFloat($"EquipCardBelongingCount_Slot{slot}", card.Properties.GetFloat(PropertyName.BelongingCount)); + + var clientScript = string.Format($"_CARD_SLOT_EQUIP('{slot}', '{card.Id}', '{card.Properties.GetFloat(PropertyName.CardLevel, 0)}', '{card.Properties.GetFloat(PropertyName.ItemExp)}')"); + Send.ZC_EXEC_CLIENT_SCP(character.Connection, clientScript); + + return NormalTxResult.Okay; + } + + [ScriptableFunction] + public NormalTxResult SCR_TX_UNEQUIP_CARD_SLOT(Character character, int[] numArgs) + { + if (numArgs.Length < 2) + return NormalTxResult.Fail; + // C# to Lua (0 based to 1 based array) + var slot = numArgs[0] + 1; + + if (!character.Inventory.TryGetCard(slot, out var card)) + { + Log.Warning("SCR_TX_UNEQUIP_CARD_SLOT: User '{0}' failed to find item from slot {1}.", character.Username, slot); + return NormalTxResult.Fail; + } + + if (character.Inventory.UnequipCard(slot) != InventoryResult.Success) + { + Log.Warning("SCR_TX_UNEQUIP_CARD_SLOT: User '{0}' failed to unequip item from slot {1}.", character.Username, slot); + return NormalTxResult.Fail; + } + + // TODO: Possibly Process Unequip Card Use Type "Always" here. + + // Same as SCR_TX_EQUIP_CARD_SLOT why this is here, I'm not too sure if this is needed. + character.Etc.Properties.SetFloat($"EquipCardID_Slot{slot}", 0); + character.Etc.Properties.SetFloat($"EquipCardLv_Slot{slot}", 0); + character.Etc.Properties.SetFloat($"EquipCardExp_Slot{slot}", 0); + character.Etc.Properties.SetFloat($"EquipCardBelongingCount_Slot{slot}", 0); + + var clientScript = string.Format($"_CARD_SLOT_REMOVE('{slot}', '{card.Data.CardGroup}')"); + Send.ZC_EXEC_CLIENT_SCP(character.Connection, clientScript); + + return NormalTxResult.Okay; + } } diff --git a/system/scripts/zone/custom/client/concise_sysmenu/002.lua b/system/scripts/zone/custom/client/concise_sysmenu/002.lua index 95d380371..7e9ea6ba0 100644 --- a/system/scripts/zone/custom/client/concise_sysmenu/002.lua +++ b/system/scripts/zone/custom/client/concise_sysmenu/002.lua @@ -1,6 +1,6 @@ --Melia.Ui.RestMenu.RemoveButton("REQUEST_OPEN_JORUNAL_CRAFT") --Melia.Ui.RestMenu.RemoveButton("TOGGLE_GEM_REINFORCE") -Melia.Ui.RestMenu.RemoveButton("TOGGLE_CARD_REINFORCE") +--Melia.Ui.RestMenu.RemoveButton("TOGGLE_CARD_REINFORCE") Melia.Ui.RestMenu.RemoveButton("TOGGLE_LEGEND_CARD_REINFORCE") Melia.Ui.RestMenu.RemoveButton("OPEN_ENCHENCT_CRAFT") Melia.Ui.RestMenu.RemoveButton("OPEN_MAGIC_SKL_UI") diff --git a/system/scripts/zone/items/exp_cards.cs b/system/scripts/zone/items/exp_cards.cs index cba616450..5ecac7ac3 100644 --- a/system/scripts/zone/items/exp_cards.cs +++ b/system/scripts/zone/items/exp_cards.cs @@ -5,10 +5,14 @@ //--------------------------------------------------------------------------- using System; +using System.Collections.Generic; +using System.Linq; using Melia.Shared.Game.Const; +using Melia.Zone; using Melia.Zone.Network; using Melia.Zone.Scripting; using Melia.Zone.World.Actors.Characters; +using Melia.Zone.World.Actors.Characters.Components; using Melia.Zone.World.Items; public class ExpCardScripts : GeneralScript @@ -53,4 +57,91 @@ public DialogTxResult MULTIPLE_USE_XPCARD(Character character, DialogTxArgs args return DialogTxResult.Okay; } + + [ScriptableFunction] + public static DialogTxResult SCR_ITEM_EXP_UP(Character character, DialogTxArgs args) + { + if (args.TxItems.Length < 2) + { + Send.ZC_ADDON_MSG(character, AddonMessage.ITEM_EXP_STOP); + return DialogTxResult.Fail; + } + + if (!character.IsSitting) + { + character.SystemMessage("AvailableOnlyWhileResting"); + return DialogTxResult.Fail; + } + + var targetItem = args.TxItems[0].Item; + var tgtGroup = targetItem.Data.Group; + var tgtEquipXpGroup = targetItem.Data.EquipExpGroup; + + if (tgtEquipXpGroup == EquipExpGroup.None) + { + Send.ZC_ADDON_MSG(character, AddonMessage.ITEM_EXP_STOP); + return DialogTxResult.Fail; + } + + foreach (var txItem in args.TxItems) + { + if (txItem.Item.IsExpired) + { + character.SystemMessage("CannotUseLifeTimeOverItem"); + return DialogTxResult.Fail; + } + } + + var synthesisTime = 5; + Send.ZC_ADDON_MSG(character, AddonMessage.ITEM_EXP_START, synthesisTime, ""); + Send.ZC_CANCEL_MOUSE_MOVE(character); + + if (!character.Components.TryGet(out var timeAction)) + return DialogTxResult.Fail; + + var timeActionResult = timeAction.StartAsync("ItemCraftProcess", "None", "UPGRADEGEM", TimeSpan.FromSeconds(synthesisTime)).Result; + + if (timeActionResult != TimeActionResult.Completed || args.TxItems == null || args.TxItems.Length < 2 || targetItem.IsLocked) + { + Send.ZC_ADDON_MSG(character, AddonMessage.ITEM_EXP_STOP); + return DialogTxResult.Fail; + } + + var beforeItemExp = (int)targetItem.Properties.GetFloat(PropertyName.ItemExp); + var totalPoint = 0; + + foreach (var txItem in args.TxItems.Skip(1)) + { + var materialItem = txItem.Item; + var materialItemCount = txItem.Amount; + + if (targetItem.ObjectId == materialItem.ObjectId || materialItem.IsLocked) + return DialogTxResult.Fail; + if (targetItem.IsExpired || materialItem.IsExpired) + return DialogTxResult.Fail; + + var exp = ZoneServer.Instance.Data.ItemExpDb.GetGainExp(materialItem.Data.EquipExpGroup); + totalPoint += materialItemCount * exp; + + character.Inventory.Remove(materialItem, materialItemCount, InventoryItemRemoveMsg.Given); + } + + var multiplier = 1; + var totalExp = totalPoint * multiplier; + var totalLevel = ZoneServer.Instance.Data.ItemExpDb.GetLevel(targetItem.Data.EquipExpGroup, beforeItemExp + totalExp); + + if (tgtGroup == ItemGroup.Card) + targetItem.Properties.SetFloat(PropertyName.CardLevel, totalLevel); + else if (tgtGroup == ItemGroup.Gem) + targetItem.Properties.SetFloat(PropertyName.Level, totalLevel); + + + targetItem.Properties.SetFloat(PropertyName.ItemExp, totalExp); + + Send.ZC_ADDON_MSG(character, AddonMessage.ITEM_EXPUP_END, totalPoint, multiplier.ToString()); + Send.ZC_OBJECT_PROPERTY(character.Connection, targetItem); + character.Properties.InvalidateAll(); + + return DialogTxResult.Okay; + } }