diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua
index cfeaed73..5a2c02af 100644
--- a/lua/app/common/bi_report.lua
+++ b/lua/app/common/bi_report.lua
@@ -121,6 +121,7 @@ BIReport.ITEM_GET_TYPE = {
ARENA_CHALLENGE = "ArenaChallenge",
ARENA_SETTLEMENT = "ArenaSettlement",
ARENA_GIFT = "ArenaGift",
+ COLLECTION_HERO_REWARD = "CollectionHeroReward",
}
BIReport.ADS_CLICK_TYPE = {
diff --git a/lua/app/common/data_manager.lua b/lua/app/common/data_manager.lua
index 243f3be7..5f1cbf32 100644
--- a/lua/app/common/data_manager.lua
+++ b/lua/app/common/data_manager.lua
@@ -11,6 +11,7 @@ function DataManager:init()
self:initManager("DailyChallengeData", "app/userdata/daily_challenge/daily_challenge_data")
self:initManager("DungeonData", "app/userdata/dungeon/dungeon_data")
self:initManager("ArenaData", "app/userdata/arena/arena_data")
+ self:initManager("CollectionData", "app/userdata/collection/collection_data")
self:initManager("HeroData", "app/userdata/hero/hero_data")
self:initManager("BagData", "app/userdata/bag/bag_data")
self:initManager("BattleData", "app/userdata/battle/battle_data")
@@ -94,6 +95,7 @@ function DataManager:clear()
self.DailyChallengeData:clear()
self.DungeonData:clear()
self.ArenaData:clear()
+ self.CollectionData:clear()
self.HeroData:clear()
self.BagData:clear()
self.FormationData:clear()
@@ -134,6 +136,7 @@ function DataManager:initWithServerData(data)
self.HeroData:init(data.bag.heroes)
self.BagData:init(data.bag)
self.FormationData:init(data.fight_info)
+ self.CollectionData:init(data.collection)
self.TutorialData:init(data.guide)
self.MailData:init(data.mail_info)
self.ActivityData:init()
diff --git a/lua/app/common/event_manager.lua b/lua/app/common/event_manager.lua
index c2bd6a1c..df032437 100644
--- a/lua/app/common/event_manager.lua
+++ b/lua/app/common/event_manager.lua
@@ -47,6 +47,7 @@ EventManager.CUSTOM_EVENT = {
ARENA_RECORD_SUCCESS = "ARENA_RECORD_SUCCESS",-- 战报获取成功
ARENA_RANK_SUCCESS = "ARENA_RANK_SUCCESS",-- 排行榜获取成功
ARENA_AD_BOX_SUCCESS = "ARENA_AD_BOX_SUCCESS",-- ad宝箱获取成功
+ COLLECTION_CLICK_GET_POINT = "COLLECTION_CLICK_GET_POINT",
-- BORAD_TOUCH_BEGIN = "BORAD_TOUCH_BEGIN",
-- BORAD_TOUCH_OVER = "BORAD_TOUCH_OVER"
}
diff --git a/lua/app/common/module_manager.lua b/lua/app/common/module_manager.lua
index b34e5d27..763a7227 100644
--- a/lua/app/common/module_manager.lua
+++ b/lua/app/common/module_manager.lua
@@ -57,6 +57,8 @@ local MODULE_PATHS = {
DungeonManager = "app/module/dungeon/dungeon_manager",
-- 竞技场
ArenaManager = "app/module/arena/arena_manager",
+ -- 图鉴
+ CollectionManager = "app/module/collection/collection_manager",
}
-- 这里的key对应func_open里的id
@@ -81,6 +83,7 @@ ModuleManager.MODULE_KEY = {
INTRODUCT_GIFT = "introduct_gift", -- 入门礼包
ARENA = "arena_open", -- 竞技场
ARENA_GIFT = "act_arena_gift", -- 竞技场礼包
+ COLLECT = "collection_open", -- 收集
}
local _moduleMgrs = {}
diff --git a/lua/app/config/act_dungeon_armor_fund.lua b/lua/app/config/act_dungeon_armor_fund.lua
new file mode 100644
index 00000000..945823b9
--- /dev/null
+++ b/lua/app/config/act_dungeon_armor_fund.lua
@@ -0,0 +1,696 @@
+local act_dungeon_armor_fund = {
+ [1]={
+ ["stage"]=1,
+ ["stage"]=1,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ }
+ }
+ },
+ [2]={
+ ["stage"]=4,
+ ["stage"]=4,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ }
+ }
+ },
+ [3]={
+ ["stage"]=6,
+ ["stage"]=6,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ }
+ }
+ },
+ [4]={
+ ["stage"]=10,
+ ["stage"]=10,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
+ }
+ }
+ },
+ [5]={
+ ["stage"]=12,
+ ["stage"]=12,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
+ }
+ }
+ },
+ [6]={
+ ["stage"]=16,
+ ["stage"]=16,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ }
+ },
+ [7]={
+ ["stage"]=18,
+ ["stage"]=18,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
+ }
+ }
+ },
+ [8]={
+ ["stage"]=22,
+ ["stage"]=22,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
+ }
+ }
+ },
+ [9]={
+ ["stage"]=24,
+ ["stage"]=24,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
+ }
+ }
+ },
+ [10]={
+ ["stage"]=28,
+ ["stage"]=28,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
+ }
+ },
+ [11]={
+ ["stage"]=30,
+ ["stage"]=30,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
+ }
+ }
+ },
+ [12]={
+ ["stage"]=31,
+ ["stage"]=31,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
+ }
+ }
+ },
+ [13]={
+ ["stage"]=34,
+ ["stage"]=34,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
+ }
+ }
+ },
+ [14]={
+ ["stage"]=36,
+ ["stage"]=36,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
+ }
+ }
+ },
+ [15]={
+ ["stage"]=38,
+ ["stage"]=38,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ }
+ },
+ [16]={
+ ["stage"]=40,
+ ["stage"]=40,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
+ }
+ }
+ },
+ [17]={
+ ["stage"]=42,
+ ["stage"]=42,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
+ }
+ }
+ },
+ [18]={
+ ["stage"]=44,
+ ["stage"]=44,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
+ }
+ }
+ },
+ [19]={
+ ["stage"]=46,
+ ["stage"]=46,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
+ }
+ }
+ },
+ [20]={
+ ["stage"]=48,
+ ["stage"]=48,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ }
+ }
+ },
+ [21]={
+ ["stage"]=50,
+ ["stage"]=50,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
+ }
+ }
+ },
+ [22]={
+ ["stage"]=52,
+ ["stage"]=52,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
+ }
+ }
+ },
+ [23]={
+ ["stage"]=54,
+ ["stage"]=54,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
+ }
+ }
+ }
+}
+local config = {
+data=act_dungeon_armor_fund,count=23
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/act_dungeon_armor_fund.lua.meta b/lua/app/config/act_dungeon_armor_fund.lua.meta
new file mode 100644
index 00000000..294b4265
--- /dev/null
+++ b/lua/app/config/act_dungeon_armor_fund.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: ad394bc832606234db5bfd5270603ec7
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/act_gift.lua b/lua/app/config/act_gift.lua
index 0c3e5cd5..2fc1c2bc 100644
--- a/lua/app/config/act_gift.lua
+++ b/lua/app/config/act_gift.lua
@@ -713,9 +713,821 @@ local act_gift = {
["limit_time"]=24,
["cd"]=48,
["value"]=800
+ },
+ [100102]={
+ ["type"]=10,
+ ["recharge_id"]=10,
+ ["time_type"]=3,
+ ["limit"]=1,
+ ["value"]=800
+ },
+ [100202]={
+ ["type"]=10,
+ ["recharge_id"]=10,
+ ["time_type"]=3,
+ ["limit"]=1,
+ ["value"]=800
+ },
+ [110102]={
+ ["type"]=11,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [110202]={
+ ["type"]=11,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [110302]={
+ ["type"]=11,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [110402]={
+ ["type"]=11,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [110502]={
+ ["type"]=11,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [110602]={
+ ["type"]=11,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [110702]={
+ ["type"]=11,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [110802]={
+ ["type"]=11,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [110902]={
+ ["type"]=11,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [111002]={
+ ["type"]=11,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [120102]={
+ ["type"]=12,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [120202]={
+ ["type"]=12,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [120302]={
+ ["type"]=12,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [120402]={
+ ["type"]=12,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [120502]={
+ ["type"]=12,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [120602]={
+ ["type"]=12,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [120702]={
+ ["type"]=12,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [120802]={
+ ["type"]=12,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
+ },
+ [120902]={
+ ["type"]=12,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["time_type"]=1,
+ ["limit_time"]=12,
+ ["cd"]=12,
+ ["value"]=800
}
}
local config = {
-data=act_gift,count=27
+data=act_gift,count=48
}
return config
\ No newline at end of file
diff --git a/lua/app/config/arena_bounty_level.lua b/lua/app/config/arena_bounty_level.lua
index d25c2d9b..b96e1fee 100644
--- a/lua/app/config/arena_bounty_level.lua
+++ b/lua/app/config/arena_bounty_level.lua
@@ -113,8 +113,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -294,8 +294,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -394,8 +394,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
@@ -595,8 +595,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
@@ -696,8 +696,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -897,8 +897,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -1098,8 +1098,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -1299,8 +1299,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -1500,8 +1500,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -1733,8 +1733,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -1914,8 +1914,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -2014,8 +2014,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
@@ -2215,8 +2215,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
@@ -2316,8 +2316,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -2517,8 +2517,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -2718,8 +2718,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -2919,8 +2919,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -3120,8 +3120,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -3253,8 +3253,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=23,
+ ["id_for_nothing"]="VAs=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -3353,8 +3353,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -3506,18 +3506,18 @@ local arena_bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
+ ["id"]=13,
+ ["id_for_nothing"]="Vws=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=13,
+ ["id_for_nothing"]="Vws=",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
},
[315]={
@@ -3526,8 +3526,8 @@ local arena_bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
@@ -3606,18 +3606,18 @@ local arena_bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=500,
+ ["num_for_nothing"]="Uwhc"
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=1500,
+ ["num_for_nothing"]="Vw1cAw=="
}
},
[320]={
@@ -3634,8 +3634,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
@@ -3707,18 +3707,18 @@ local arena_bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
+ ["id"]=13,
+ ["id_for_nothing"]="Vws=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=13,
+ ["id_for_nothing"]="Vws=",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
},
[325]={
@@ -3727,8 +3727,8 @@ local arena_bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
@@ -3807,18 +3807,18 @@ local arena_bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=500,
+ ["num_for_nothing"]="Uwhc"
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
},
[330]={
@@ -3827,16 +3827,16 @@ local arena_bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
@@ -3916,8 +3916,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -3936,8 +3936,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -4109,16 +4109,16 @@ local arena_bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
+ ["id"]=8,
+ ["id_for_nothing"]="Xg==",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=9,
+ ["id_for_nothing"]="Xw==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -4137,8 +4137,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -4310,16 +4310,16 @@ local arena_bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
+ ["id"]=8,
+ ["id_for_nothing"]="Xg==",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=9,
+ ["id_for_nothing"]="Xw==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -4338,8 +4338,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -4511,16 +4511,16 @@ local arena_bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
+ ["id"]=8,
+ ["id_for_nothing"]="Xg==",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=9,
+ ["id_for_nothing"]="Xw==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -4539,8 +4539,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -4712,16 +4712,16 @@ local arena_bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
+ ["id"]=8,
+ ["id_for_nothing"]="Xg==",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=9,
+ ["id_for_nothing"]="Xw==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -4740,8 +4740,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
diff --git a/lua/app/config/bounty_level.lua b/lua/app/config/bounty_level.lua
index 7c599151..a600c933 100644
--- a/lua/app/config/bounty_level.lua
+++ b/lua/app/config/bounty_level.lua
@@ -274,8 +274,8 @@ local bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -394,8 +394,8 @@ local bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
@@ -475,8 +475,8 @@ local bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -676,8 +676,8 @@ local bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -869,16 +869,16 @@ local bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -1070,16 +1070,16 @@ local bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -1271,16 +1271,16 @@ local bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -1480,8 +1480,8 @@ local bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -1894,8 +1894,8 @@ local bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -2014,8 +2014,8 @@ local bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
@@ -2095,8 +2095,8 @@ local bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -2296,8 +2296,8 @@ local bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -2489,16 +2489,16 @@ local bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -2690,16 +2690,16 @@ local bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -2891,16 +2891,16 @@ local bounty_level = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -3100,8 +3100,8 @@ local bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
diff --git a/lua/app/config/buff.lua b/lua/app/config/buff.lua
index 61f1b1a8..cd0e8a3c 100644
--- a/lua/app/config/buff.lua
+++ b/lua/app/config/buff.lua
@@ -688,6 +688,12 @@ local buff = {
["buff_type"]=1,
["stack"]=2,
["decr"]=2
+ },
+ [79]={
+ ["id"]=79,
+ ["name"]="invincible_shield",
+ ["decr"]=1,
+ ["icon"]="invincible_shield"
}
}
local keys = {
@@ -769,12 +775,13 @@ local keys = {
["shield_ice_rebound_400"]=buff[75],
["invalid_control"]=buff[76],
["end_dmg_addition_all_add"]=buff[77],
- ["end_dmg_dec_all_add"]=buff[78]
+ ["end_dmg_dec_all_add"]=buff[78],
+ ["invincible_shield"]=buff[79]
}
}
local config = {
data=buff,
keys=keys,
-count=78
+count=79
}
return config
\ No newline at end of file
diff --git a/lua/app/config/chapter_board_dungeon_armor.lua.meta b/lua/app/config/chapter_board_dungeon_armor.lua.meta
index e175a779..a0b948a1 100644
--- a/lua/app/config/chapter_board_dungeon_armor.lua.meta
+++ b/lua/app/config/chapter_board_dungeon_armor.lua.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 5135440474da72745b0c57d652e16d64
+guid: f26f90b4112d5fb42996aec8429097e1
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/lua/app/config/chapter_board_dungeon_equip.lua.meta b/lua/app/config/chapter_board_dungeon_equip.lua.meta
index 8ee891c5..435bb075 100644
--- a/lua/app/config/chapter_board_dungeon_equip.lua.meta
+++ b/lua/app/config/chapter_board_dungeon_equip.lua.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 1f9ec106b072eef4ba7cba321505c2ab
+guid: 6dcd756f94cb3b14b89e8890d2dad6f3
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/lua/app/config/chapter_dungeon_armor.lua b/lua/app/config/chapter_dungeon_armor.lua
index fbb8d5f1..e9dfbab2 100644
--- a/lua/app/config/chapter_dungeon_armor.lua
+++ b/lua/app/config/chapter_dungeon_armor.lua
@@ -113,7 +113,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120102
},
[2]={
["main_chapter"]=10,
@@ -229,7 +230,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120102
},
[3]={
["main_chapter"]=10,
@@ -345,7 +347,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120102
},
[4]={
["main_chapter"]=10,
@@ -461,7 +464,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120102
},
[5]={
["main_chapter"]=10,
@@ -577,7 +581,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120102
},
[6]={
["main_chapter"]=10,
@@ -693,7 +698,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120102
},
[7]={
["main_chapter"]=12,
@@ -809,7 +815,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120202
},
[8]={
["main_chapter"]=12,
@@ -925,7 +932,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120202
},
[9]={
["main_chapter"]=12,
@@ -1041,7 +1049,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120202
},
[10]={
["main_chapter"]=12,
@@ -1157,7 +1166,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120202
},
[11]={
["main_chapter"]=12,
@@ -1273,7 +1283,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120202
},
[12]={
["main_chapter"]=12,
@@ -1389,7 +1400,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120202
},
[13]={
["main_chapter"]=15,
@@ -1505,7 +1517,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120302
},
[14]={
["main_chapter"]=15,
@@ -1621,7 +1634,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120302
},
[15]={
["main_chapter"]=15,
@@ -1737,7 +1751,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120302
},
[16]={
["main_chapter"]=15,
@@ -1853,7 +1868,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120302
},
[17]={
["main_chapter"]=15,
@@ -1969,7 +1985,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120302
},
[18]={
["main_chapter"]=15,
@@ -2085,7 +2102,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120302
},
[19]={
["main_chapter"]=18,
@@ -2201,7 +2219,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120402
},
[20]={
["main_chapter"]=18,
@@ -2317,7 +2336,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120402
},
[21]={
["main_chapter"]=18,
@@ -2433,7 +2453,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120402
},
[22]={
["main_chapter"]=18,
@@ -2549,7 +2570,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120402
},
[23]={
["main_chapter"]=18,
@@ -2665,7 +2687,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120402
},
[24]={
["main_chapter"]=18,
@@ -2781,7 +2804,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120402
},
[25]={
["main_chapter"]=21,
@@ -2897,7 +2921,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120502
},
[26]={
["main_chapter"]=21,
@@ -3013,7 +3038,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120502
},
[27]={
["main_chapter"]=21,
@@ -3129,7 +3155,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120502
},
[28]={
["main_chapter"]=21,
@@ -3245,7 +3272,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120502
},
[29]={
["main_chapter"]=21,
@@ -3361,7 +3389,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120502
},
[30]={
["main_chapter"]=21,
@@ -3477,7 +3506,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120502
},
[31]={
["main_chapter"]=24,
@@ -3593,7 +3623,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120602
},
[32]={
["main_chapter"]=24,
@@ -3709,7 +3740,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120602
},
[33]={
["main_chapter"]=24,
@@ -3825,7 +3857,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120602
},
[34]={
["main_chapter"]=24,
@@ -3941,7 +3974,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120602
},
[35]={
["main_chapter"]=24,
@@ -4057,7 +4091,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120602
},
[36]={
["main_chapter"]=24,
@@ -4173,7 +4208,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120602
},
[37]={
["main_chapter"]=27,
@@ -4289,7 +4325,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120702
},
[38]={
["main_chapter"]=27,
@@ -4405,7 +4442,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120702
},
[39]={
["main_chapter"]=27,
@@ -4521,7 +4559,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120702
},
[40]={
["main_chapter"]=27,
@@ -4637,7 +4676,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120702
},
[41]={
["main_chapter"]=27,
@@ -4753,7 +4793,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120702
},
[42]={
["main_chapter"]=27,
@@ -4869,7 +4910,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120702
},
[43]={
["main_chapter"]=30,
@@ -4985,7 +5027,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120802
},
[44]={
["main_chapter"]=30,
@@ -5101,7 +5144,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120802
},
[45]={
["main_chapter"]=30,
@@ -5217,7 +5261,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120802
},
[46]={
["main_chapter"]=30,
@@ -5333,7 +5378,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120802
},
[47]={
["main_chapter"]=30,
@@ -5449,7 +5495,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120802
},
[48]={
["main_chapter"]=30,
@@ -5565,7 +5612,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120802
},
[49]={
["main_chapter"]=33,
@@ -5681,7 +5729,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120902
},
[50]={
["main_chapter"]=33,
@@ -5797,7 +5846,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120902
},
[51]={
["main_chapter"]=33,
@@ -5913,7 +5963,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120902
},
[52]={
["main_chapter"]=33,
@@ -6029,7 +6080,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120902
},
[53]={
["main_chapter"]=33,
@@ -6145,7 +6197,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120902
},
[54]={
["main_chapter"]=33,
@@ -6261,7 +6314,8 @@ local chapter_dungeon_armor = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=120902
}
}
local config = {
diff --git a/lua/app/config/chapter_dungeon_armor.lua.meta b/lua/app/config/chapter_dungeon_armor.lua.meta
index 82196e8f..04d635a4 100644
--- a/lua/app/config/chapter_dungeon_armor.lua.meta
+++ b/lua/app/config/chapter_dungeon_armor.lua.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: d9b3cc684f230a64c894a9fd6918d761
+guid: 443c0e66db7a09a4486bd3fdaa2c8376
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/lua/app/config/chapter_dungeon_armor_reward.lua b/lua/app/config/chapter_dungeon_armor_reward.lua
new file mode 100644
index 00000000..b59ebdaf
--- /dev/null
+++ b/lua/app/config/chapter_dungeon_armor_reward.lua
@@ -0,0 +1,182 @@
+local chapter_dungeon_armor_reward = {
+ [1]={
+ ["star"]=10,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ }
+ },
+ [2]={
+ ["star"]=20,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ }
+ },
+ [3]={
+ ["star"]=30,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ }
+ },
+ [4]={
+ ["star"]=40,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
+ }
+ },
+ [5]={
+ ["star"]=50,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
+ }
+ },
+ [6]={
+ ["star"]=60,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ [7]={
+ ["star"]=70,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
+ }
+ },
+ [8]={
+ ["star"]=80,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
+ }
+ },
+ [9]={
+ ["star"]=90,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
+ }
+ },
+ [10]={
+ ["star"]=100,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
+ },
+ [11]={
+ ["star"]=110,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
+ }
+ },
+ [12]={
+ ["star"]=120,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
+ }
+ },
+ [13]={
+ ["star"]=130,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
+ }
+ },
+ [14]={
+ ["star"]=140,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
+ }
+ },
+ [15]={
+ ["star"]=150,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ [16]={
+ ["star"]=160,
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
+ }
+ }
+}
+local config = {
+data=chapter_dungeon_armor_reward,count=16
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/chapter_dungeon_armor_reward.lua.meta b/lua/app/config/chapter_dungeon_armor_reward.lua.meta
new file mode 100644
index 00000000..e6f18fe3
--- /dev/null
+++ b/lua/app/config/chapter_dungeon_armor_reward.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 5aa12c1b66dc1c6498e8acd4ef3c3462
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/chapter_dungeon_equip.lua b/lua/app/config/chapter_dungeon_equip.lua
index a91f7f1a..0d821366 100644
--- a/lua/app/config/chapter_dungeon_equip.lua
+++ b/lua/app/config/chapter_dungeon_equip.lua
@@ -88,7 +88,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110102
},
[2]={
["level"]=10,
@@ -179,7 +180,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110102
},
[3]={
["level"]=15,
@@ -270,7 +272,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110202
},
[4]={
["level"]=20,
@@ -361,7 +364,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110202
},
[5]={
["level"]=25,
@@ -452,7 +456,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110302
},
[6]={
["level"]=30,
@@ -543,7 +548,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110302
},
[7]={
["level"]=35,
@@ -634,7 +640,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110402
},
[8]={
["level"]=40,
@@ -725,7 +732,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110402
},
[9]={
["level"]=45,
@@ -816,7 +824,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110502
},
[10]={
["level"]=50,
@@ -907,7 +916,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110502
},
[11]={
["level"]=55,
@@ -998,7 +1008,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110602
},
[12]={
["level"]=60,
@@ -1089,7 +1100,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110602
},
[13]={
["level"]=65,
@@ -1180,7 +1192,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110702
},
[14]={
["level"]=70,
@@ -1271,7 +1284,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110702
},
[15]={
["level"]=75,
@@ -1362,7 +1376,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110802
},
[16]={
["level"]=80,
@@ -1453,7 +1468,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110802
},
[17]={
["level"]=85,
@@ -1544,7 +1560,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110902
},
[18]={
["level"]=90,
@@ -1635,7 +1652,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=110902
},
[19]={
["level"]=95,
@@ -1726,7 +1744,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=111002
},
[20]={
["level"]=100,
@@ -1817,7 +1836,8 @@ local chapter_dungeon_equip = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- }
+ },
+ ["gift_id"]=111002
}
}
local config = {
diff --git a/lua/app/config/chapter_dungeon_equip.lua.meta b/lua/app/config/chapter_dungeon_equip.lua.meta
index 835bc6a7..b04e1e5f 100644
--- a/lua/app/config/chapter_dungeon_equip.lua.meta
+++ b/lua/app/config/chapter_dungeon_equip.lua.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: a52989a53225d424297c546f8b47a84a
+guid: 8bcead53a4992a44c8eb6e8f657d5bd5
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/lua/app/config/collection.lua b/lua/app/config/collection.lua
index 58f2dce0..496fb52b 100644
--- a/lua/app/config/collection.lua
+++ b/lua/app/config/collection.lua
@@ -1034,9 +1034,46 @@ local collection = {
["num_for_nothing"]="VAA="
}
}
+ },
+ [29]={
+ ["point"]=1400,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
+ }
+ }
}
}
local config = {
-data=collection,count=28
+data=collection,count=29
}
return config
\ No newline at end of file
diff --git a/lua/app/config/collection.lua.meta b/lua/app/config/collection.lua.meta
index 0d0e66db..2d57bb72 100644
--- a/lua/app/config/collection.lua.meta
+++ b/lua/app/config/collection.lua.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 3d9b838fa982b8840ab93d01446c3f16
+guid: ba2d9579808d2904cbe1d4a49bb8e416
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/lua/app/config/equip.lua.meta b/lua/app/config/equip.lua.meta
index ae2c8131..e586ac86 100644
--- a/lua/app/config/equip.lua.meta
+++ b/lua/app/config/equip.lua.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 9c32a6e446a1c6c448b1528b263b709c
+guid: 2b311c41b8f49924eaa6edc19710d3d5
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/lua/app/config/equip_level.lua b/lua/app/config/equip_level.lua
index ae0bc793..554933ac 100644
--- a/lua/app/config/equip_level.lua
+++ b/lua/app/config/equip_level.lua
@@ -4,130 +4,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
["num"]=1,
["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
["num"]=1,
["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
["num"]=1,
["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=7,
- ["num_for_nothing"]="UQ=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
["num"]=1,
["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=8,
- ["num_for_nothing"]="Xg=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
["num"]=1,
["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
}
}
},
@@ -136,130 +56,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=7,
- ["num_for_nothing"]="UQ=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=8,
- ["num_for_nothing"]="Xg=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=9,
- ["num_for_nothing"]="Xw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=11,
- ["num_for_nothing"]="Vwk="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
}
},
@@ -268,130 +108,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=8,
- ["num_for_nothing"]="Xg=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=9,
- ["num_for_nothing"]="Xw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=12,
- ["num_for_nothing"]="Vwo="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
}
},
@@ -400,130 +160,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=7,
- ["num_for_nothing"]="UQ=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=9,
- ["num_for_nothing"]="Xw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=11,
- ["num_for_nothing"]="Vwk="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=13,
- ["num_for_nothing"]="Vws="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
}
},
@@ -532,130 +212,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=8,
- ["num_for_nothing"]="Xg=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=11,
- ["num_for_nothing"]="Vwk="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=12,
- ["num_for_nothing"]="Vwo="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=14,
- ["num_for_nothing"]="Vww="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
}
},
@@ -664,130 +264,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=9,
- ["num_for_nothing"]="Xw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=11,
- ["num_for_nothing"]="Vwk="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=12,
- ["num_for_nothing"]="Vwo="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=13,
- ["num_for_nothing"]="Vws="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
}
},
@@ -796,130 +316,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=12,
- ["num_for_nothing"]="Vwo="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=13,
- ["num_for_nothing"]="Vws="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=14,
- ["num_for_nothing"]="Vww="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=16,
- ["num_for_nothing"]="Vw4="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
}
},
@@ -928,130 +368,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=11,
- ["num_for_nothing"]="Vwk="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=13,
- ["num_for_nothing"]="Vws="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=14,
- ["num_for_nothing"]="Vww="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=17,
- ["num_for_nothing"]="Vw8="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
}
},
@@ -1060,130 +420,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=12,
- ["num_for_nothing"]="Vwo="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=14,
- ["num_for_nothing"]="Vww="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=16,
- ["num_for_nothing"]="Vw4="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=18,
- ["num_for_nothing"]="VwA="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
}
},
@@ -1192,130 +472,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=13,
- ["num_for_nothing"]="Vws="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=16,
- ["num_for_nothing"]="Vw4="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=17,
- ["num_for_nothing"]="Vw8="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=19,
- ["num_for_nothing"]="VwE="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
}
},
@@ -1324,130 +524,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=14,
- ["num_for_nothing"]="Vww="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=16,
- ["num_for_nothing"]="Vw4="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=17,
- ["num_for_nothing"]="Vw8="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=18,
- ["num_for_nothing"]="VwA="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
}
},
@@ -1456,130 +576,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=17,
- ["num_for_nothing"]="Vw8="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=18,
- ["num_for_nothing"]="VwA="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=19,
- ["num_for_nothing"]="VwE="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=21,
- ["num_for_nothing"]="VAk="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
}
},
@@ -1588,130 +628,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=16,
- ["num_for_nothing"]="Vw4="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=18,
- ["num_for_nothing"]="VwA="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=19,
- ["num_for_nothing"]="VwE="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=22,
- ["num_for_nothing"]="VAo="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
}
},
@@ -1720,130 +680,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=17,
- ["num_for_nothing"]="Vw8="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=19,
- ["num_for_nothing"]="VwE="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=21,
- ["num_for_nothing"]="VAk="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=23,
- ["num_for_nothing"]="VAs="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
}
},
@@ -1852,130 +732,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=18,
- ["num_for_nothing"]="VwA="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=21,
- ["num_for_nothing"]="VAk="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=22,
- ["num_for_nothing"]="VAo="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=24,
- ["num_for_nothing"]="VAw="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
}
},
@@ -1984,130 +784,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=19,
- ["num_for_nothing"]="VwE="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=21,
- ["num_for_nothing"]="VAk="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=22,
- ["num_for_nothing"]="VAo="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=23,
- ["num_for_nothing"]="VAs="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
}
},
@@ -2116,130 +836,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=22,
- ["num_for_nothing"]="VAo="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=23,
- ["num_for_nothing"]="VAs="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=24,
- ["num_for_nothing"]="VAw="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=26,
- ["num_for_nothing"]="VA4="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
}
},
@@ -2248,130 +888,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=21,
- ["num_for_nothing"]="VAk="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=23,
- ["num_for_nothing"]="VAs="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=24,
- ["num_for_nothing"]="VAw="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=27,
- ["num_for_nothing"]="VA8="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
}
},
@@ -2380,130 +940,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=22,
- ["num_for_nothing"]="VAo="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=24,
- ["num_for_nothing"]="VAw="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=26,
- ["num_for_nothing"]="VA4="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=28,
- ["num_for_nothing"]="VAA="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
}
},
@@ -2512,130 +992,50 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=23,
- ["num_for_nothing"]="VAs="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=26,
- ["num_for_nothing"]="VA4="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=27,
- ["num_for_nothing"]="VA8="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=29,
- ["num_for_nothing"]="VAE="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
}
},
@@ -2644,130 +1044,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
["num"]=1,
["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=24,
- ["num_for_nothing"]="VAw="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
["num"]=1,
["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=26,
- ["num_for_nothing"]="VA4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
["num"]=1,
["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=27,
- ["num_for_nothing"]="VA8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
["num"]=1,
["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=28,
- ["num_for_nothing"]="VAA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
["num"]=1,
["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
}
}
},
@@ -2776,130 +1136,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=27,
- ["num_for_nothing"]="VA8="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=28,
- ["num_for_nothing"]="VAA="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=29,
- ["num_for_nothing"]="VAE="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=31,
- ["num_for_nothing"]="VQk="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
}
},
@@ -2908,130 +1228,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=26,
- ["num_for_nothing"]="VA4="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=28,
- ["num_for_nothing"]="VAA="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=29,
- ["num_for_nothing"]="VAE="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=32,
- ["num_for_nothing"]="VQo="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
}
},
@@ -3040,130 +1320,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=27,
- ["num_for_nothing"]="VA8="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=29,
- ["num_for_nothing"]="VAE="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=31,
- ["num_for_nothing"]="VQk="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=33,
- ["num_for_nothing"]="VQs="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
}
},
@@ -3172,130 +1412,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=28,
- ["num_for_nothing"]="VAA="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=31,
- ["num_for_nothing"]="VQk="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=32,
- ["num_for_nothing"]="VQo="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=34,
- ["num_for_nothing"]="VQw="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
}
},
@@ -3304,130 +1504,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=29,
- ["num_for_nothing"]="VAE="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=31,
- ["num_for_nothing"]="VQk="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=32,
- ["num_for_nothing"]="VQo="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=33,
- ["num_for_nothing"]="VQs="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=35,
- ["num_for_nothing"]="VQ0="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
}
},
@@ -3436,130 +1596,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=32,
- ["num_for_nothing"]="VQo="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=33,
- ["num_for_nothing"]="VQs="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=34,
- ["num_for_nothing"]="VQw="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=36,
- ["num_for_nothing"]="VQ4="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
}
},
@@ -3568,130 +1688,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=31,
- ["num_for_nothing"]="VQk="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=33,
- ["num_for_nothing"]="VQs="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=34,
- ["num_for_nothing"]="VQw="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=35,
- ["num_for_nothing"]="VQ0="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=37,
- ["num_for_nothing"]="VQ8="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
}
},
@@ -3700,130 +1780,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=32,
- ["num_for_nothing"]="VQo="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=34,
- ["num_for_nothing"]="VQw="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=35,
- ["num_for_nothing"]="VQ0="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=36,
- ["num_for_nothing"]="VQ4="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=38,
- ["num_for_nothing"]="VQA="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
}
},
@@ -3832,130 +1872,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=33,
- ["num_for_nothing"]="VQs="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=35,
- ["num_for_nothing"]="VQ0="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=36,
- ["num_for_nothing"]="VQ4="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=37,
- ["num_for_nothing"]="VQ8="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=39,
- ["num_for_nothing"]="VQE="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
}
},
@@ -3964,130 +1964,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=34,
- ["num_for_nothing"]="VQw="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=36,
- ["num_for_nothing"]="VQ4="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=37,
- ["num_for_nothing"]="VQ8="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=38,
- ["num_for_nothing"]="VQA="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
}
},
@@ -4096,130 +2056,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=35,
- ["num_for_nothing"]="VQ0="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=37,
- ["num_for_nothing"]="VQ8="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=38,
- ["num_for_nothing"]="VQA="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=39,
- ["num_for_nothing"]="VQE="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=41,
- ["num_for_nothing"]="Ugk="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
}
},
@@ -4228,130 +2148,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=36,
- ["num_for_nothing"]="VQ4="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=38,
- ["num_for_nothing"]="VQA="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=39,
- ["num_for_nothing"]="VQE="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=42,
- ["num_for_nothing"]="Ugo="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
}
},
@@ -4360,130 +2240,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=37,
- ["num_for_nothing"]="VQ8="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=39,
- ["num_for_nothing"]="VQE="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=41,
- ["num_for_nothing"]="Ugk="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=43,
- ["num_for_nothing"]="Ugs="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
}
},
@@ -4492,130 +2332,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=38,
- ["num_for_nothing"]="VQA="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=41,
- ["num_for_nothing"]="Ugk="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=42,
- ["num_for_nothing"]="Ugo="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=44,
- ["num_for_nothing"]="Ugw="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
}
},
@@ -4624,130 +2424,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=39,
- ["num_for_nothing"]="VQE="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=41,
- ["num_for_nothing"]="Ugk="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=42,
- ["num_for_nothing"]="Ugo="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=43,
- ["num_for_nothing"]="Ugs="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=45,
- ["num_for_nothing"]="Ug0="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
}
},
@@ -4756,130 +2516,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=42,
- ["num_for_nothing"]="Ugo="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=43,
- ["num_for_nothing"]="Ugs="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=44,
- ["num_for_nothing"]="Ugw="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=46,
- ["num_for_nothing"]="Ug4="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
}
},
@@ -4888,130 +2608,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=41,
- ["num_for_nothing"]="Ugk="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=43,
- ["num_for_nothing"]="Ugs="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=44,
- ["num_for_nothing"]="Ugw="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=45,
- ["num_for_nothing"]="Ug0="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=47,
- ["num_for_nothing"]="Ug8="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
}
},
@@ -5020,130 +2700,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=42,
- ["num_for_nothing"]="Ugo="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=44,
- ["num_for_nothing"]="Ugw="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=45,
- ["num_for_nothing"]="Ug0="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=46,
- ["num_for_nothing"]="Ug4="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=48,
- ["num_for_nothing"]="UgA="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
}
},
@@ -5152,130 +2792,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=43,
- ["num_for_nothing"]="Ugs="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=45,
- ["num_for_nothing"]="Ug0="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=46,
- ["num_for_nothing"]="Ug4="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=47,
- ["num_for_nothing"]="Ug8="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=49,
- ["num_for_nothing"]="UgE="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
}
},
@@ -5284,130 +2884,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=44,
- ["num_for_nothing"]="Ugw="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=46,
- ["num_for_nothing"]="Ug4="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=47,
- ["num_for_nothing"]="Ug8="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=48,
- ["num_for_nothing"]="UgA="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
}
},
@@ -5416,130 +2976,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=45,
- ["num_for_nothing"]="Ug0="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=47,
- ["num_for_nothing"]="Ug8="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=48,
- ["num_for_nothing"]="UgA="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=49,
- ["num_for_nothing"]="UgE="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=51,
- ["num_for_nothing"]="Uwk="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
}
},
@@ -5548,130 +3068,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=46,
- ["num_for_nothing"]="Ug4="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=48,
- ["num_for_nothing"]="UgA="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=49,
- ["num_for_nothing"]="UgE="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=52,
- ["num_for_nothing"]="Uwo="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
}
},
@@ -5680,130 +3160,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=47,
- ["num_for_nothing"]="Ug8="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=49,
- ["num_for_nothing"]="UgE="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=51,
- ["num_for_nothing"]="Uwk="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=53,
- ["num_for_nothing"]="Uws="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
}
},
@@ -5812,130 +3252,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=48,
- ["num_for_nothing"]="UgA="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=51,
- ["num_for_nothing"]="Uwk="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=52,
- ["num_for_nothing"]="Uwo="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=54,
- ["num_for_nothing"]="Uww="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
}
},
@@ -5944,130 +3344,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=49,
- ["num_for_nothing"]="UgE="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=51,
- ["num_for_nothing"]="Uwk="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=52,
- ["num_for_nothing"]="Uwo="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=53,
- ["num_for_nothing"]="Uws="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=55,
- ["num_for_nothing"]="Uw0="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
}
},
@@ -6076,130 +3436,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=52,
- ["num_for_nothing"]="Uwo="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=53,
- ["num_for_nothing"]="Uws="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=54,
- ["num_for_nothing"]="Uww="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=56,
- ["num_for_nothing"]="Uw4="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
}
},
@@ -6208,130 +3528,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=51,
- ["num_for_nothing"]="Uwk="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=53,
- ["num_for_nothing"]="Uws="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=54,
- ["num_for_nothing"]="Uww="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=55,
- ["num_for_nothing"]="Uw0="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=57,
- ["num_for_nothing"]="Uw8="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
}
},
@@ -6340,130 +3620,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=52,
- ["num_for_nothing"]="Uwo="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=54,
- ["num_for_nothing"]="Uww="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=55,
- ["num_for_nothing"]="Uw0="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=56,
- ["num_for_nothing"]="Uw4="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=58,
- ["num_for_nothing"]="UwA="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
}
},
@@ -6472,130 +3712,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=53,
- ["num_for_nothing"]="Uws="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=55,
- ["num_for_nothing"]="Uw0="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=56,
- ["num_for_nothing"]="Uw4="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=57,
- ["num_for_nothing"]="Uw8="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=59,
- ["num_for_nothing"]="UwE="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
}
},
@@ -6604,130 +3804,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=54,
- ["num_for_nothing"]="Uww="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=56,
- ["num_for_nothing"]="Uw4="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=57,
- ["num_for_nothing"]="Uw8="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=58,
- ["num_for_nothing"]="UwA="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
}
},
@@ -6736,130 +3896,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=55,
- ["num_for_nothing"]="Uw0="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=57,
- ["num_for_nothing"]="Uw8="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=58,
- ["num_for_nothing"]="UwA="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=59,
- ["num_for_nothing"]="UwE="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=61,
- ["num_for_nothing"]="UAk="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
}
},
@@ -6868,130 +3988,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=56,
- ["num_for_nothing"]="Uw4="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=58,
- ["num_for_nothing"]="UwA="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=59,
- ["num_for_nothing"]="UwE="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=62,
- ["num_for_nothing"]="UAo="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
}
},
@@ -7000,130 +4080,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=57,
- ["num_for_nothing"]="Uw8="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=59,
- ["num_for_nothing"]="UwE="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=61,
- ["num_for_nothing"]="UAk="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=63,
- ["num_for_nothing"]="UAs="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
}
},
@@ -7132,130 +4172,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=58,
- ["num_for_nothing"]="UwA="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=61,
- ["num_for_nothing"]="UAk="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=62,
- ["num_for_nothing"]="UAo="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=64,
- ["num_for_nothing"]="UAw="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
}
},
@@ -7264,130 +4264,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=59,
- ["num_for_nothing"]="UwE="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=61,
- ["num_for_nothing"]="UAk="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=62,
- ["num_for_nothing"]="UAo="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=63,
- ["num_for_nothing"]="UAs="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=65,
- ["num_for_nothing"]="UA0="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
}
},
@@ -7396,130 +4356,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=62,
- ["num_for_nothing"]="UAo="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=63,
- ["num_for_nothing"]="UAs="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=64,
- ["num_for_nothing"]="UAw="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=66,
- ["num_for_nothing"]="UA4="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
}
},
@@ -7528,130 +4448,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=61,
- ["num_for_nothing"]="UAk="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=63,
- ["num_for_nothing"]="UAs="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=64,
- ["num_for_nothing"]="UAw="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=65,
- ["num_for_nothing"]="UA0="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=67,
- ["num_for_nothing"]="UA8="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
}
},
@@ -7660,130 +4540,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=62,
- ["num_for_nothing"]="UAo="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=64,
- ["num_for_nothing"]="UAw="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=65,
- ["num_for_nothing"]="UA0="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=66,
- ["num_for_nothing"]="UA4="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=68,
- ["num_for_nothing"]="UAA="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
}
},
@@ -7792,130 +4632,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=63,
- ["num_for_nothing"]="UAs="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=65,
- ["num_for_nothing"]="UA0="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=66,
- ["num_for_nothing"]="UA4="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=67,
- ["num_for_nothing"]="UA8="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=69,
- ["num_for_nothing"]="UAE="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
}
},
@@ -7924,130 +4724,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=64,
- ["num_for_nothing"]="UAw="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=66,
- ["num_for_nothing"]="UA4="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=67,
- ["num_for_nothing"]="UA8="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=68,
- ["num_for_nothing"]="UAA="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=70,
- ["num_for_nothing"]="UQg="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
}
},
@@ -8056,130 +4816,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=65,
- ["num_for_nothing"]="UA0="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=67,
- ["num_for_nothing"]="UA8="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=68,
- ["num_for_nothing"]="UAA="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=69,
- ["num_for_nothing"]="UAE="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=71,
- ["num_for_nothing"]="UQk="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
}
},
@@ -8188,130 +4908,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=66,
- ["num_for_nothing"]="UA4="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=68,
- ["num_for_nothing"]="UAA="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=69,
- ["num_for_nothing"]="UAE="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=70,
- ["num_for_nothing"]="UQg="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=72,
- ["num_for_nothing"]="UQo="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
}
},
@@ -8320,130 +5000,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=67,
- ["num_for_nothing"]="UA8="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=69,
- ["num_for_nothing"]="UAE="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=70,
- ["num_for_nothing"]="UQg="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=71,
- ["num_for_nothing"]="UQk="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=73,
- ["num_for_nothing"]="UQs="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
}
},
@@ -8452,130 +5092,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=68,
- ["num_for_nothing"]="UAA="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=70,
- ["num_for_nothing"]="UQg="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=71,
- ["num_for_nothing"]="UQk="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=72,
- ["num_for_nothing"]="UQo="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=74,
- ["num_for_nothing"]="UQw="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
}
},
@@ -8584,130 +5184,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=69,
- ["num_for_nothing"]="UAE="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=71,
- ["num_for_nothing"]="UQk="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=72,
- ["num_for_nothing"]="UQo="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=73,
- ["num_for_nothing"]="UQs="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=75,
- ["num_for_nothing"]="UQ0="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
}
}
},
@@ -8716,130 +5276,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=70,
- ["num_for_nothing"]="UQg="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=72,
- ["num_for_nothing"]="UQo="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=73,
- ["num_for_nothing"]="UQs="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=74,
- ["num_for_nothing"]="UQw="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=76,
- ["num_for_nothing"]="UQ4="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
}
}
},
@@ -8848,130 +5368,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=71,
- ["num_for_nothing"]="UQk="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=73,
- ["num_for_nothing"]="UQs="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=74,
- ["num_for_nothing"]="UQw="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=75,
- ["num_for_nothing"]="UQ0="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=77,
- ["num_for_nothing"]="UQ8="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
}
}
},
@@ -8980,130 +5460,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=72,
- ["num_for_nothing"]="UQo="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=74,
- ["num_for_nothing"]="UQw="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=75,
- ["num_for_nothing"]="UQ0="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=76,
- ["num_for_nothing"]="UQ4="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=78,
- ["num_for_nothing"]="UQA="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
}
}
},
@@ -9112,130 +5552,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=73,
- ["num_for_nothing"]="UQs="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=75,
- ["num_for_nothing"]="UQ0="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=76,
- ["num_for_nothing"]="UQ4="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=77,
- ["num_for_nothing"]="UQ8="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=79,
- ["num_for_nothing"]="UQE="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
}
}
},
@@ -9244,130 +5644,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=74,
- ["num_for_nothing"]="UQw="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=76,
- ["num_for_nothing"]="UQ4="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=77,
- ["num_for_nothing"]="UQ8="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=78,
- ["num_for_nothing"]="UQA="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=80,
- ["num_for_nothing"]="Xgg="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
}
}
},
@@ -9376,130 +5736,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=75,
- ["num_for_nothing"]="UQ0="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=77,
- ["num_for_nothing"]="UQ8="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=78,
- ["num_for_nothing"]="UQA="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=79,
- ["num_for_nothing"]="UQE="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=81,
- ["num_for_nothing"]="Xgk="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
}
}
},
@@ -9508,130 +5828,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=76,
- ["num_for_nothing"]="UQ4="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=78,
- ["num_for_nothing"]="UQA="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=79,
- ["num_for_nothing"]="UQE="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=80,
- ["num_for_nothing"]="Xgg="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=82,
- ["num_for_nothing"]="Xgo="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
}
}
},
@@ -9640,130 +5920,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=77,
- ["num_for_nothing"]="UQ8="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=79,
- ["num_for_nothing"]="UQE="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=80,
- ["num_for_nothing"]="Xgg="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=81,
- ["num_for_nothing"]="Xgk="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=83,
- ["num_for_nothing"]="Xgs="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
}
}
},
@@ -9772,130 +6012,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=78,
- ["num_for_nothing"]="UQA="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=80,
- ["num_for_nothing"]="Xgg="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=81,
- ["num_for_nothing"]="Xgk="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=82,
- ["num_for_nothing"]="Xgo="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=84,
- ["num_for_nothing"]="Xgw="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
}
}
},
@@ -9904,130 +6104,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=79,
- ["num_for_nothing"]="UQE="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=81,
- ["num_for_nothing"]="Xgk="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=82,
- ["num_for_nothing"]="Xgo="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=83,
- ["num_for_nothing"]="Xgs="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=85,
- ["num_for_nothing"]="Xg0="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
}
}
},
@@ -10036,130 +6196,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=80,
- ["num_for_nothing"]="Xgg="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=82,
- ["num_for_nothing"]="Xgo="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=83,
- ["num_for_nothing"]="Xgs="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=84,
- ["num_for_nothing"]="Xgw="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=86,
- ["num_for_nothing"]="Xg4="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
}
}
},
@@ -10168,130 +6288,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=81,
- ["num_for_nothing"]="Xgk="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=83,
- ["num_for_nothing"]="Xgs="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=84,
- ["num_for_nothing"]="Xgw="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=85,
- ["num_for_nothing"]="Xg0="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=87,
- ["num_for_nothing"]="Xg8="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
}
}
},
@@ -10300,130 +6380,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=82,
- ["num_for_nothing"]="Xgo="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=84,
- ["num_for_nothing"]="Xgw="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=85,
- ["num_for_nothing"]="Xg0="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=86,
- ["num_for_nothing"]="Xg4="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=88,
- ["num_for_nothing"]="XgA="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
}
}
},
@@ -10432,130 +6472,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1001,
+ ["id_for_nothing"]="VwhcAg==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=83,
- ["num_for_nothing"]="Xgs="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1007,
+ ["id_for_nothing"]="VwhcBA==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=85,
- ["num_for_nothing"]="Xg0="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1013,
+ ["id_for_nothing"]="VwhdAA==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=86,
- ["num_for_nothing"]="Xg4="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1019,
+ ["id_for_nothing"]="VwhdCg==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=87,
- ["num_for_nothing"]="Xg8="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1025,
+ ["id_for_nothing"]="VwheBg==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=89,
- ["num_for_nothing"]="XgE="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
}
}
},
@@ -10564,130 +6564,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=84,
- ["num_for_nothing"]="Xgw="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=86,
- ["num_for_nothing"]="Xg4="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=87,
- ["num_for_nothing"]="Xg8="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=88,
- ["num_for_nothing"]="XgA="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=90,
- ["num_for_nothing"]="Xwg="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
}
},
@@ -10696,130 +6656,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=85,
- ["num_for_nothing"]="Xg0="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=87,
- ["num_for_nothing"]="Xg8="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=88,
- ["num_for_nothing"]="XgA="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=89,
- ["num_for_nothing"]="XgE="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=91,
- ["num_for_nothing"]="Xwk="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
}
},
@@ -10828,130 +6748,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=86,
- ["num_for_nothing"]="Xg4="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=88,
- ["num_for_nothing"]="XgA="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=89,
- ["num_for_nothing"]="XgE="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=90,
- ["num_for_nothing"]="Xwg="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=92,
- ["num_for_nothing"]="Xwo="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
}
},
@@ -10960,130 +6840,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=87,
- ["num_for_nothing"]="Xg8="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=89,
- ["num_for_nothing"]="XgE="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=90,
- ["num_for_nothing"]="Xwg="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=91,
- ["num_for_nothing"]="Xwk="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=93,
- ["num_for_nothing"]="Xws="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
}
},
@@ -11092,130 +6932,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=88,
- ["num_for_nothing"]="XgA="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=90,
- ["num_for_nothing"]="Xwg="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=91,
- ["num_for_nothing"]="Xwk="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=92,
- ["num_for_nothing"]="Xwo="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=94,
- ["num_for_nothing"]="Xww="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
}
},
@@ -11224,130 +7024,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=89,
- ["num_for_nothing"]="XgE="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=91,
- ["num_for_nothing"]="Xwk="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=92,
- ["num_for_nothing"]="Xwo="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=93,
- ["num_for_nothing"]="Xws="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=95,
- ["num_for_nothing"]="Xw0="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
}
},
@@ -11356,130 +7116,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=90,
- ["num_for_nothing"]="Xwg="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=92,
- ["num_for_nothing"]="Xwo="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=93,
- ["num_for_nothing"]="Xws="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=94,
- ["num_for_nothing"]="Xww="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=96,
- ["num_for_nothing"]="Xw4="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
}
},
@@ -11488,130 +7208,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=91,
- ["num_for_nothing"]="Xwk="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=93,
- ["num_for_nothing"]="Xws="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=94,
- ["num_for_nothing"]="Xww="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=95,
- ["num_for_nothing"]="Xw0="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=97,
- ["num_for_nothing"]="Xw8="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
}
},
@@ -11620,130 +7300,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=92,
- ["num_for_nothing"]="Xwo="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=94,
- ["num_for_nothing"]="Xww="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=95,
- ["num_for_nothing"]="Xw0="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=96,
- ["num_for_nothing"]="Xw4="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=98,
- ["num_for_nothing"]="XwA="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
}
},
@@ -11752,130 +7392,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=93,
- ["num_for_nothing"]="Xws="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=95,
- ["num_for_nothing"]="Xw0="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=96,
- ["num_for_nothing"]="Xw4="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=97,
- ["num_for_nothing"]="Xw8="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=99,
- ["num_for_nothing"]="XwE="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
}
},
@@ -11884,130 +7484,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=94,
- ["num_for_nothing"]="Xww="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=96,
- ["num_for_nothing"]="Xw4="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=97,
- ["num_for_nothing"]="Xw8="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=98,
- ["num_for_nothing"]="XwA="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
}
},
@@ -12016,130 +7576,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=95,
- ["num_for_nothing"]="Xw0="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=97,
- ["num_for_nothing"]="Xw8="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=98,
- ["num_for_nothing"]="XwA="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=99,
- ["num_for_nothing"]="XwE="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=101,
- ["num_for_nothing"]="Vwhd"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
}
},
@@ -12148,130 +7668,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=96,
- ["num_for_nothing"]="Xw4="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=98,
- ["num_for_nothing"]="XwA="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=99,
- ["num_for_nothing"]="XwE="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=102,
- ["num_for_nothing"]="Vwhe"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
}
},
@@ -12280,130 +7760,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=97,
- ["num_for_nothing"]="Xw8="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=99,
- ["num_for_nothing"]="XwE="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=101,
- ["num_for_nothing"]="Vwhd"
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=103,
- ["num_for_nothing"]="Vwhf"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
}
},
@@ -12412,130 +7852,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=98,
- ["num_for_nothing"]="XwA="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=101,
- ["num_for_nothing"]="Vwhd"
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=102,
- ["num_for_nothing"]="Vwhe"
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=104,
- ["num_for_nothing"]="VwhY"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
}
},
@@ -12544,130 +7944,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=99,
- ["num_for_nothing"]="XwE="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=101,
- ["num_for_nothing"]="Vwhd"
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=102,
- ["num_for_nothing"]="Vwhe"
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=103,
- ["num_for_nothing"]="Vwhf"
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=105,
- ["num_for_nothing"]="VwhZ"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
}
},
@@ -12676,130 +8036,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=102,
- ["num_for_nothing"]="Vwhe"
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=103,
- ["num_for_nothing"]="Vwhf"
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=104,
- ["num_for_nothing"]="VwhY"
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=106,
- ["num_for_nothing"]="Vwha"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
}
},
@@ -12808,130 +8128,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=101,
- ["num_for_nothing"]="Vwhd"
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=103,
- ["num_for_nothing"]="Vwhf"
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=104,
- ["num_for_nothing"]="VwhY"
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=105,
- ["num_for_nothing"]="VwhZ"
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=107,
- ["num_for_nothing"]="Vwhb"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
}
},
@@ -12940,130 +8220,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=102,
- ["num_for_nothing"]="Vwhe"
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=104,
- ["num_for_nothing"]="VwhY"
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=105,
- ["num_for_nothing"]="VwhZ"
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=106,
- ["num_for_nothing"]="Vwha"
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=108,
- ["num_for_nothing"]="VwhU"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
}
},
@@ -13072,130 +8312,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=103,
- ["num_for_nothing"]="Vwhf"
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=105,
- ["num_for_nothing"]="VwhZ"
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=106,
- ["num_for_nothing"]="Vwha"
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=107,
- ["num_for_nothing"]="Vwhb"
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=109,
- ["num_for_nothing"]="VwhV"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
}
},
@@ -13204,130 +8404,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=104,
- ["num_for_nothing"]="VwhY"
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=106,
- ["num_for_nothing"]="Vwha"
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=107,
- ["num_for_nothing"]="Vwhb"
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=108,
- ["num_for_nothing"]="VwhU"
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=110,
- ["num_for_nothing"]="Vwlc"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
}
},
@@ -13336,130 +8496,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=105,
- ["num_for_nothing"]="VwhZ"
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=107,
- ["num_for_nothing"]="Vwhb"
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=108,
- ["num_for_nothing"]="VwhU"
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=109,
- ["num_for_nothing"]="VwhV"
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=111,
- ["num_for_nothing"]="Vwld"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
}
},
@@ -13468,130 +8588,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=106,
- ["num_for_nothing"]="Vwha"
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=108,
- ["num_for_nothing"]="VwhU"
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=109,
- ["num_for_nothing"]="VwhV"
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=110,
- ["num_for_nothing"]="Vwlc"
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=112,
- ["num_for_nothing"]="Vwle"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
}
},
@@ -13600,130 +8680,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=107,
- ["num_for_nothing"]="Vwhb"
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=109,
- ["num_for_nothing"]="VwhV"
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=110,
- ["num_for_nothing"]="Vwlc"
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=111,
- ["num_for_nothing"]="Vwld"
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=113,
- ["num_for_nothing"]="Vwlf"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
}
},
@@ -13732,130 +8772,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=108,
- ["num_for_nothing"]="VwhU"
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1008,
+ ["id_for_nothing"]="VwhcCw==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=110,
- ["num_for_nothing"]="Vwlc"
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1014,
+ ["id_for_nothing"]="VwhdBw==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=111,
- ["num_for_nothing"]="Vwld"
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1020,
+ ["id_for_nothing"]="VwheAw==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=112,
- ["num_for_nothing"]="Vwle"
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1026,
+ ["id_for_nothing"]="VwheBQ==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=114,
- ["num_for_nothing"]="VwlY"
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
}
},
@@ -13864,130 +8864,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=109,
- ["num_for_nothing"]="VwhV"
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=111,
- ["num_for_nothing"]="Vwld"
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=112,
- ["num_for_nothing"]="Vwle"
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=113,
- ["num_for_nothing"]="Vwlf"
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=115,
- ["num_for_nothing"]="VwlZ"
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
}
},
@@ -13996,130 +8956,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=110,
- ["num_for_nothing"]="Vwlc"
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=112,
- ["num_for_nothing"]="Vwle"
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=113,
- ["num_for_nothing"]="Vwlf"
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=114,
- ["num_for_nothing"]="VwlY"
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=116,
- ["num_for_nothing"]="Vwla"
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
}
},
@@ -14128,130 +9048,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=111,
- ["num_for_nothing"]="Vwld"
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=113,
- ["num_for_nothing"]="Vwlf"
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=114,
- ["num_for_nothing"]="VwlY"
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=115,
- ["num_for_nothing"]="VwlZ"
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=117,
- ["num_for_nothing"]="Vwlb"
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
}
},
@@ -14260,130 +9140,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=112,
- ["num_for_nothing"]="Vwle"
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=114,
- ["num_for_nothing"]="VwlY"
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=115,
- ["num_for_nothing"]="VwlZ"
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=116,
- ["num_for_nothing"]="Vwla"
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=118,
- ["num_for_nothing"]="VwlU"
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
}
},
@@ -14392,130 +9232,90 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=113,
- ["num_for_nothing"]="Vwlf"
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=115,
- ["num_for_nothing"]="VwlZ"
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=116,
- ["num_for_nothing"]="Vwla"
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=117,
- ["num_for_nothing"]="Vwlb"
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=119,
- ["num_for_nothing"]="VwlV"
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
}
},
@@ -14524,130 +9324,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=114,
- ["num_for_nothing"]="VwlY"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=116,
- ["num_for_nothing"]="Vwla"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=117,
- ["num_for_nothing"]="Vwlb"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=118,
- ["num_for_nothing"]="VwlU"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=120,
- ["num_for_nothing"]="Vwpc"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
}
},
@@ -14656,130 +9456,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=115,
- ["num_for_nothing"]="VwlZ"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=117,
- ["num_for_nothing"]="Vwlb"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=118,
- ["num_for_nothing"]="VwlU"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=119,
- ["num_for_nothing"]="VwlV"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=121,
- ["num_for_nothing"]="Vwpd"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
}
},
@@ -14788,130 +9588,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=116,
- ["num_for_nothing"]="Vwla"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=118,
- ["num_for_nothing"]="VwlU"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=119,
- ["num_for_nothing"]="VwlV"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=120,
- ["num_for_nothing"]="Vwpc"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=122,
- ["num_for_nothing"]="Vwpe"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
}
},
@@ -14920,130 +9720,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=117,
- ["num_for_nothing"]="Vwlb"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=119,
- ["num_for_nothing"]="VwlV"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=120,
- ["num_for_nothing"]="Vwpc"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=121,
- ["num_for_nothing"]="Vwpd"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=123,
- ["num_for_nothing"]="Vwpf"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
}
},
@@ -15052,130 +9852,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=118,
- ["num_for_nothing"]="VwlU"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=120,
- ["num_for_nothing"]="Vwpc"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=121,
- ["num_for_nothing"]="Vwpd"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=122,
- ["num_for_nothing"]="Vwpe"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=124,
- ["num_for_nothing"]="VwpY"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
}
},
@@ -15184,130 +9984,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=119,
- ["num_for_nothing"]="VwlV"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=121,
- ["num_for_nothing"]="Vwpd"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=122,
- ["num_for_nothing"]="Vwpe"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=123,
- ["num_for_nothing"]="Vwpf"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=125,
- ["num_for_nothing"]="VwpZ"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
}
},
@@ -15316,130 +10116,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=120,
- ["num_for_nothing"]="Vwpc"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=122,
- ["num_for_nothing"]="Vwpe"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=123,
- ["num_for_nothing"]="Vwpf"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=124,
- ["num_for_nothing"]="VwpY"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=126,
- ["num_for_nothing"]="Vwpa"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
}
},
@@ -15448,130 +10248,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=121,
- ["num_for_nothing"]="Vwpd"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=123,
- ["num_for_nothing"]="Vwpf"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=124,
- ["num_for_nothing"]="VwpY"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=125,
- ["num_for_nothing"]="VwpZ"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=127,
- ["num_for_nothing"]="Vwpb"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
}
},
@@ -15580,130 +10380,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=122,
- ["num_for_nothing"]="Vwpe"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=124,
- ["num_for_nothing"]="VwpY"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=125,
- ["num_for_nothing"]="VwpZ"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=126,
- ["num_for_nothing"]="Vwpa"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=128,
- ["num_for_nothing"]="VwpU"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
}
},
@@ -15712,130 +10512,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=123,
- ["num_for_nothing"]="Vwpf"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=125,
- ["num_for_nothing"]="VwpZ"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=126,
- ["num_for_nothing"]="Vwpa"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=127,
- ["num_for_nothing"]="Vwpb"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=129,
- ["num_for_nothing"]="VwpV"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
}
},
@@ -15844,130 +10644,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=124,
- ["num_for_nothing"]="VwpY"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=126,
- ["num_for_nothing"]="Vwpa"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=127,
- ["num_for_nothing"]="Vwpb"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=128,
- ["num_for_nothing"]="VwpU"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=130,
- ["num_for_nothing"]="Vwtc"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
}
},
@@ -15976,130 +10776,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=125,
- ["num_for_nothing"]="VwpZ"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=127,
- ["num_for_nothing"]="Vwpb"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=128,
- ["num_for_nothing"]="VwpU"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=129,
- ["num_for_nothing"]="VwpV"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=131,
- ["num_for_nothing"]="Vwtd"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
}
},
@@ -16108,130 +10908,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=126,
- ["num_for_nothing"]="Vwpa"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=128,
- ["num_for_nothing"]="VwpU"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=129,
- ["num_for_nothing"]="VwpV"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=130,
- ["num_for_nothing"]="Vwtc"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=132,
- ["num_for_nothing"]="Vwte"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
}
},
@@ -16240,130 +11040,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=127,
- ["num_for_nothing"]="Vwpb"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=129,
- ["num_for_nothing"]="VwpV"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=130,
- ["num_for_nothing"]="Vwtc"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=131,
- ["num_for_nothing"]="Vwtd"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=133,
- ["num_for_nothing"]="Vwtf"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
}
},
@@ -16372,130 +11172,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=128,
- ["num_for_nothing"]="VwpU"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=130,
- ["num_for_nothing"]="Vwtc"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=131,
- ["num_for_nothing"]="Vwtd"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=132,
- ["num_for_nothing"]="Vwte"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=134,
- ["num_for_nothing"]="VwtY"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
}
},
@@ -16504,130 +11304,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=129,
- ["num_for_nothing"]="VwpV"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=131,
- ["num_for_nothing"]="Vwtd"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=132,
- ["num_for_nothing"]="Vwte"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=133,
- ["num_for_nothing"]="Vwtf"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=135,
- ["num_for_nothing"]="VwtZ"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
}
},
@@ -16636,130 +11436,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=130,
- ["num_for_nothing"]="Vwtc"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=132,
- ["num_for_nothing"]="Vwte"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=133,
- ["num_for_nothing"]="Vwtf"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=134,
- ["num_for_nothing"]="VwtY"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=136,
- ["num_for_nothing"]="Vwta"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
}
},
@@ -16768,130 +11568,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=131,
- ["num_for_nothing"]="Vwtd"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=133,
- ["num_for_nothing"]="Vwtf"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=134,
- ["num_for_nothing"]="VwtY"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=135,
- ["num_for_nothing"]="VwtZ"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=137,
- ["num_for_nothing"]="Vwtb"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
}
},
@@ -16900,130 +11700,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=132,
- ["num_for_nothing"]="Vwte"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=134,
- ["num_for_nothing"]="VwtY"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=135,
- ["num_for_nothing"]="VwtZ"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=136,
- ["num_for_nothing"]="Vwta"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=138,
- ["num_for_nothing"]="VwtU"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
}
},
@@ -17032,130 +11832,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=133,
- ["num_for_nothing"]="Vwtf"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=135,
- ["num_for_nothing"]="VwtZ"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=136,
- ["num_for_nothing"]="Vwta"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=137,
- ["num_for_nothing"]="Vwtb"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=139,
- ["num_for_nothing"]="VwtV"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
}
},
@@ -17164,130 +11964,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=134,
- ["num_for_nothing"]="VwtY"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=136,
- ["num_for_nothing"]="Vwta"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=137,
- ["num_for_nothing"]="Vwtb"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=138,
- ["num_for_nothing"]="VwtU"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=140,
- ["num_for_nothing"]="Vwxc"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
}
},
@@ -17296,130 +12096,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=135,
- ["num_for_nothing"]="VwtZ"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=137,
- ["num_for_nothing"]="Vwtb"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=138,
- ["num_for_nothing"]="VwtU"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=139,
- ["num_for_nothing"]="VwtV"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=141,
- ["num_for_nothing"]="Vwxd"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
}
},
@@ -17428,130 +12228,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=136,
- ["num_for_nothing"]="Vwta"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=138,
- ["num_for_nothing"]="VwtU"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=139,
- ["num_for_nothing"]="VwtV"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=140,
- ["num_for_nothing"]="Vwxc"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=142,
- ["num_for_nothing"]="Vwxe"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
}
},
@@ -17560,130 +12360,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=137,
- ["num_for_nothing"]="Vwtb"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=139,
- ["num_for_nothing"]="VwtV"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=140,
- ["num_for_nothing"]="Vwxc"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=141,
- ["num_for_nothing"]="Vwxd"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=143,
- ["num_for_nothing"]="Vwxf"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
}
},
@@ -17692,130 +12492,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=138,
- ["num_for_nothing"]="VwtU"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=140,
- ["num_for_nothing"]="Vwxc"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=141,
- ["num_for_nothing"]="Vwxd"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=142,
- ["num_for_nothing"]="Vwxe"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=144,
- ["num_for_nothing"]="VwxY"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
}
},
@@ -17824,130 +12624,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=139,
- ["num_for_nothing"]="VwtV"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=141,
- ["num_for_nothing"]="Vwxd"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=142,
- ["num_for_nothing"]="Vwxe"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=143,
- ["num_for_nothing"]="Vwxf"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=145,
- ["num_for_nothing"]="VwxZ"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
}
},
@@ -17956,130 +12756,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=140,
- ["num_for_nothing"]="Vwxc"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=142,
- ["num_for_nothing"]="Vwxe"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=143,
- ["num_for_nothing"]="Vwxf"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=144,
- ["num_for_nothing"]="VwxY"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=146,
- ["num_for_nothing"]="Vwxa"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
}
},
@@ -18088,130 +12888,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=141,
- ["num_for_nothing"]="Vwxd"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=143,
- ["num_for_nothing"]="Vwxf"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=144,
- ["num_for_nothing"]="VwxY"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=145,
- ["num_for_nothing"]="VwxZ"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=147,
- ["num_for_nothing"]="Vwxb"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
}
},
@@ -18220,130 +13020,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=142,
- ["num_for_nothing"]="Vwxe"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=144,
- ["num_for_nothing"]="VwxY"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=145,
- ["num_for_nothing"]="VwxZ"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=146,
- ["num_for_nothing"]="Vwxa"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=148,
- ["num_for_nothing"]="VwxU"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
}
},
@@ -18352,130 +13152,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=143,
- ["num_for_nothing"]="Vwxf"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=145,
- ["num_for_nothing"]="VwxZ"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=146,
- ["num_for_nothing"]="Vwxa"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=147,
- ["num_for_nothing"]="Vwxb"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=149,
- ["num_for_nothing"]="VwxV"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
}
},
@@ -18484,130 +13284,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=144,
- ["num_for_nothing"]="VwxY"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=146,
- ["num_for_nothing"]="Vwxa"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=147,
- ["num_for_nothing"]="Vwxb"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=148,
- ["num_for_nothing"]="VwxU"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=150,
- ["num_for_nothing"]="Vw1c"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
}
},
@@ -18616,130 +13416,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=145,
- ["num_for_nothing"]="VwxZ"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=147,
- ["num_for_nothing"]="Vwxb"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=148,
- ["num_for_nothing"]="VwxU"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=149,
- ["num_for_nothing"]="VwxV"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=151,
- ["num_for_nothing"]="Vw1d"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
}
},
@@ -18748,130 +13548,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=146,
- ["num_for_nothing"]="Vwxa"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=148,
- ["num_for_nothing"]="VwxU"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=149,
- ["num_for_nothing"]="VwxV"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=150,
- ["num_for_nothing"]="Vw1c"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=152,
- ["num_for_nothing"]="Vw1e"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
}
},
@@ -18880,130 +13680,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=147,
- ["num_for_nothing"]="Vwxb"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=149,
- ["num_for_nothing"]="VwxV"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=150,
- ["num_for_nothing"]="Vw1c"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=151,
- ["num_for_nothing"]="Vw1d"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=153,
- ["num_for_nothing"]="Vw1f"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
}
},
@@ -19012,130 +13812,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=148,
- ["num_for_nothing"]="VwxU"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=150,
- ["num_for_nothing"]="Vw1c"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=151,
- ["num_for_nothing"]="Vw1d"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=152,
- ["num_for_nothing"]="Vw1e"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=154,
- ["num_for_nothing"]="Vw1Y"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
}
},
@@ -19144,130 +13944,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=149,
- ["num_for_nothing"]="VwxV"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=151,
- ["num_for_nothing"]="Vw1d"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=152,
- ["num_for_nothing"]="Vw1e"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=153,
- ["num_for_nothing"]="Vw1f"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=155,
- ["num_for_nothing"]="Vw1Z"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
}
},
@@ -19276,130 +14076,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=150,
- ["num_for_nothing"]="Vw1c"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=152,
- ["num_for_nothing"]="Vw1e"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=153,
- ["num_for_nothing"]="Vw1f"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=154,
- ["num_for_nothing"]="Vw1Y"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=156,
- ["num_for_nothing"]="Vw1a"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
}
},
@@ -19408,130 +14208,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=151,
- ["num_for_nothing"]="Vw1d"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=153,
- ["num_for_nothing"]="Vw1f"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=154,
- ["num_for_nothing"]="Vw1Y"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=155,
- ["num_for_nothing"]="Vw1Z"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=157,
- ["num_for_nothing"]="Vw1b"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
}
},
@@ -19540,130 +14340,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=152,
- ["num_for_nothing"]="Vw1e"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=154,
- ["num_for_nothing"]="Vw1Y"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=155,
- ["num_for_nothing"]="Vw1Z"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=156,
- ["num_for_nothing"]="Vw1a"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=158,
- ["num_for_nothing"]="Vw1U"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
}
},
@@ -19672,130 +14472,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=153,
- ["num_for_nothing"]="Vw1f"
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1009,
+ ["id_for_nothing"]="VwhcCg==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=155,
- ["num_for_nothing"]="Vw1Z"
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1015,
+ ["id_for_nothing"]="VwhdBg==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=156,
- ["num_for_nothing"]="Vw1a"
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1021,
+ ["id_for_nothing"]="VwheAg==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=157,
- ["num_for_nothing"]="Vw1b"
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1027,
+ ["id_for_nothing"]="VwheBA==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=159,
- ["num_for_nothing"]="Vw1V"
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
}
},
@@ -19804,130 +14604,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=154,
- ["num_for_nothing"]="Vw1Y"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=156,
- ["num_for_nothing"]="Vw1a"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=157,
- ["num_for_nothing"]="Vw1b"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=158,
- ["num_for_nothing"]="Vw1U"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=160,
- ["num_for_nothing"]="Vw5c"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
}
}
},
@@ -19936,130 +14736,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=155,
- ["num_for_nothing"]="Vw1Z"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=157,
- ["num_for_nothing"]="Vw1b"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=158,
- ["num_for_nothing"]="Vw1U"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=159,
- ["num_for_nothing"]="Vw1V"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=161,
- ["num_for_nothing"]="Vw5d"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
}
}
},
@@ -20068,130 +14868,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=156,
- ["num_for_nothing"]="Vw1a"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=158,
- ["num_for_nothing"]="Vw1U"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=159,
- ["num_for_nothing"]="Vw1V"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=160,
- ["num_for_nothing"]="Vw5c"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=162,
- ["num_for_nothing"]="Vw5e"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
}
},
@@ -20200,130 +15000,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=157,
- ["num_for_nothing"]="Vw1b"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=159,
- ["num_for_nothing"]="Vw1V"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=160,
- ["num_for_nothing"]="Vw5c"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=161,
- ["num_for_nothing"]="Vw5d"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=163,
- ["num_for_nothing"]="Vw5f"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
}
}
},
@@ -20332,130 +15132,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=158,
- ["num_for_nothing"]="Vw1U"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=160,
- ["num_for_nothing"]="Vw5c"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=161,
- ["num_for_nothing"]="Vw5d"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=162,
- ["num_for_nothing"]="Vw5e"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=164,
- ["num_for_nothing"]="Vw5Y"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
}
}
},
@@ -20464,130 +15264,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=159,
- ["num_for_nothing"]="Vw1V"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=161,
- ["num_for_nothing"]="Vw5d"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=162,
- ["num_for_nothing"]="Vw5e"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=163,
- ["num_for_nothing"]="Vw5f"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=51,
+ ["num_for_nothing"]="Uwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=165,
- ["num_for_nothing"]="Vw5Z"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
}
}
},
@@ -20596,130 +15396,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=160,
- ["num_for_nothing"]="Vw5c"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=162,
- ["num_for_nothing"]="Vw5e"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=163,
- ["num_for_nothing"]="Vw5f"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=164,
- ["num_for_nothing"]="Vw5Y"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=52,
+ ["num_for_nothing"]="Uwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=166,
- ["num_for_nothing"]="Vw5a"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
}
}
},
@@ -20728,130 +15528,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=161,
- ["num_for_nothing"]="Vw5d"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=163,
- ["num_for_nothing"]="Vw5f"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=164,
- ["num_for_nothing"]="Vw5Y"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=165,
- ["num_for_nothing"]="Vw5Z"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=53,
+ ["num_for_nothing"]="Uws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=167,
- ["num_for_nothing"]="Vw5b"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
}
}
},
@@ -20860,130 +15660,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=162,
- ["num_for_nothing"]="Vw5e"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=164,
- ["num_for_nothing"]="Vw5Y"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=165,
- ["num_for_nothing"]="Vw5Z"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=166,
- ["num_for_nothing"]="Vw5a"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=54,
+ ["num_for_nothing"]="Uww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=168,
- ["num_for_nothing"]="Vw5U"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
}
}
},
@@ -20992,130 +15792,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=163,
- ["num_for_nothing"]="Vw5f"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=165,
- ["num_for_nothing"]="Vw5Z"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=166,
- ["num_for_nothing"]="Vw5a"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=167,
- ["num_for_nothing"]="Vw5b"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=55,
+ ["num_for_nothing"]="Uw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=169,
- ["num_for_nothing"]="Vw5V"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
}
}
},
@@ -21124,130 +15924,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=164,
- ["num_for_nothing"]="Vw5Y"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=166,
- ["num_for_nothing"]="Vw5a"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=167,
- ["num_for_nothing"]="Vw5b"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=168,
- ["num_for_nothing"]="Vw5U"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=56,
+ ["num_for_nothing"]="Uw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=170,
- ["num_for_nothing"]="Vw9c"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
}
}
},
@@ -21256,130 +16056,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=165,
- ["num_for_nothing"]="Vw5Z"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=167,
- ["num_for_nothing"]="Vw5b"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=168,
- ["num_for_nothing"]="Vw5U"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=169,
- ["num_for_nothing"]="Vw5V"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=57,
+ ["num_for_nothing"]="Uw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=171,
- ["num_for_nothing"]="Vw9d"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
}
}
},
@@ -21388,130 +16188,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=166,
- ["num_for_nothing"]="Vw5a"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=168,
- ["num_for_nothing"]="Vw5U"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=169,
- ["num_for_nothing"]="Vw5V"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=170,
- ["num_for_nothing"]="Vw9c"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=58,
+ ["num_for_nothing"]="UwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=172,
- ["num_for_nothing"]="Vw9e"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
}
}
},
@@ -21520,130 +16320,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=167,
- ["num_for_nothing"]="Vw5b"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=169,
- ["num_for_nothing"]="Vw5V"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=170,
- ["num_for_nothing"]="Vw9c"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=171,
- ["num_for_nothing"]="Vw9d"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=59,
+ ["num_for_nothing"]="UwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=173,
- ["num_for_nothing"]="Vw9f"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
}
}
},
@@ -21652,130 +16452,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=168,
- ["num_for_nothing"]="Vw5U"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=170,
- ["num_for_nothing"]="Vw9c"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=171,
- ["num_for_nothing"]="Vw9d"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=172,
- ["num_for_nothing"]="Vw9e"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=174,
- ["num_for_nothing"]="Vw9Y"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
}
},
@@ -21784,130 +16584,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=169,
- ["num_for_nothing"]="Vw5V"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=171,
- ["num_for_nothing"]="Vw9d"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=172,
- ["num_for_nothing"]="Vw9e"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=173,
- ["num_for_nothing"]="Vw9f"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=61,
+ ["num_for_nothing"]="UAk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=175,
- ["num_for_nothing"]="Vw9Z"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
}
}
},
@@ -21916,130 +16716,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=170,
- ["num_for_nothing"]="Vw9c"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=172,
- ["num_for_nothing"]="Vw9e"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=173,
- ["num_for_nothing"]="Vw9f"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=174,
- ["num_for_nothing"]="Vw9Y"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=62,
+ ["num_for_nothing"]="UAo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=176,
- ["num_for_nothing"]="Vw9a"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
}
}
},
@@ -22048,130 +16848,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=171,
- ["num_for_nothing"]="Vw9d"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=173,
- ["num_for_nothing"]="Vw9f"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=174,
- ["num_for_nothing"]="Vw9Y"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=175,
- ["num_for_nothing"]="Vw9Z"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=63,
+ ["num_for_nothing"]="UAs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=177,
- ["num_for_nothing"]="Vw9b"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
}
}
},
@@ -22180,130 +16980,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=172,
- ["num_for_nothing"]="Vw9e"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=174,
- ["num_for_nothing"]="Vw9Y"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=175,
- ["num_for_nothing"]="Vw9Z"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=176,
- ["num_for_nothing"]="Vw9a"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=64,
+ ["num_for_nothing"]="UAw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=178,
- ["num_for_nothing"]="Vw9U"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
}
}
},
@@ -22312,130 +17112,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=173,
- ["num_for_nothing"]="Vw9f"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=175,
- ["num_for_nothing"]="Vw9Z"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=176,
- ["num_for_nothing"]="Vw9a"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=177,
- ["num_for_nothing"]="Vw9b"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=65,
+ ["num_for_nothing"]="UA0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=179,
- ["num_for_nothing"]="Vw9V"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
}
}
},
@@ -22444,130 +17244,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=91,
+ ["num_for_nothing"]="Xwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=174,
- ["num_for_nothing"]="Vw9Y"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=91,
+ ["num_for_nothing"]="Xwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=176,
- ["num_for_nothing"]="Vw9a"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=91,
+ ["num_for_nothing"]="Xwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=177,
- ["num_for_nothing"]="Vw9b"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=91,
+ ["num_for_nothing"]="Xwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=178,
- ["num_for_nothing"]="Vw9U"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=91,
+ ["num_for_nothing"]="Xwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=66,
+ ["num_for_nothing"]="UA4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
}
}
},
@@ -22576,130 +17376,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=92,
+ ["num_for_nothing"]="Xwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=175,
- ["num_for_nothing"]="Vw9Z"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=92,
+ ["num_for_nothing"]="Xwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=177,
- ["num_for_nothing"]="Vw9b"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=92,
+ ["num_for_nothing"]="Xwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=178,
- ["num_for_nothing"]="Vw9U"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=92,
+ ["num_for_nothing"]="Xwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=179,
- ["num_for_nothing"]="Vw9V"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=92,
+ ["num_for_nothing"]="Xwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=67,
+ ["num_for_nothing"]="UA8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=181,
- ["num_for_nothing"]="VwBd"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
}
}
},
@@ -22708,130 +17508,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=93,
+ ["num_for_nothing"]="Xws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=176,
- ["num_for_nothing"]="Vw9a"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=93,
+ ["num_for_nothing"]="Xws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=178,
- ["num_for_nothing"]="Vw9U"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=93,
+ ["num_for_nothing"]="Xws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=179,
- ["num_for_nothing"]="Vw9V"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=93,
+ ["num_for_nothing"]="Xws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=93,
+ ["num_for_nothing"]="Xws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=68,
+ ["num_for_nothing"]="UAA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=182,
- ["num_for_nothing"]="VwBe"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
}
}
},
@@ -22840,130 +17640,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=94,
+ ["num_for_nothing"]="Xww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=177,
- ["num_for_nothing"]="Vw9b"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=94,
+ ["num_for_nothing"]="Xww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=179,
- ["num_for_nothing"]="Vw9V"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=94,
+ ["num_for_nothing"]="Xww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=94,
+ ["num_for_nothing"]="Xww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=181,
- ["num_for_nothing"]="VwBd"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=94,
+ ["num_for_nothing"]="Xww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=69,
+ ["num_for_nothing"]="UAE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=183,
- ["num_for_nothing"]="VwBf"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
}
}
},
@@ -22972,130 +17772,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=95,
+ ["num_for_nothing"]="Xw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=178,
- ["num_for_nothing"]="Vw9U"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=95,
+ ["num_for_nothing"]="Xw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=95,
+ ["num_for_nothing"]="Xw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=181,
- ["num_for_nothing"]="VwBd"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=95,
+ ["num_for_nothing"]="Xw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=182,
- ["num_for_nothing"]="VwBe"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=95,
+ ["num_for_nothing"]="Xw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=70,
+ ["num_for_nothing"]="UQg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=184,
- ["num_for_nothing"]="VwBY"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
}
}
},
@@ -23104,130 +17904,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=96,
+ ["num_for_nothing"]="Xw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=179,
- ["num_for_nothing"]="Vw9V"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=96,
+ ["num_for_nothing"]="Xw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=181,
- ["num_for_nothing"]="VwBd"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=96,
+ ["num_for_nothing"]="Xw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=182,
- ["num_for_nothing"]="VwBe"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=96,
+ ["num_for_nothing"]="Xw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=183,
- ["num_for_nothing"]="VwBf"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=96,
+ ["num_for_nothing"]="Xw4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=71,
+ ["num_for_nothing"]="UQk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=185,
- ["num_for_nothing"]="VwBZ"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
}
}
},
@@ -23236,130 +18036,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=97,
+ ["num_for_nothing"]="Xw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=97,
+ ["num_for_nothing"]="Xw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=182,
- ["num_for_nothing"]="VwBe"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=97,
+ ["num_for_nothing"]="Xw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=183,
- ["num_for_nothing"]="VwBf"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=97,
+ ["num_for_nothing"]="Xw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=184,
- ["num_for_nothing"]="VwBY"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=97,
+ ["num_for_nothing"]="Xw8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=72,
+ ["num_for_nothing"]="UQo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=186,
- ["num_for_nothing"]="VwBa"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
}
}
},
@@ -23368,130 +18168,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=98,
+ ["num_for_nothing"]="XwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=181,
- ["num_for_nothing"]="VwBd"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=98,
+ ["num_for_nothing"]="XwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=183,
- ["num_for_nothing"]="VwBf"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=98,
+ ["num_for_nothing"]="XwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=184,
- ["num_for_nothing"]="VwBY"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=98,
+ ["num_for_nothing"]="XwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=185,
- ["num_for_nothing"]="VwBZ"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=98,
+ ["num_for_nothing"]="XwA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=73,
+ ["num_for_nothing"]="UQs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=187,
- ["num_for_nothing"]="VwBb"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
}
}
},
@@ -23500,130 +18300,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=99,
+ ["num_for_nothing"]="XwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=182,
- ["num_for_nothing"]="VwBe"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=99,
+ ["num_for_nothing"]="XwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=184,
- ["num_for_nothing"]="VwBY"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=99,
+ ["num_for_nothing"]="XwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=185,
- ["num_for_nothing"]="VwBZ"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=99,
+ ["num_for_nothing"]="XwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=186,
- ["num_for_nothing"]="VwBa"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=99,
+ ["num_for_nothing"]="XwE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=74,
+ ["num_for_nothing"]="UQw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=188,
- ["num_for_nothing"]="VwBU"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
}
}
},
@@ -23632,130 +18432,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=183,
- ["num_for_nothing"]="VwBf"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=185,
- ["num_for_nothing"]="VwBZ"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=186,
- ["num_for_nothing"]="VwBa"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=187,
- ["num_for_nothing"]="VwBb"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=75,
+ ["num_for_nothing"]="UQ0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=189,
- ["num_for_nothing"]="VwBV"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
}
}
},
@@ -23764,130 +18564,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=101,
+ ["num_for_nothing"]="Vwhd"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=184,
- ["num_for_nothing"]="VwBY"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=101,
+ ["num_for_nothing"]="Vwhd"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=186,
- ["num_for_nothing"]="VwBa"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=101,
+ ["num_for_nothing"]="Vwhd"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=187,
- ["num_for_nothing"]="VwBb"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=101,
+ ["num_for_nothing"]="Vwhd"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=188,
- ["num_for_nothing"]="VwBU"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=101,
+ ["num_for_nothing"]="Vwhd"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=76,
+ ["num_for_nothing"]="UQ4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=190,
- ["num_for_nothing"]="VwFc"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=31,
+ ["num_for_nothing"]="VQk="
}
}
},
@@ -23896,130 +18696,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=102,
+ ["num_for_nothing"]="Vwhe"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=185,
- ["num_for_nothing"]="VwBZ"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=102,
+ ["num_for_nothing"]="Vwhe"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=187,
- ["num_for_nothing"]="VwBb"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=102,
+ ["num_for_nothing"]="Vwhe"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=188,
- ["num_for_nothing"]="VwBU"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=102,
+ ["num_for_nothing"]="Vwhe"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=189,
- ["num_for_nothing"]="VwBV"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=102,
+ ["num_for_nothing"]="Vwhe"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=77,
+ ["num_for_nothing"]="UQ8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=191,
- ["num_for_nothing"]="VwFd"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=32,
+ ["num_for_nothing"]="VQo="
}
}
},
@@ -24028,130 +18828,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=103,
+ ["num_for_nothing"]="Vwhf"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=186,
- ["num_for_nothing"]="VwBa"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=103,
+ ["num_for_nothing"]="Vwhf"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=188,
- ["num_for_nothing"]="VwBU"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=103,
+ ["num_for_nothing"]="Vwhf"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=189,
- ["num_for_nothing"]="VwBV"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=103,
+ ["num_for_nothing"]="Vwhf"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=190,
- ["num_for_nothing"]="VwFc"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=103,
+ ["num_for_nothing"]="Vwhf"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=78,
+ ["num_for_nothing"]="UQA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=192,
- ["num_for_nothing"]="VwFe"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=33,
+ ["num_for_nothing"]="VQs="
}
}
},
@@ -24160,130 +18960,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=104,
+ ["num_for_nothing"]="VwhY"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=187,
- ["num_for_nothing"]="VwBb"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=104,
+ ["num_for_nothing"]="VwhY"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=189,
- ["num_for_nothing"]="VwBV"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=104,
+ ["num_for_nothing"]="VwhY"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=190,
- ["num_for_nothing"]="VwFc"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=104,
+ ["num_for_nothing"]="VwhY"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=191,
- ["num_for_nothing"]="VwFd"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=104,
+ ["num_for_nothing"]="VwhY"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=79,
+ ["num_for_nothing"]="UQE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=193,
- ["num_for_nothing"]="VwFf"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=34,
+ ["num_for_nothing"]="VQw="
}
}
},
@@ -24292,130 +19092,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=105,
+ ["num_for_nothing"]="VwhZ"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=188,
- ["num_for_nothing"]="VwBU"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=105,
+ ["num_for_nothing"]="VwhZ"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=190,
- ["num_for_nothing"]="VwFc"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=105,
+ ["num_for_nothing"]="VwhZ"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=191,
- ["num_for_nothing"]="VwFd"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=105,
+ ["num_for_nothing"]="VwhZ"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=192,
- ["num_for_nothing"]="VwFe"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=105,
+ ["num_for_nothing"]="VwhZ"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=194,
- ["num_for_nothing"]="VwFY"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=35,
+ ["num_for_nothing"]="VQ0="
}
}
},
@@ -24424,130 +19224,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=106,
+ ["num_for_nothing"]="Vwha"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=189,
- ["num_for_nothing"]="VwBV"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=106,
+ ["num_for_nothing"]="Vwha"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=191,
- ["num_for_nothing"]="VwFd"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=106,
+ ["num_for_nothing"]="Vwha"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=192,
- ["num_for_nothing"]="VwFe"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=106,
+ ["num_for_nothing"]="Vwha"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=193,
- ["num_for_nothing"]="VwFf"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=106,
+ ["num_for_nothing"]="Vwha"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=81,
+ ["num_for_nothing"]="Xgk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=195,
- ["num_for_nothing"]="VwFZ"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=36,
+ ["num_for_nothing"]="VQ4="
}
}
},
@@ -24556,130 +19356,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=107,
+ ["num_for_nothing"]="Vwhb"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=190,
- ["num_for_nothing"]="VwFc"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=107,
+ ["num_for_nothing"]="Vwhb"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=192,
- ["num_for_nothing"]="VwFe"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=107,
+ ["num_for_nothing"]="Vwhb"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=193,
- ["num_for_nothing"]="VwFf"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=107,
+ ["num_for_nothing"]="Vwhb"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=194,
- ["num_for_nothing"]="VwFY"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=107,
+ ["num_for_nothing"]="Vwhb"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=82,
+ ["num_for_nothing"]="Xgo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=196,
- ["num_for_nothing"]="VwFa"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=37,
+ ["num_for_nothing"]="VQ8="
}
}
},
@@ -24688,130 +19488,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=108,
+ ["num_for_nothing"]="VwhU"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=191,
- ["num_for_nothing"]="VwFd"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=108,
+ ["num_for_nothing"]="VwhU"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=193,
- ["num_for_nothing"]="VwFf"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=108,
+ ["num_for_nothing"]="VwhU"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=194,
- ["num_for_nothing"]="VwFY"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=108,
+ ["num_for_nothing"]="VwhU"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=195,
- ["num_for_nothing"]="VwFZ"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=108,
+ ["num_for_nothing"]="VwhU"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=83,
+ ["num_for_nothing"]="Xgs="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=197,
- ["num_for_nothing"]="VwFb"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=38,
+ ["num_for_nothing"]="VQA="
}
}
},
@@ -24820,130 +19620,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=109,
+ ["num_for_nothing"]="VwhV"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=192,
- ["num_for_nothing"]="VwFe"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=109,
+ ["num_for_nothing"]="VwhV"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=194,
- ["num_for_nothing"]="VwFY"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=109,
+ ["num_for_nothing"]="VwhV"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=195,
- ["num_for_nothing"]="VwFZ"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=109,
+ ["num_for_nothing"]="VwhV"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=196,
- ["num_for_nothing"]="VwFa"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=109,
+ ["num_for_nothing"]="VwhV"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=84,
+ ["num_for_nothing"]="Xgw="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=198,
- ["num_for_nothing"]="VwFU"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=39,
+ ["num_for_nothing"]="VQE="
}
}
},
@@ -24952,130 +19752,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=110,
+ ["num_for_nothing"]="Vwlc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=193,
- ["num_for_nothing"]="VwFf"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=110,
+ ["num_for_nothing"]="Vwlc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=195,
- ["num_for_nothing"]="VwFZ"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=110,
+ ["num_for_nothing"]="Vwlc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=196,
- ["num_for_nothing"]="VwFa"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=110,
+ ["num_for_nothing"]="Vwlc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=197,
- ["num_for_nothing"]="VwFb"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=110,
+ ["num_for_nothing"]="Vwlc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=85,
+ ["num_for_nothing"]="Xg0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=199,
- ["num_for_nothing"]="VwFV"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
}
}
},
@@ -25084,130 +19884,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=111,
+ ["num_for_nothing"]="Vwld"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=194,
- ["num_for_nothing"]="VwFY"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=111,
+ ["num_for_nothing"]="Vwld"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=196,
- ["num_for_nothing"]="VwFa"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=111,
+ ["num_for_nothing"]="Vwld"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=197,
- ["num_for_nothing"]="VwFb"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=111,
+ ["num_for_nothing"]="Vwld"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=198,
- ["num_for_nothing"]="VwFU"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=111,
+ ["num_for_nothing"]="Vwld"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=86,
+ ["num_for_nothing"]="Xg4="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=41,
+ ["num_for_nothing"]="Ugk="
}
}
},
@@ -25216,130 +20016,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=112,
+ ["num_for_nothing"]="Vwle"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=195,
- ["num_for_nothing"]="VwFZ"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=112,
+ ["num_for_nothing"]="Vwle"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=197,
- ["num_for_nothing"]="VwFb"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=112,
+ ["num_for_nothing"]="Vwle"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=198,
- ["num_for_nothing"]="VwFU"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=112,
+ ["num_for_nothing"]="Vwle"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=199,
- ["num_for_nothing"]="VwFV"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=112,
+ ["num_for_nothing"]="Vwle"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=87,
+ ["num_for_nothing"]="Xg8="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=201,
- ["num_for_nothing"]="VAhd"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=42,
+ ["num_for_nothing"]="Ugo="
}
}
},
@@ -25348,130 +20148,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=113,
+ ["num_for_nothing"]="Vwlf"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=196,
- ["num_for_nothing"]="VwFa"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=113,
+ ["num_for_nothing"]="Vwlf"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=198,
- ["num_for_nothing"]="VwFU"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=113,
+ ["num_for_nothing"]="Vwlf"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=199,
- ["num_for_nothing"]="VwFV"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=113,
+ ["num_for_nothing"]="Vwlf"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=113,
+ ["num_for_nothing"]="Vwlf"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=88,
+ ["num_for_nothing"]="XgA="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=202,
- ["num_for_nothing"]="VAhe"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=43,
+ ["num_for_nothing"]="Ugs="
}
}
},
@@ -25480,130 +20280,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=114,
+ ["num_for_nothing"]="VwlY"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=197,
- ["num_for_nothing"]="VwFb"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=114,
+ ["num_for_nothing"]="VwlY"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=199,
- ["num_for_nothing"]="VwFV"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=114,
+ ["num_for_nothing"]="VwlY"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=114,
+ ["num_for_nothing"]="VwlY"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=201,
- ["num_for_nothing"]="VAhd"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=114,
+ ["num_for_nothing"]="VwlY"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=89,
+ ["num_for_nothing"]="XgE="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=203,
- ["num_for_nothing"]="VAhf"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=44,
+ ["num_for_nothing"]="Ugw="
}
}
},
@@ -25612,130 +20412,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=115,
+ ["num_for_nothing"]="VwlZ"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=198,
- ["num_for_nothing"]="VwFU"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=115,
+ ["num_for_nothing"]="VwlZ"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=115,
+ ["num_for_nothing"]="VwlZ"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=201,
- ["num_for_nothing"]="VAhd"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=115,
+ ["num_for_nothing"]="VwlZ"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=202,
- ["num_for_nothing"]="VAhe"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=115,
+ ["num_for_nothing"]="VwlZ"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=90,
+ ["num_for_nothing"]="Xwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=204,
- ["num_for_nothing"]="VAhY"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=45,
+ ["num_for_nothing"]="Ug0="
}
}
},
@@ -25744,130 +20544,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=116,
+ ["num_for_nothing"]="Vwla"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=91,
+ ["num_for_nothing"]="Xwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=199,
- ["num_for_nothing"]="VwFV"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=116,
+ ["num_for_nothing"]="Vwla"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=91,
+ ["num_for_nothing"]="Xwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=201,
- ["num_for_nothing"]="VAhd"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=116,
+ ["num_for_nothing"]="Vwla"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=91,
+ ["num_for_nothing"]="Xwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=202,
- ["num_for_nothing"]="VAhe"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=116,
+ ["num_for_nothing"]="Vwla"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=91,
+ ["num_for_nothing"]="Xwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=203,
- ["num_for_nothing"]="VAhf"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=116,
+ ["num_for_nothing"]="Vwla"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=91,
+ ["num_for_nothing"]="Xwk="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=205,
- ["num_for_nothing"]="VAhZ"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=46,
+ ["num_for_nothing"]="Ug4="
}
}
},
@@ -25876,130 +20676,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=117,
+ ["num_for_nothing"]="Vwlb"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=92,
+ ["num_for_nothing"]="Xwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=117,
+ ["num_for_nothing"]="Vwlb"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=92,
+ ["num_for_nothing"]="Xwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=202,
- ["num_for_nothing"]="VAhe"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=117,
+ ["num_for_nothing"]="Vwlb"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=92,
+ ["num_for_nothing"]="Xwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=203,
- ["num_for_nothing"]="VAhf"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=117,
+ ["num_for_nothing"]="Vwlb"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=92,
+ ["num_for_nothing"]="Xwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=204,
- ["num_for_nothing"]="VAhY"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=117,
+ ["num_for_nothing"]="Vwlb"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=92,
+ ["num_for_nothing"]="Xwo="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=206,
- ["num_for_nothing"]="VAha"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=47,
+ ["num_for_nothing"]="Ug8="
}
}
},
@@ -26008,130 +20808,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=118,
+ ["num_for_nothing"]="VwlU"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=93,
+ ["num_for_nothing"]="Xws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=201,
- ["num_for_nothing"]="VAhd"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=118,
+ ["num_for_nothing"]="VwlU"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=93,
+ ["num_for_nothing"]="Xws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=203,
- ["num_for_nothing"]="VAhf"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=118,
+ ["num_for_nothing"]="VwlU"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=93,
+ ["num_for_nothing"]="Xws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=204,
- ["num_for_nothing"]="VAhY"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=118,
+ ["num_for_nothing"]="VwlU"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=93,
+ ["num_for_nothing"]="Xws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=205,
- ["num_for_nothing"]="VAhZ"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=118,
+ ["num_for_nothing"]="VwlU"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=93,
+ ["num_for_nothing"]="Xws="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=207,
- ["num_for_nothing"]="VAhb"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=48,
+ ["num_for_nothing"]="UgA="
}
}
},
@@ -26140,130 +20940,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=119,
+ ["num_for_nothing"]="VwlV"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=94,
+ ["num_for_nothing"]="Xww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=202,
- ["num_for_nothing"]="VAhe"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=119,
+ ["num_for_nothing"]="VwlV"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=94,
+ ["num_for_nothing"]="Xww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=204,
- ["num_for_nothing"]="VAhY"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=119,
+ ["num_for_nothing"]="VwlV"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=94,
+ ["num_for_nothing"]="Xww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=205,
- ["num_for_nothing"]="VAhZ"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=119,
+ ["num_for_nothing"]="VwlV"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=94,
+ ["num_for_nothing"]="Xww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=206,
- ["num_for_nothing"]="VAha"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=119,
+ ["num_for_nothing"]="VwlV"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=94,
+ ["num_for_nothing"]="Xww="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=208,
- ["num_for_nothing"]="VAhU"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=49,
+ ["num_for_nothing"]="UgE="
}
}
},
@@ -26272,130 +21072,130 @@ local equip_level = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=120,
+ ["num_for_nothing"]="Vwpc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1005,
+ ["id_for_nothing"]="VwhcBg==",
+ ["num"]=95,
+ ["num_for_nothing"]="Xw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=203,
- ["num_for_nothing"]="VAhf"
+ ["id"]=1006,
+ ["id_for_nothing"]="VwhcBQ==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
}
},
["hat_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1010,
+ ["id_for_nothing"]="VwhdAw==",
+ ["num"]=120,
+ ["num_for_nothing"]="Vwpc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1011,
+ ["id_for_nothing"]="VwhdAg==",
+ ["num"]=95,
+ ["num_for_nothing"]="Xw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=205,
- ["num_for_nothing"]="VAhZ"
+ ["id"]=1012,
+ ["id_for_nothing"]="VwhdAQ==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
}
},
["clothes_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1016,
+ ["id_for_nothing"]="VwhdBQ==",
+ ["num"]=120,
+ ["num_for_nothing"]="Vwpc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1017,
+ ["id_for_nothing"]="VwhdBA==",
+ ["num"]=95,
+ ["num_for_nothing"]="Xw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=206,
- ["num_for_nothing"]="VAha"
+ ["id"]=1018,
+ ["id_for_nothing"]="VwhdCw==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
}
},
["belt_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1022,
+ ["id_for_nothing"]="VwheAQ==",
+ ["num"]=120,
+ ["num_for_nothing"]="Vwpc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1023,
+ ["id_for_nothing"]="VwheAA==",
+ ["num"]=95,
+ ["num_for_nothing"]="Xw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=207,
- ["num_for_nothing"]="VAhb"
+ ["id"]=1024,
+ ["id_for_nothing"]="VwheBw==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
}
},
["handguard_cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1028,
+ ["id_for_nothing"]="VwheCw==",
+ ["num"]=120,
+ ["num_for_nothing"]="Vwpc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1029,
+ ["id_for_nothing"]="VwheCg==",
+ ["num"]=95,
+ ["num_for_nothing"]="Xw0="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=209,
- ["num_for_nothing"]="VAhV"
+ ["id"]=1030,
+ ["id_for_nothing"]="VwhfAw==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
}
}
}
diff --git a/lua/app/config/equip_level.lua.meta b/lua/app/config/equip_level.lua.meta
index ada72944..d22aebfb 100644
--- a/lua/app/config/equip_level.lua.meta
+++ b/lua/app/config/equip_level.lua.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: bcf29cf8faf6bcf49a5a68926eee352e
+guid: ec377c562de1a074f8d29dc2a7eeeb81
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/lua/app/config/hero.lua b/lua/app/config/hero.lua
index a754bfd1..9b918709 100644
--- a/lua/app/config/hero.lua
+++ b/lua/app/config/hero.lua
@@ -174,7 +174,7 @@ local hero = {
["model_id"]="p0009",
["icon"]="11",
["item_id"]=13002,
- ["unlock_chapter"]=15,
+ ["unlock_chapter"]=9,
["is_show"]=1,
["collection_point"]=3
},
@@ -198,43 +198,43 @@ local hero = {
["rouge_skill_7"]=1400107,
["begin_lv"]=5,
["hp"]={
- 18000000,
- 20400000,
- 22800000,
- 25320000,
- 27960000,
- 30720000,
- 33720000,
- 36960000,
- 40560000,
- 44520000,
- 48840000,
- 53640000,
- 59040000,
- 65040000,
- 71880000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000
},
["atk"]={
- 9000000,
- 10200000,
- 11400000,
- 12660000,
- 13980000,
- 15360000,
- 16860000,
- 18480000,
- 20280000,
- 22260000,
- 24420000,
- 26820000,
- 29520000,
- 32520000,
- 35940000
+ 6000000,
+ 6840000,
+ 7680000,
+ 8560000,
+ 9480000,
+ 10480000,
+ 12280000,
+ 14220000,
+ 16470000,
+ 18950000,
+ 21650000,
+ 24650000,
+ 28030000,
+ 31780000,
+ 36060000
},
["model_id"]="p0011",
["icon"]="16",
["item_id"]=14001,
- ["unlock_chapter"]=10,
+ ["unlock_chapter"]=14,
["is_show"]=1,
["collection_point"]=5
},
@@ -258,38 +258,38 @@ local hero = {
["rouge_skill_7"]=1400207,
["begin_lv"]=5,
["hp"]={
- 18000000,
- 20400000,
- 22800000,
- 25320000,
- 27960000,
- 30720000,
- 33720000,
- 36960000,
- 40560000,
- 44520000,
- 48840000,
- 53640000,
- 59040000,
- 65040000,
- 71880000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000
},
["atk"]={
- 9000000,
- 10200000,
- 11400000,
- 12660000,
- 13980000,
- 15360000,
- 16860000,
- 18480000,
- 20280000,
- 22260000,
- 24420000,
- 26820000,
- 29520000,
- 32520000,
- 35940000
+ 6000000,
+ 6840000,
+ 7680000,
+ 8560000,
+ 9480000,
+ 10480000,
+ 12280000,
+ 14220000,
+ 16470000,
+ 18950000,
+ 21650000,
+ 24650000,
+ 28030000,
+ 31780000,
+ 36060000
},
["model_id"]="p0018",
["icon"]="23",
@@ -411,7 +411,7 @@ local hero = {
["model_id"]="p0010",
["icon"]="12",
["item_id"]=23001,
- ["unlock_chapter"]=11,
+ ["unlock_chapter"]=8,
["is_show"]=1,
["collection_point"]=3
},
@@ -471,7 +471,7 @@ local hero = {
["model_id"]="p0012",
["icon"]="7",
["item_id"]=23002,
- ["unlock_chapter"]=7,
+ ["unlock_chapter"]=5,
["is_show"]=1,
["collection_point"]=3
},
@@ -495,43 +495,43 @@ local hero = {
["rouge_skill_7"]=2400107,
["begin_lv"]=5,
["hp"]={
- 18000000,
- 20400000,
- 22800000,
- 25320000,
- 27960000,
- 30720000,
- 33720000,
- 36960000,
- 40560000,
- 44520000,
- 48840000,
- 53640000,
- 59040000,
- 65040000,
- 71880000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000
},
["atk"]={
- 9000000,
- 10200000,
- 11400000,
- 12660000,
- 13980000,
- 15360000,
- 16860000,
- 18480000,
- 20280000,
- 22260000,
- 24420000,
- 26820000,
- 29520000,
- 32520000,
- 35940000
+ 6000000,
+ 6840000,
+ 7680000,
+ 8560000,
+ 9480000,
+ 10480000,
+ 12280000,
+ 14220000,
+ 16470000,
+ 18950000,
+ 21650000,
+ 24650000,
+ 28030000,
+ 31780000,
+ 36060000
},
["model_id"]="p0007",
["icon"]="17",
["item_id"]=24001,
- ["unlock_chapter"]=4,
+ ["unlock_chapter"]=6,
["is_show"]=1,
["collection_point"]=5
},
@@ -555,38 +555,38 @@ local hero = {
["rouge_skill_7"]=2400207,
["begin_lv"]=5,
["hp"]={
- 18000000,
- 20400000,
- 22800000,
- 25320000,
- 27960000,
- 30720000,
- 33720000,
- 36960000,
- 40560000,
- 44520000,
- 48840000,
- 53640000,
- 59040000,
- 65040000,
- 71880000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000
},
["atk"]={
- 9000000,
- 10200000,
- 11400000,
- 12660000,
- 13980000,
- 15360000,
- 16860000,
- 18480000,
- 20280000,
- 22260000,
- 24420000,
- 26820000,
- 29520000,
- 32520000,
- 35940000
+ 6000000,
+ 6840000,
+ 7680000,
+ 8560000,
+ 9480000,
+ 10480000,
+ 12280000,
+ 14220000,
+ 16470000,
+ 18950000,
+ 21650000,
+ 24650000,
+ 28030000,
+ 31780000,
+ 36060000
},
["model_id"]="p0017",
["icon"]="22",
@@ -768,7 +768,7 @@ local hero = {
["model_id"]="p0020",
["icon"]="13",
["item_id"]=33002,
- ["unlock_chapter"]=13,
+ ["unlock_chapter"]=7,
["is_show"]=1,
["collection_point"]=3
},
@@ -792,38 +792,38 @@ local hero = {
["rouge_skill_7"]=3400107,
["begin_lv"]=5,
["hp"]={
- 18000000,
- 20400000,
- 22800000,
- 25320000,
- 27960000,
- 30720000,
- 33720000,
- 36960000,
- 40560000,
- 44520000,
- 48840000,
- 53640000,
- 59040000,
- 65040000,
- 71880000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000
},
["atk"]={
- 9000000,
- 10200000,
- 11400000,
- 12660000,
- 13980000,
- 15360000,
- 16860000,
- 18480000,
- 20280000,
- 22260000,
- 24420000,
- 26820000,
- 29520000,
- 32520000,
- 35940000
+ 6000000,
+ 6840000,
+ 7680000,
+ 8560000,
+ 9480000,
+ 10480000,
+ 12280000,
+ 14220000,
+ 16470000,
+ 18950000,
+ 21650000,
+ 24650000,
+ 28030000,
+ 31780000,
+ 36060000
},
["model_id"]="p0016",
["icon"]="18",
@@ -852,38 +852,38 @@ local hero = {
["rouge_skill_7"]=3400207,
["begin_lv"]=5,
["hp"]={
- 18000000,
- 20400000,
- 22800000,
- 25320000,
- 27960000,
- 30720000,
- 33720000,
- 36960000,
- 40560000,
- 44520000,
- 48840000,
- 53640000,
- 59040000,
- 65040000,
- 71880000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000
},
["atk"]={
- 9000000,
- 10200000,
- 11400000,
- 12660000,
- 13980000,
- 15360000,
- 16860000,
- 18480000,
- 20280000,
- 22260000,
- 24420000,
- 26820000,
- 29520000,
- 32520000,
- 35940000
+ 6000000,
+ 6840000,
+ 7680000,
+ 8560000,
+ 9480000,
+ 10480000,
+ 12280000,
+ 14220000,
+ 16470000,
+ 18950000,
+ 21650000,
+ 24650000,
+ 28030000,
+ 31780000,
+ 36060000
},
["model_id"]="p0024",
["icon"]="24",
@@ -1065,7 +1065,7 @@ local hero = {
["model_id"]="p0021",
["icon"]="14",
["item_id"]=43002,
- ["unlock_chapter"]=9,
+ ["unlock_chapter"]=7,
["is_show"]=1,
["collection_point"]=3
},
@@ -1089,43 +1089,43 @@ local hero = {
["rouge_skill_7"]=4400107,
["begin_lv"]=5,
["hp"]={
- 18000000,
- 20400000,
- 22800000,
- 25320000,
- 27960000,
- 30720000,
- 33720000,
- 36960000,
- 40560000,
- 44520000,
- 48840000,
- 53640000,
- 59040000,
- 65040000,
- 71880000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000
},
["atk"]={
- 9000000,
- 10200000,
- 11400000,
- 12660000,
- 13980000,
- 15360000,
- 16860000,
- 18480000,
- 20280000,
- 22260000,
- 24420000,
- 26820000,
- 29520000,
- 32520000,
- 35940000
+ 6000000,
+ 6840000,
+ 7680000,
+ 8560000,
+ 9480000,
+ 10480000,
+ 12280000,
+ 14220000,
+ 16470000,
+ 18950000,
+ 21650000,
+ 24650000,
+ 28030000,
+ 31780000,
+ 36060000
},
["model_id"]="p0008",
["icon"]="19",
["item_id"]=44001,
- ["unlock_chapter"]=6,
+ ["unlock_chapter"]=10,
["is_show"]=1,
["collection_point"]=5
},
@@ -1149,43 +1149,43 @@ local hero = {
["rouge_skill_7"]=4400207,
["begin_lv"]=5,
["hp"]={
- 18000000,
- 20400000,
- 22800000,
- 25320000,
- 27960000,
- 30720000,
- 33720000,
- 36960000,
- 40560000,
- 44520000,
- 48840000,
- 53640000,
- 59040000,
- 65040000,
- 71880000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000
},
["atk"]={
- 9000000,
- 10200000,
- 11400000,
- 12660000,
- 13980000,
- 15360000,
- 16860000,
- 18480000,
- 20280000,
- 22260000,
- 24420000,
- 26820000,
- 29520000,
- 32520000,
- 35940000
+ 6000000,
+ 6840000,
+ 7680000,
+ 8560000,
+ 9480000,
+ 10480000,
+ 12280000,
+ 14220000,
+ 16470000,
+ 18950000,
+ 21650000,
+ 24650000,
+ 28030000,
+ 31780000,
+ 36060000
},
["model_id"]="p0025",
["icon"]="25",
["item_id"]=44002,
- ["unlock_chapter"]=15,
+ ["unlock_chapter"]=18,
["is_show"]=1,
["collection_point"]=5
},
@@ -1305,7 +1305,7 @@ local hero = {
["model_id"]="p0015",
["icon"]="10",
["item_id"]=53001,
- ["unlock_chapter"]=16,
+ ["unlock_chapter"]=9,
["is_show"]=1,
["collection_point"]=3
},
@@ -1389,38 +1389,38 @@ local hero = {
["rouge_skill_7"]=5400107,
["begin_lv"]=5,
["hp"]={
- 18000000,
- 20400000,
- 22800000,
- 25320000,
- 27960000,
- 30720000,
- 33720000,
- 36960000,
- 40560000,
- 44520000,
- 48840000,
- 53640000,
- 59040000,
- 65040000,
- 71880000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000
},
["atk"]={
- 9000000,
- 10200000,
- 11400000,
- 12660000,
- 13980000,
- 15360000,
- 16860000,
- 18480000,
- 20280000,
- 22260000,
- 24420000,
- 26820000,
- 29520000,
- 32520000,
- 35940000
+ 6000000,
+ 6840000,
+ 7680000,
+ 8560000,
+ 9480000,
+ 10480000,
+ 12280000,
+ 14220000,
+ 16470000,
+ 18950000,
+ 21650000,
+ 24650000,
+ 28030000,
+ 31780000,
+ 36060000
},
["model_id"]="p0023",
["icon"]="20",
@@ -1447,43 +1447,43 @@ local hero = {
["rouge_skill_7"]=5400207,
["begin_lv"]=5,
["hp"]={
- 18000000,
- 20400000,
- 22800000,
- 25320000,
- 27960000,
- 30720000,
- 33720000,
- 36960000,
- 40560000,
- 44520000,
- 48840000,
- 53640000,
- 59040000,
- 65040000,
- 71880000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000
},
["atk"]={
- 9000000,
- 10200000,
- 11400000,
- 12660000,
- 13980000,
- 15360000,
- 16860000,
- 18480000,
- 20280000,
- 22260000,
- 24420000,
- 26820000,
- 29520000,
- 32520000,
- 35940000
+ 6000000,
+ 6840000,
+ 7680000,
+ 8560000,
+ 9480000,
+ 10480000,
+ 12280000,
+ 14220000,
+ 16470000,
+ 18950000,
+ 21650000,
+ 24650000,
+ 28030000,
+ 31780000,
+ 36060000
},
["model_id"]="p0026",
["icon"]="26",
["item_id"]=54002,
- ["unlock_chapter"]=20,
+ ["unlock_chapter"]=22,
["is_show"]=1,
["collection_point"]=5
}
diff --git a/lua/app/config/item.lua b/lua/app/config/item.lua
index 870b2fc9..9c69b749 100644
--- a/lua/app/config/item.lua
+++ b/lua/app/config/item.lua
@@ -377,9 +377,29 @@ local item = {
["icon"]="19"
},
[20]={
- ["type"]=1,
+ ["type"]=6,
["qlt"]=5,
- ["icon"]="20"
+ ["icon"]="20",
+ ["box_drop"]={
+ {
+ ["type"]=1,
+ ["id"]=4,
+ ["num"]=1,
+ ["weight"]=50
+ },
+ {
+ ["type"]=1,
+ ["id"]=5,
+ ["num"]=1,
+ ["weight"]=890
+ },
+ {
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=60
+ }
+ }
},
[21]={
["type"]=1,
@@ -431,6 +451,161 @@ local item = {
}
}
},
+ [27]={
+ ["type"]=1,
+ ["qlt"]=1,
+ ["icon"]="27"
+ },
+ [1001]={
+ ["type"]=2,
+ ["qlt"]=1,
+ ["icon"]="1001"
+ },
+ [1002]={
+ ["type"]=2,
+ ["qlt"]=2,
+ ["icon"]="1002"
+ },
+ [1003]={
+ ["type"]=2,
+ ["qlt"]=3,
+ ["icon"]="1003"
+ },
+ [1004]={
+ ["type"]=2,
+ ["qlt"]=4,
+ ["icon"]="1004"
+ },
+ [1005]={
+ ["type"]=2,
+ ["qlt"]=5,
+ ["icon"]="1005"
+ },
+ [1006]={
+ ["type"]=2,
+ ["qlt"]=5,
+ ["icon"]="1006"
+ },
+ [1007]={
+ ["type"]=2,
+ ["qlt"]=1,
+ ["icon"]="1007"
+ },
+ [1008]={
+ ["type"]=2,
+ ["qlt"]=2,
+ ["icon"]="1008"
+ },
+ [1009]={
+ ["type"]=2,
+ ["qlt"]=3,
+ ["icon"]="1009"
+ },
+ [1010]={
+ ["type"]=2,
+ ["qlt"]=4,
+ ["icon"]="1010"
+ },
+ [1011]={
+ ["type"]=2,
+ ["qlt"]=5,
+ ["icon"]="1011"
+ },
+ [1012]={
+ ["type"]=2,
+ ["qlt"]=5,
+ ["icon"]="1012"
+ },
+ [1013]={
+ ["type"]=2,
+ ["qlt"]=1,
+ ["icon"]="1013"
+ },
+ [1014]={
+ ["type"]=2,
+ ["qlt"]=2,
+ ["icon"]="1014"
+ },
+ [1015]={
+ ["type"]=2,
+ ["qlt"]=3,
+ ["icon"]="1015"
+ },
+ [1016]={
+ ["type"]=2,
+ ["qlt"]=4,
+ ["icon"]="1016"
+ },
+ [1017]={
+ ["type"]=2,
+ ["qlt"]=5,
+ ["icon"]="1017"
+ },
+ [1018]={
+ ["type"]=2,
+ ["qlt"]=5,
+ ["icon"]="1018"
+ },
+ [1019]={
+ ["type"]=2,
+ ["qlt"]=1,
+ ["icon"]="1019"
+ },
+ [1020]={
+ ["type"]=2,
+ ["qlt"]=2,
+ ["icon"]="1020"
+ },
+ [1021]={
+ ["type"]=2,
+ ["qlt"]=3,
+ ["icon"]="1021"
+ },
+ [1022]={
+ ["type"]=2,
+ ["qlt"]=4,
+ ["icon"]="1022"
+ },
+ [1023]={
+ ["type"]=2,
+ ["qlt"]=5,
+ ["icon"]="1023"
+ },
+ [1024]={
+ ["type"]=2,
+ ["qlt"]=5,
+ ["icon"]="1024"
+ },
+ [1025]={
+ ["type"]=2,
+ ["qlt"]=1,
+ ["icon"]="1025"
+ },
+ [1026]={
+ ["type"]=2,
+ ["qlt"]=2,
+ ["icon"]="1026"
+ },
+ [1027]={
+ ["type"]=2,
+ ["qlt"]=3,
+ ["icon"]="1027"
+ },
+ [1028]={
+ ["type"]=2,
+ ["qlt"]=4,
+ ["icon"]="1028"
+ },
+ [1029]={
+ ["type"]=2,
+ ["qlt"]=5,
+ ["icon"]="1029"
+ },
+ [1030]={
+ ["type"]=2,
+ ["qlt"]=5,
+ ["icon"]="1030"
+ },
[12001]={
["type"]=5,
["parameter"]=12001,
@@ -583,6 +758,6 @@ local item = {
}
}
local config = {
-data=item,count=51
+data=item,count=82
}
return config
\ No newline at end of file
diff --git a/lua/app/config/localization/localization_global_const.lua b/lua/app/config/localization/localization_global_const.lua
index 9535eb1e..2fef0ca7 100644
--- a/lua/app/config/localization/localization_global_const.lua
+++ b/lua/app/config/localization/localization_global_const.lua
@@ -333,6 +333,20 @@ local LocalizationGlobalConst =
HERO_TRIAL_DESC_1 = "HERO_TRIAL_DESC_1",
HERO_TRIAL_DESC_2 = "HERO_TRIAL_DESC_2",
HERO_TRIAL_DESC_3 = "HERO_TRIAL_DESC_3",
+ DISCORD_SETTING_DESC = "DISCORD_SETTING_DESC",
+ COMMUNITY_DESC = "COMMUNITY_DESC",
+ TWITTER_DESC = "TWITTER_DESC",
+ COLLECTION_DESC_1 = "COLLECTION_DESC_1",
+ COLLECTION_DESC_2 = "COLLECTION_DESC_2",
+ COLLECTION_DESC_3 = "COLLECTION_DESC_3",
+ COLLECTION_DESC_4 = "COLLECTION_DESC_4",
+ COLLECTION_DESC_5 = "COLLECTION_DESC_5",
+ COLLECTION_DESC_6 = "COLLECTION_DESC_6",
+ COLLECTION_DESC_7 = "COLLECTION_DESC_7",
+ COLLECTION_DESC_8 = "COLLECTION_DESC_8",
+ COLLECTION_DESC_9 = "COLLECTION_DESC_9",
+ COLLECTION_DESC_10 = "COLLECTION_DESC_10",
+ COLLECTION_DESC_11 = "COLLECTION_DESC_11",
}
return LocalizationGlobalConst
\ No newline at end of file
diff --git a/lua/app/config/skill_rogue.lua b/lua/app/config/skill_rogue.lua
index fae7af66..0b92c33b 100644
--- a/lua/app/config/skill_rogue.lua
+++ b/lua/app/config/skill_rogue.lua
@@ -2472,6 +2472,12 @@ local skill_rogue = {
["num"]=3400120,
["ratio"]=10000,
["round"]=1
+ },
+ {
+ ["type"]="skill_fire_times",
+ ["num"]=3400125,
+ ["ratio"]=10000,
+ ["round"]=1
}
},
["obj"]=5,
diff --git a/lua/app/config/strings/cn/global.lua b/lua/app/config/strings/cn/global.lua
index 2f80e1ca..fc145b13 100644
--- a/lua/app/config/strings/cn/global.lua
+++ b/lua/app/config/strings/cn/global.lua
@@ -333,6 +333,20 @@ local localization_global =
["HERO_TRIAL_DESC_1"] = "请试用S级英雄木兰挑战刚才战败的关卡!",
["HERO_TRIAL_DESC_2"] = "试玩",
["HERO_TRIAL_DESC_3"] = "木兰参战",
+ ["DISCORD_SETTING_DESC"] = "Discord",
+ ["COMMUNITY_DESC"] = "Facebook",
+ ["TWITTER_DESC"] = "Twitter",
+ ["COLLECTION_DESC_1"] = "英雄收集",
+ ["COLLECTION_DESC_2"] = "已满级",
+ ["COLLECTION_DESC_3"] = "未激活",
+ ["COLLECTION_DESC_4"] = "还差{0}星辉可获得奖励",
+ ["COLLECTION_DESC_5"] = "已获得奖励",
+ ["COLLECTION_DESC_6"] = "未获得奖励",
+ ["COLLECTION_DESC_7"] = "1.每个英雄提升等级后都能再次领取星辉,不同品质的英雄升级给星辉数不同。/n2.累计星辉可领取丰厚奖励。",
+ ["COLLECTION_DESC_8"] = "敬请期待",
+ ["COLLECTION_DESC_9"] = "请领取当前奖励",
+ ["COLLECTION_DESC_10"] = "收集奖励",
+ ["COLLECTION_DESC_11"] = "帮助",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/cn/item.lua b/lua/app/config/strings/cn/item.lua
index cfc7fec7..e827811e 100644
--- a/lua/app/config/strings/cn/item.lua
+++ b/lua/app/config/strings/cn/item.lua
@@ -103,6 +103,130 @@ local item = {
["name"]="高级随机碎片",
["desc"]="有概率随机获得优秀,稀有或史诗英雄碎片。"
},
+ [27]={
+ ["name"]="星辉",
+ ["desc"]="收集星辉可以领取奖励。"
+ },
+ [1001]={
+ ["name"]="暗淡陨铁",
+ ["desc"]="武器材料1阶"
+ },
+ [1002]={
+ ["name"]="百炼陨铁",
+ ["desc"]="武器材料2阶"
+ },
+ [1003]={
+ ["name"]="月华陨铁",
+ ["desc"]="武器材料3阶"
+ },
+ [1004]={
+ ["name"]="天光陨铁",
+ ["desc"]="武器材料4阶"
+ },
+ [1005]={
+ ["name"]="金光陨铁",
+ ["desc"]="武器材料5阶"
+ },
+ [1006]={
+ ["name"]="至臻陨铁",
+ ["desc"]="武器材料6阶"
+ },
+ [1007]={
+ ["name"]="翠绿晶石",
+ ["desc"]="帽子材料1阶"
+ },
+ [1008]={
+ ["name"]="暗红晶石",
+ ["desc"]="帽子材料2阶"
+ },
+ [1009]={
+ ["name"]="混元晶石",
+ ["desc"]="帽子材料3阶"
+ },
+ [1010]={
+ ["name"]="鸿鑫晶石",
+ ["desc"]="帽子材料4阶"
+ },
+ [1011]={
+ ["name"]="海洋晶石",
+ ["desc"]="帽子材料5阶"
+ },
+ [1012]={
+ ["name"]="至金晶石",
+ ["desc"]="帽子材料6阶"
+ },
+ [1013]={
+ ["name"]="蜥蜴鳞片",
+ ["desc"]="衣服材料1阶"
+ },
+ [1014]={
+ ["name"]="亚龙鳞片",
+ ["desc"]="衣服材料2阶"
+ },
+ [1015]={
+ ["name"]="海龙鳞片",
+ ["desc"]="衣服材料3阶"
+ },
+ [1016]={
+ ["name"]="火龙鳞片",
+ ["desc"]="衣服材料4阶"
+ },
+ [1017]={
+ ["name"]="雷龙鳞片",
+ ["desc"]="衣服材料5阶"
+ },
+ [1018]={
+ ["name"]="神龙鳞片",
+ ["desc"]="衣服材料6阶"
+ },
+ [1019]={
+ ["name"]="粗糙皮革",
+ ["desc"]="腰带材料1阶"
+ },
+ [1020]={
+ ["name"]="土蛇皮革",
+ ["desc"]="腰带材料2阶"
+ },
+ [1021]={
+ ["name"]="巨熊皮革",
+ ["desc"]="腰带材料3阶"
+ },
+ [1022]={
+ ["name"]="猛虎皮革",
+ ["desc"]="腰带材料4阶"
+ },
+ [1023]={
+ ["name"]="恶魔皮革",
+ ["desc"]="腰带材料5阶"
+ },
+ [1024]={
+ ["name"]="天蟒皮革",
+ ["desc"]="腰带材料6阶"
+ },
+ [1025]={
+ ["name"]="幽深贝壳",
+ ["desc"]="护手材料1阶"
+ },
+ [1026]={
+ ["name"]="水韵贝壳",
+ ["desc"]="护手材料2阶"
+ },
+ [1027]={
+ ["name"]="岩石贝壳",
+ ["desc"]="护手材料3阶"
+ },
+ [1028]={
+ ["name"]="混沌贝壳",
+ ["desc"]="护手材料4阶"
+ },
+ [1029]={
+ ["name"]="暗狱贝壳",
+ ["desc"]="护手材料5阶"
+ },
+ [1030]={
+ ["name"]="至圣贝壳",
+ ["desc"]="护手材料6阶"
+ },
[12001]={
["name"]="舞娘碎片",
["desc"]="舞娘碎片,凑齐可激活或升级。"
@@ -205,6 +329,6 @@ local item = {
}
}
local config = {
-data=item,count=51
+data=item,count=82
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/de/global.lua b/lua/app/config/strings/de/global.lua
index 37d94ad5..a4633cd1 100644
--- a/lua/app/config/strings/de/global.lua
+++ b/lua/app/config/strings/de/global.lua
@@ -27,6 +27,9 @@ local localization_global =
["MAINTENANCE_NOTICE_DEFAULT"] = "Serverkommunikation anormal, bitte versuche es später erneut",
["RATE_DESC_1"] = "Wie findest du unser Spiel?",
["RATE_DESC_2"] = "Später",
+ ["DISCORD_SETTING_DESC"] = "Discord",
+ ["COMMUNITY_DESC"] = "Facebook",
+ ["TWITTER_DESC"] = "Twitter",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/de/item.lua b/lua/app/config/strings/de/item.lua
index 13bba4db..36d38175 100644
--- a/lua/app/config/strings/de/item.lua
+++ b/lua/app/config/strings/de/item.lua
@@ -76,6 +76,99 @@ local item = {
},
[26]={
+ },
+ [27]={
+
+ },
+ [1001]={
+
+ },
+ [1002]={
+
+ },
+ [1003]={
+
+ },
+ [1004]={
+
+ },
+ [1005]={
+
+ },
+ [1006]={
+
+ },
+ [1007]={
+
+ },
+ [1008]={
+
+ },
+ [1009]={
+
+ },
+ [1010]={
+
+ },
+ [1011]={
+
+ },
+ [1012]={
+
+ },
+ [1013]={
+
+ },
+ [1014]={
+
+ },
+ [1015]={
+
+ },
+ [1016]={
+
+ },
+ [1017]={
+
+ },
+ [1018]={
+
+ },
+ [1019]={
+
+ },
+ [1020]={
+
+ },
+ [1021]={
+
+ },
+ [1022]={
+
+ },
+ [1023]={
+
+ },
+ [1024]={
+
+ },
+ [1025]={
+
+ },
+ [1026]={
+
+ },
+ [1027]={
+
+ },
+ [1028]={
+
+ },
+ [1029]={
+
+ },
+ [1030]={
+
},
[12001]={
@@ -154,6 +247,6 @@ local item = {
}
}
local config = {
-data=item,count=51
+data=item,count=82
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/en/global.lua b/lua/app/config/strings/en/global.lua
index 3521c11b..8b342837 100644
--- a/lua/app/config/strings/en/global.lua
+++ b/lua/app/config/strings/en/global.lua
@@ -330,6 +330,12 @@ local localization_global =
["ARENA_BATTLEPASS_5"] = "Unlock Premium Battle Pass",
["ARENA_BATTLEPASS_6"] = "Obtain Premium Battle Pass for 10 more levels and richer rewards!",
["ARENA_BATTLEPASS_7"] = "Upon completing all content of the Arena Battle Pass, you can receive a reward chest for every 1000 points.",
+ ["HERO_TRIAL_DESC_1"] = "Please try S-rank hero Mulan to challenge the stage you just failed.",
+ ["HERO_TRIAL_DESC_2"] = "Trial",
+ ["HERO_TRIAL_DESC_3"] = "Mulan joins the battle",
+ ["DISCORD_SETTING_DESC"] = "Discord",
+ ["COMMUNITY_DESC"] = "Facebook",
+ ["TWITTER_DESC"] = "Twitter",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/en/item.lua b/lua/app/config/strings/en/item.lua
index 554c1d2f..06aa1164 100644
--- a/lua/app/config/strings/en/item.lua
+++ b/lua/app/config/strings/en/item.lua
@@ -102,22 +102,115 @@ local item = {
[26]={
["name"]="Advanced Random Shard",
["desc"]="May randomly obtain Shards of Excellent, Rare, or Epic Heroes."
+ },
+ [27]={
+
+ },
+ [1001]={
+
+ },
+ [1002]={
+
+ },
+ [1003]={
+
+ },
+ [1004]={
+
+ },
+ [1005]={
+
+ },
+ [1006]={
+
+ },
+ [1007]={
+
+ },
+ [1008]={
+
+ },
+ [1009]={
+
+ },
+ [1010]={
+
+ },
+ [1011]={
+
+ },
+ [1012]={
+
+ },
+ [1013]={
+
+ },
+ [1014]={
+
+ },
+ [1015]={
+
+ },
+ [1016]={
+
+ },
+ [1017]={
+
+ },
+ [1018]={
+
+ },
+ [1019]={
+
+ },
+ [1020]={
+
+ },
+ [1021]={
+
+ },
+ [1022]={
+
+ },
+ [1023]={
+
+ },
+ [1024]={
+
+ },
+ [1025]={
+
+ },
+ [1026]={
+
+ },
+ [1027]={
+
+ },
+ [1028]={
+
+ },
+ [1029]={
+
+ },
+ [1030]={
+
},
[12001]={
["name"]="Dancer Shard",
- ["desc"]="Dancer Fragments that can activate or upgrade Panda."
+ ["desc"]="Dancer Fragments that can activate or upgrade Dancer."
},
[13001]={
["name"]="Claude Shard",
- ["desc"]="Claude Shard that can activate or upgrade Panda."
+ ["desc"]="Claude Shard that can activate or upgrade Claude."
},
[13002]={
["name"]="Flare Shard",
- ["desc"]="Flare Shard that can activate or upgrade Panda."
+ ["desc"]="Flare Shard that can activate or upgrade Flare."
},
[14001]={
["name"]="Alexander Shard",
- ["desc"]="Alexander Shard that can activate or upgrade Panda."
+ ["desc"]="Alexander Shard that can activate or upgrade Alexander."
},
[14002]={
["name"]="Panda Shard",
@@ -125,86 +218,86 @@ local item = {
},
[22001]={
["name"]="Blade Maid Shard",
- ["desc"]="Blade Maid Shard that can activate or upgrade Panda."
+ ["desc"]="Blade Maid Shard that can activate or upgrade Panda Blade Maid."
},
[23001]={
["name"]="Barbarian Shard",
- ["desc"]="Barbarian Shard that can activate or upgrade Panda."
+ ["desc"]="Barbarian Shard that can activate or upgrade Barbarian."
},
[23002]={
["name"]="Er-Ya Shard",
- ["desc"]="Er-Ya Shard that can activate or upgrade Panda."
+ ["desc"]="Er-Ya Shard that can activate or upgrade Er-Ya."
},
[24001]={
["name"]="Claymore Kid Shard",
- ["desc"]="Claymore Kid Shard that can activate or upgrade Panda."
+ ["desc"]="Claymore Kid Shard that can activate or upgrade Claymore Kid."
},
[24002]={
["name"]="Thor Shard",
- ["desc"]="Thor Shard that can activate or upgrade Panda."
+ ["desc"]="Thor Shard that can activate or upgrade Thor."
},
[32001]={
["name"]="Onion Shard",
- ["desc"]="Onion Shard that can activate or upgrade Panda."
+ ["desc"]="Onion Shard that can activate or upgrade Onion."
},
[33001]={
["name"]="Fawn Shard",
- ["desc"]="Fawn Shard that can activate or upgrade Panda."
+ ["desc"]="Fawn Shard that can activate or upgrade Fawn."
},
[33002]={
["name"]="Timberwolf Shard",
- ["desc"]="Timberwolf Shard that can activate or upgrade Panda."
+ ["desc"]="Timberwolf Shard that can activate or upgrade Timberwolf."
},
[34001]={
["name"]="Mulan Shard",
- ["desc"]="Mulan Shard that can activate or upgrade Panda."
+ ["desc"]="Mulan Shard that can activate or upgrade Mulan."
},
[34002]={
["name"]="Nightmare Shard",
- ["desc"]="Nightmare Shard that can activate or upgrade Panda."
+ ["desc"]="Nightmare Shard that can activate or upgrade Nightmare."
},
[42001]={
["name"]="Iceheart Shard",
- ["desc"]="Iceheart Shard that can activate or upgrade Panda."
+ ["desc"]="Iceheart Shard that can activate or upgrade Iceheart."
},
[43001]={
["name"]="Ice Maiden Shard",
- ["desc"]="Ice Maiden Shard that can activate or upgrade Panda."
+ ["desc"]="Ice Maiden Shard that can activate or upgrade Ice Maiden."
},
[43002]={
["name"]="Raven Shard",
- ["desc"]="Raven Shard that can activate or upgrade Panda."
+ ["desc"]="Raven Shard that can activate or upgrade Raven."
},
[44001]={
["name"]="Frost Enchantress Shard",
- ["desc"]="Frost Enchantress Shard that can activate or upgrade Panda."
+ ["desc"]="Frost Enchantress Shard that can activate or upgrade Frost Enchantress."
},
[44002]={
["name"]="Cleopatra Shard",
- ["desc"]="Cleopatra Shard that can activate or upgrade Panda."
+ ["desc"]="Cleopatra Shard that can activate or upgrade Cleopatra."
},
[52001]={
["name"]="Ninja Lun Shard",
- ["desc"]="Raven Shard that can activate or upgrade Panda."
+ ["desc"]="Raven Shard that can activate or upgrade Raven."
},
[53001]={
["name"]="Witch Kiki Shard",
- ["desc"]="Witch Kiki Shard that can activate or upgrade Panda."
+ ["desc"]="Witch Kiki Shard that can activate or upgrade Witch Kiki."
},
[53002]={
["name"]="Soul Hunter Shard",
- ["desc"]="Soul Hunter Shard that can activate or upgrade Panda."
+ ["desc"]="Soul Hunter Shard that can activate or upgrade Soul Hunter."
},
[54001]={
["name"]="Butterfly Shard",
- ["desc"]="Butterfly Shard that can activate or upgrade Panda."
+ ["desc"]="Butterfly Shard that can activate or upgrade Butterfly."
},
[54002]={
["name"]="Twinkling Mage Shard",
- ["desc"]="Twinkling Mage Shard that can activate or upgrade Panda."
+ ["desc"]="Twinkling Mage Shard that can activate or upgrade Twinkling Mage."
}
}
local config = {
-data=item,count=51
+data=item,count=82
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/es/global.lua b/lua/app/config/strings/es/global.lua
index bccf7c3c..51ae6c09 100644
--- a/lua/app/config/strings/es/global.lua
+++ b/lua/app/config/strings/es/global.lua
@@ -330,6 +330,12 @@ local localization_global =
["ARENA_BATTLEPASS_5"] = "Desbloquea Pase de Batalla Premium",
["ARENA_BATTLEPASS_6"] = "¡Obtiene Pase de Batalla Premium, gana +10 niveles, y recibe más recompensas ya!",
["ARENA_BATTLEPASS_7"] = "Al completar todo el contenido del pase, podrás obtener un cofre de recompensa por cada 1000 puntos.",
+ ["HERO_TRIAL_DESC_1"] = "¡Prueba con Mulán, heroína de clase S para desafiar la fase derrotada de nuevo!",
+ ["HERO_TRIAL_DESC_2"] = "Prueba",
+ ["HERO_TRIAL_DESC_3"] = "Mulán en combate",
+ ["DISCORD_SETTING_DESC"] = "Discord",
+ ["COMMUNITY_DESC"] = "Facebook",
+ ["TWITTER_DESC"] = "Twitter",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/es/item.lua b/lua/app/config/strings/es/item.lua
index 2b6b276e..feccda7c 100644
--- a/lua/app/config/strings/es/item.lua
+++ b/lua/app/config/strings/es/item.lua
@@ -102,6 +102,99 @@ local item = {
[26]={
["name"]="Fragmentos avanzados aleatorios",
["desc"]="Hay chance de obtener aleatoriamente fragmentos de héroes destacados, raros o épicos."
+ },
+ [27]={
+
+ },
+ [1001]={
+
+ },
+ [1002]={
+
+ },
+ [1003]={
+
+ },
+ [1004]={
+
+ },
+ [1005]={
+
+ },
+ [1006]={
+
+ },
+ [1007]={
+
+ },
+ [1008]={
+
+ },
+ [1009]={
+
+ },
+ [1010]={
+
+ },
+ [1011]={
+
+ },
+ [1012]={
+
+ },
+ [1013]={
+
+ },
+ [1014]={
+
+ },
+ [1015]={
+
+ },
+ [1016]={
+
+ },
+ [1017]={
+
+ },
+ [1018]={
+
+ },
+ [1019]={
+
+ },
+ [1020]={
+
+ },
+ [1021]={
+
+ },
+ [1022]={
+
+ },
+ [1023]={
+
+ },
+ [1024]={
+
+ },
+ [1025]={
+
+ },
+ [1026]={
+
+ },
+ [1027]={
+
+ },
+ [1028]={
+
+ },
+ [1029]={
+
+ },
+ [1030]={
+
},
[12001]={
["name"]="Fragmento de Bailarina",
@@ -205,6 +298,6 @@ local item = {
}
}
local config = {
-data=item,count=51
+data=item,count=82
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/fr/global.lua b/lua/app/config/strings/fr/global.lua
index 6d1d84b1..67661397 100644
--- a/lua/app/config/strings/fr/global.lua
+++ b/lua/app/config/strings/fr/global.lua
@@ -28,6 +28,9 @@ local localization_global =
["RATE_DESC_1"] = "Comment aimez-vous notre jeu?",
["RATE_DESC_2"] = "Plus tard",
["BATTLE_DESC_12"] = "Pas de compétence renforcée",
+ ["DISCORD_SETTING_DESC"] = "Discord",
+ ["COMMUNITY_DESC"] = "Facebook",
+ ["TWITTER_DESC"] = "Twitter",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/fr/item.lua b/lua/app/config/strings/fr/item.lua
index 13bba4db..36d38175 100644
--- a/lua/app/config/strings/fr/item.lua
+++ b/lua/app/config/strings/fr/item.lua
@@ -76,6 +76,99 @@ local item = {
},
[26]={
+ },
+ [27]={
+
+ },
+ [1001]={
+
+ },
+ [1002]={
+
+ },
+ [1003]={
+
+ },
+ [1004]={
+
+ },
+ [1005]={
+
+ },
+ [1006]={
+
+ },
+ [1007]={
+
+ },
+ [1008]={
+
+ },
+ [1009]={
+
+ },
+ [1010]={
+
+ },
+ [1011]={
+
+ },
+ [1012]={
+
+ },
+ [1013]={
+
+ },
+ [1014]={
+
+ },
+ [1015]={
+
+ },
+ [1016]={
+
+ },
+ [1017]={
+
+ },
+ [1018]={
+
+ },
+ [1019]={
+
+ },
+ [1020]={
+
+ },
+ [1021]={
+
+ },
+ [1022]={
+
+ },
+ [1023]={
+
+ },
+ [1024]={
+
+ },
+ [1025]={
+
+ },
+ [1026]={
+
+ },
+ [1027]={
+
+ },
+ [1028]={
+
+ },
+ [1029]={
+
+ },
+ [1030]={
+
},
[12001]={
@@ -154,6 +247,6 @@ local item = {
}
}
local config = {
-data=item,count=51
+data=item,count=82
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/id/global.lua b/lua/app/config/strings/id/global.lua
index beb92efb..e87de5e9 100644
--- a/lua/app/config/strings/id/global.lua
+++ b/lua/app/config/strings/id/global.lua
@@ -330,6 +330,12 @@ local localization_global =
["ARENA_BATTLEPASS_5"] = "Buka Pass Premium",
["ARENA_BATTLEPASS_6"] = "Dapat Pass Premium, +10 level dan hadiah lainnya!",
["ARENA_BATTLEPASS_7"] = "Dapat menerima peti hadiah untuk setiap 1.000 poin setelah menyelesaikan semua konten Pass Battle Arena.",
+ ["HERO_TRIAL_DESC_1"] = "Gunakan Hero level S - Mulan untuk menantang stage yang baru saja dikalahkan!",
+ ["HERO_TRIAL_DESC_2"] = "Trial",
+ ["HERO_TRIAL_DESC_3"] = "Mulan bergabung dalam battle",
+ ["DISCORD_SETTING_DESC"] = "Discord",
+ ["COMMUNITY_DESC"] = "Facebook",
+ ["TWITTER_DESC"] = "Twitter",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/id/item.lua b/lua/app/config/strings/id/item.lua
index 2ae49d50..f2d643e9 100644
--- a/lua/app/config/strings/id/item.lua
+++ b/lua/app/config/strings/id/item.lua
@@ -102,6 +102,99 @@ local item = {
[26]={
["name"]="Shard Premium Acak",
["desc"]="Berpeluang mendapat Shard Hero luar biasa, langka, atau epik secara acak."
+ },
+ [27]={
+
+ },
+ [1001]={
+
+ },
+ [1002]={
+
+ },
+ [1003]={
+
+ },
+ [1004]={
+
+ },
+ [1005]={
+
+ },
+ [1006]={
+
+ },
+ [1007]={
+
+ },
+ [1008]={
+
+ },
+ [1009]={
+
+ },
+ [1010]={
+
+ },
+ [1011]={
+
+ },
+ [1012]={
+
+ },
+ [1013]={
+
+ },
+ [1014]={
+
+ },
+ [1015]={
+
+ },
+ [1016]={
+
+ },
+ [1017]={
+
+ },
+ [1018]={
+
+ },
+ [1019]={
+
+ },
+ [1020]={
+
+ },
+ [1021]={
+
+ },
+ [1022]={
+
+ },
+ [1023]={
+
+ },
+ [1024]={
+
+ },
+ [1025]={
+
+ },
+ [1026]={
+
+ },
+ [1027]={
+
+ },
+ [1028]={
+
+ },
+ [1029]={
+
+ },
+ [1030]={
+
},
[12001]={
["name"]="Shard Dancer",
@@ -205,6 +298,6 @@ local item = {
}
}
local config = {
-data=item,count=51
+data=item,count=82
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ja/global.lua b/lua/app/config/strings/ja/global.lua
index 198c9a83..7bbee5d0 100644
--- a/lua/app/config/strings/ja/global.lua
+++ b/lua/app/config/strings/ja/global.lua
@@ -330,6 +330,12 @@ local localization_global =
["ARENA_BATTLEPASS_5"] = "プレミアム戦令を解放する",
["ARENA_BATTLEPASS_6"] = "プレミアム戦令を購入すると、レベルが+10、即座に報酬を獲得できる!",
["ARENA_BATTLEPASS_7"] = "全ての闘技場戦令ミッションを達成した後、1000ポイントごとに報酬宝箱を1箱獲得できる",
+ ["HERO_TRIAL_DESC_1"] = "S級ヒーロームーランを使って、挑戦失敗のステージに再度挑戦してください!",
+ ["HERO_TRIAL_DESC_2"] = "トライアル",
+ ["HERO_TRIAL_DESC_3"] = "ムーランで参加する",
+ ["DISCORD_SETTING_DESC"] = "Discord",
+ ["COMMUNITY_DESC"] = "Facebook",
+ ["TWITTER_DESC"] = "Twitter",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/ja/item.lua b/lua/app/config/strings/ja/item.lua
index 167c3aa2..abd8a8a3 100644
--- a/lua/app/config/strings/ja/item.lua
+++ b/lua/app/config/strings/ja/item.lua
@@ -102,6 +102,99 @@ local item = {
[26]={
["name"]="ランダムのレアヒーローピース",
["desc"]="一定の確率でアンコモン、レア、またはエピックヒーローピースを入手できる。"
+ },
+ [27]={
+
+ },
+ [1001]={
+
+ },
+ [1002]={
+
+ },
+ [1003]={
+
+ },
+ [1004]={
+
+ },
+ [1005]={
+
+ },
+ [1006]={
+
+ },
+ [1007]={
+
+ },
+ [1008]={
+
+ },
+ [1009]={
+
+ },
+ [1010]={
+
+ },
+ [1011]={
+
+ },
+ [1012]={
+
+ },
+ [1013]={
+
+ },
+ [1014]={
+
+ },
+ [1015]={
+
+ },
+ [1016]={
+
+ },
+ [1017]={
+
+ },
+ [1018]={
+
+ },
+ [1019]={
+
+ },
+ [1020]={
+
+ },
+ [1021]={
+
+ },
+ [1022]={
+
+ },
+ [1023]={
+
+ },
+ [1024]={
+
+ },
+ [1025]={
+
+ },
+ [1026]={
+
+ },
+ [1027]={
+
+ },
+ [1028]={
+
+ },
+ [1029]={
+
+ },
+ [1030]={
+
},
[12001]={
["name"]="ダンサーのピース",
@@ -205,6 +298,6 @@ local item = {
}
}
local config = {
-data=item,count=51
+data=item,count=82
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ja/skill_rogue.lua b/lua/app/config/strings/ja/skill_rogue.lua
index 86276bff..5be7b660 100644
--- a/lua/app/config/strings/ja/skill_rogue.lua
+++ b/lua/app/config/strings/ja/skill_rogue.lua
@@ -87,7 +87,7 @@ local skill_rogue = {
["desc"]="一部のHPを回復する"
},
[30]={
- ["desc"]="ランダムで5つ赤以外の元素を赤に変える"
+ ["desc"]="ランダムで2つ赤以外の元素を赤に変える"
},
[31]={
["desc"]="ランダムで3つ赤以外の元素を赤に変える"
diff --git a/lua/app/config/strings/ko/global.lua b/lua/app/config/strings/ko/global.lua
index 9aebf258..2e7023ff 100644
--- a/lua/app/config/strings/ko/global.lua
+++ b/lua/app/config/strings/ko/global.lua
@@ -330,6 +330,12 @@ local localization_global =
["ARENA_BATTLEPASS_5"] = "고급 배틀 패스 잠금 해제",
["ARENA_BATTLEPASS_6"] = "고급 배틀 패스를 획득하고 +10 레벨, 즉시 더 많은 보상을 받으세요!",
["ARENA_BATTLEPASS_7"] = "아레나 배틀 패스의 모든 콘텐츠를 완료하면 1000포인트마다 보물 상자 하나를 받을 수 있습니다.",
+ ["HERO_TRIAL_DESC_1"] = "맛보기로 S레벨 영웅 뮬란을 사용하여 패배한 스테이지에 다시 도전해 보세요!",
+ ["HERO_TRIAL_DESC_2"] = "맛보기",
+ ["HERO_TRIAL_DESC_3"] = "뮬란 전투 참가",
+ ["DISCORD_SETTING_DESC"] = "Discord",
+ ["COMMUNITY_DESC"] = "Facebook",
+ ["TWITTER_DESC"] = "Twitter",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/ko/item.lua b/lua/app/config/strings/ko/item.lua
index 7c0d0d44..34504925 100644
--- a/lua/app/config/strings/ko/item.lua
+++ b/lua/app/config/strings/ko/item.lua
@@ -102,6 +102,99 @@ local item = {
[26]={
["name"]="랜덤의 고급 파편",
["desc"]="확률적으로 랜덤의 뛰어난 영웅, 희귀 영웅 또는 에픽 영웅 파편을 얻을 수 있습니다."
+ },
+ [27]={
+
+ },
+ [1001]={
+
+ },
+ [1002]={
+
+ },
+ [1003]={
+
+ },
+ [1004]={
+
+ },
+ [1005]={
+
+ },
+ [1006]={
+
+ },
+ [1007]={
+
+ },
+ [1008]={
+
+ },
+ [1009]={
+
+ },
+ [1010]={
+
+ },
+ [1011]={
+
+ },
+ [1012]={
+
+ },
+ [1013]={
+
+ },
+ [1014]={
+
+ },
+ [1015]={
+
+ },
+ [1016]={
+
+ },
+ [1017]={
+
+ },
+ [1018]={
+
+ },
+ [1019]={
+
+ },
+ [1020]={
+
+ },
+ [1021]={
+
+ },
+ [1022]={
+
+ },
+ [1023]={
+
+ },
+ [1024]={
+
+ },
+ [1025]={
+
+ },
+ [1026]={
+
+ },
+ [1027]={
+
+ },
+ [1028]={
+
+ },
+ [1029]={
+
+ },
+ [1030]={
+
},
[12001]={
["name"]="무희 파편",
@@ -205,6 +298,6 @@ local item = {
}
}
local config = {
-data=item,count=51
+data=item,count=82
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/pt/global.lua b/lua/app/config/strings/pt/global.lua
index 39636e05..5a19bc93 100644
--- a/lua/app/config/strings/pt/global.lua
+++ b/lua/app/config/strings/pt/global.lua
@@ -330,6 +330,12 @@ local localization_global =
["ARENA_BATTLEPASS_5"] = "Desbloquear Ordem Premium",
["ARENA_BATTLEPASS_6"] = "Obtenha a Ordem de Batalha Premium, ganhe +10 níveis e receba mais recompensas de imediato!",
["ARENA_BATTLEPASS_7"] = "Após completar todo o critério do Ordem da Arena, você pode receber um Baú de Recompensas por cada 1000 pontos.",
+ ["HERO_TRIAL_DESC_1"] = "Experimente desafiar a fase perdida com a heroína S, Mulan!",
+ ["HERO_TRIAL_DESC_2"] = "Testar",
+ ["HERO_TRIAL_DESC_3"] = "Mulan está na batalha.",
+ ["DISCORD_SETTING_DESC"] = "Discord",
+ ["COMMUNITY_DESC"] = "Facebook",
+ ["TWITTER_DESC"] = "Twitter",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/pt/item.lua b/lua/app/config/strings/pt/item.lua
index 87bde80a..f8e180a4 100644
--- a/lua/app/config/strings/pt/item.lua
+++ b/lua/app/config/strings/pt/item.lua
@@ -102,6 +102,99 @@ local item = {
[26]={
["name"]="Fragmento Aleatório Avançado",
["desc"]="Possibilidade aleatória de obter fragmentos de heróis excelentes, raros ou épicos."
+ },
+ [27]={
+
+ },
+ [1001]={
+
+ },
+ [1002]={
+
+ },
+ [1003]={
+
+ },
+ [1004]={
+
+ },
+ [1005]={
+
+ },
+ [1006]={
+
+ },
+ [1007]={
+
+ },
+ [1008]={
+
+ },
+ [1009]={
+
+ },
+ [1010]={
+
+ },
+ [1011]={
+
+ },
+ [1012]={
+
+ },
+ [1013]={
+
+ },
+ [1014]={
+
+ },
+ [1015]={
+
+ },
+ [1016]={
+
+ },
+ [1017]={
+
+ },
+ [1018]={
+
+ },
+ [1019]={
+
+ },
+ [1020]={
+
+ },
+ [1021]={
+
+ },
+ [1022]={
+
+ },
+ [1023]={
+
+ },
+ [1024]={
+
+ },
+ [1025]={
+
+ },
+ [1026]={
+
+ },
+ [1027]={
+
+ },
+ [1028]={
+
+ },
+ [1029]={
+
+ },
+ [1030]={
+
},
[12001]={
["name"]="Fragmento de Dançarina",
@@ -205,6 +298,6 @@ local item = {
}
}
local config = {
-data=item,count=51
+data=item,count=82
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ru/global.lua b/lua/app/config/strings/ru/global.lua
index b2e17626..edf6bd08 100644
--- a/lua/app/config/strings/ru/global.lua
+++ b/lua/app/config/strings/ru/global.lua
@@ -1,6 +1,9 @@
local localization_global =
{
["COMBO_DESC"] = "Combo",
+ ["DISCORD_SETTING_DESC"] = "Discord",
+ ["COMMUNITY_DESC"] = "Facebook",
+ ["TWITTER_DESC"] = "Twitter",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/ru/item.lua b/lua/app/config/strings/ru/item.lua
index 13bba4db..36d38175 100644
--- a/lua/app/config/strings/ru/item.lua
+++ b/lua/app/config/strings/ru/item.lua
@@ -76,6 +76,99 @@ local item = {
},
[26]={
+ },
+ [27]={
+
+ },
+ [1001]={
+
+ },
+ [1002]={
+
+ },
+ [1003]={
+
+ },
+ [1004]={
+
+ },
+ [1005]={
+
+ },
+ [1006]={
+
+ },
+ [1007]={
+
+ },
+ [1008]={
+
+ },
+ [1009]={
+
+ },
+ [1010]={
+
+ },
+ [1011]={
+
+ },
+ [1012]={
+
+ },
+ [1013]={
+
+ },
+ [1014]={
+
+ },
+ [1015]={
+
+ },
+ [1016]={
+
+ },
+ [1017]={
+
+ },
+ [1018]={
+
+ },
+ [1019]={
+
+ },
+ [1020]={
+
+ },
+ [1021]={
+
+ },
+ [1022]={
+
+ },
+ [1023]={
+
+ },
+ [1024]={
+
+ },
+ [1025]={
+
+ },
+ [1026]={
+
+ },
+ [1027]={
+
+ },
+ [1028]={
+
+ },
+ [1029]={
+
+ },
+ [1030]={
+
},
[12001]={
@@ -154,6 +247,6 @@ local item = {
}
}
local config = {
-data=item,count=51
+data=item,count=82
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/th/global.lua b/lua/app/config/strings/th/global.lua
index bc3bc02b..dd3796fa 100644
--- a/lua/app/config/strings/th/global.lua
+++ b/lua/app/config/strings/th/global.lua
@@ -330,6 +330,12 @@ local localization_global =
["ARENA_BATTLEPASS_5"] = "ปลดล็อกป้ายรบขั้นสูง",
["ARENA_BATTLEPASS_6"] = "ได้รับป้ายรบขั้นสูง +10 เลเวล รับรางวัลเพิ่มเติมทันที!",
["ARENA_BATTLEPASS_7"] = "เมื่อคุณบรรลุเนื้อหาทั้งหมดของป้ายรบอารีน่า คุณจะได้รับหีบรางวัล 1 หีบสำหรับทุกๆ 1,000 คะแนน",
+ ["HERO_TRIAL_DESC_1"] = "โปรดลองใช้ฮีโร่ระดับ S มู่หลานท้าทายด่านที่เพิ่งท้าทายล้มเหลว!",
+ ["HERO_TRIAL_DESC_2"] = "ลองเล่น",
+ ["HERO_TRIAL_DESC_3"] = "มู่หลานเข้าร่วมการต่อสู้",
+ ["DISCORD_SETTING_DESC"] = "Discord",
+ ["COMMUNITY_DESC"] = "Facebook",
+ ["TWITTER_DESC"] = "Twitter",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/th/item.lua b/lua/app/config/strings/th/item.lua
index 6b2e3a67..ac19daa1 100644
--- a/lua/app/config/strings/th/item.lua
+++ b/lua/app/config/strings/th/item.lua
@@ -102,6 +102,99 @@ local item = {
[26]={
["name"]="เศษแบบสุ่มขั้นสูง",
["desc"]="มีโอกาสที่จะได้รับเศษฮีโร่ที่ยอดเยี่ยม หายาก หรืออีพิทแบบสุ่ม"
+ },
+ [27]={
+
+ },
+ [1001]={
+
+ },
+ [1002]={
+
+ },
+ [1003]={
+
+ },
+ [1004]={
+
+ },
+ [1005]={
+
+ },
+ [1006]={
+
+ },
+ [1007]={
+
+ },
+ [1008]={
+
+ },
+ [1009]={
+
+ },
+ [1010]={
+
+ },
+ [1011]={
+
+ },
+ [1012]={
+
+ },
+ [1013]={
+
+ },
+ [1014]={
+
+ },
+ [1015]={
+
+ },
+ [1016]={
+
+ },
+ [1017]={
+
+ },
+ [1018]={
+
+ },
+ [1019]={
+
+ },
+ [1020]={
+
+ },
+ [1021]={
+
+ },
+ [1022]={
+
+ },
+ [1023]={
+
+ },
+ [1024]={
+
+ },
+ [1025]={
+
+ },
+ [1026]={
+
+ },
+ [1027]={
+
+ },
+ [1028]={
+
+ },
+ [1029]={
+
+ },
+ [1030]={
+
},
[12001]={
["name"]="เศษสาวเต้น",
@@ -205,6 +298,6 @@ local item = {
}
}
local config = {
-data=item,count=51
+data=item,count=82
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/vi/global.lua b/lua/app/config/strings/vi/global.lua
index 3dfe78fd..b9c7619f 100644
--- a/lua/app/config/strings/vi/global.lua
+++ b/lua/app/config/strings/vi/global.lua
@@ -330,6 +330,12 @@ local localization_global =
["ARENA_BATTLEPASS_5"] = "Mở khóa Chiến Lệnh Cao",
["ARENA_BATTLEPASS_6"] = "Nhận được Chiến Lệnh Cao, +10 cấp, nhận ngay thêm phần thưởng!",
["ARENA_BATTLEPASS_7"] = "Khi bạn hoàn thành tất cả nội dung của Chiến Lệnh Đấu Trường, cứ 1000 điểm được nhận 1 Rương Thưởng",
+ ["HERO_TRIAL_DESC_1"] = "Hãy thử dùng anh hùng S Mộc Lan khiêu chiến ải vừa thua!",
+ ["HERO_TRIAL_DESC_2"] = "Dùng thử",
+ ["HERO_TRIAL_DESC_3"] = "Mộc Lan tham chiến",
+ ["DISCORD_SETTING_DESC"] = "Discord",
+ ["COMMUNITY_DESC"] = "Facebook",
+ ["TWITTER_DESC"] = "Twitter",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/vi/item.lua b/lua/app/config/strings/vi/item.lua
index f579652f..f668e79a 100644
--- a/lua/app/config/strings/vi/item.lua
+++ b/lua/app/config/strings/vi/item.lua
@@ -102,6 +102,99 @@ local item = {
[26]={
["name"]="Mảnh Ngẫu Nhiên Cao Cấp",
["desc"]="Có tỷ lệ nhận ngẫu nhiên Mảnh Anh Hùng Ưu Tú, Hiếm hoặc Sử Thi."
+ },
+ [27]={
+
+ },
+ [1001]={
+
+ },
+ [1002]={
+
+ },
+ [1003]={
+
+ },
+ [1004]={
+
+ },
+ [1005]={
+
+ },
+ [1006]={
+
+ },
+ [1007]={
+
+ },
+ [1008]={
+
+ },
+ [1009]={
+
+ },
+ [1010]={
+
+ },
+ [1011]={
+
+ },
+ [1012]={
+
+ },
+ [1013]={
+
+ },
+ [1014]={
+
+ },
+ [1015]={
+
+ },
+ [1016]={
+
+ },
+ [1017]={
+
+ },
+ [1018]={
+
+ },
+ [1019]={
+
+ },
+ [1020]={
+
+ },
+ [1021]={
+
+ },
+ [1022]={
+
+ },
+ [1023]={
+
+ },
+ [1024]={
+
+ },
+ [1025]={
+
+ },
+ [1026]={
+
+ },
+ [1027]={
+
+ },
+ [1028]={
+
+ },
+ [1029]={
+
+ },
+ [1030]={
+
},
[12001]={
["name"]="Mảnh Vũ Cơ",
@@ -205,6 +298,6 @@ local item = {
}
}
local config = {
-data=item,count=51
+data=item,count=82
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/zh/global.lua b/lua/app/config/strings/zh/global.lua
index e655114e..4612cd86 100644
--- a/lua/app/config/strings/zh/global.lua
+++ b/lua/app/config/strings/zh/global.lua
@@ -330,6 +330,12 @@ local localization_global =
["ARENA_BATTLEPASS_5"] = "解鎖高級戰令",
["ARENA_BATTLEPASS_6"] = "獲得高級戰令,+10級,立即獲得更多獎勵!",
["ARENA_BATTLEPASS_7"] = "當你完成戰令的所有內容,之後每1000積分可以獲取一個獎勵寶箱",
+ ["HERO_TRIAL_DESC_1"] = "請試用S級英雄木蘭挑戰剛才戰敗的關卡!",
+ ["HERO_TRIAL_DESC_2"] = "試玩",
+ ["HERO_TRIAL_DESC_3"] = "木蘭參戰",
+ ["DISCORD_SETTING_DESC"] = "Discord",
+ ["COMMUNITY_DESC"] = "Facebook",
+ ["TWITTER_DESC"] = "Twitter",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/zh/item.lua b/lua/app/config/strings/zh/item.lua
index 2594af90..e44110ce 100644
--- a/lua/app/config/strings/zh/item.lua
+++ b/lua/app/config/strings/zh/item.lua
@@ -102,6 +102,99 @@ local item = {
[26]={
["name"]="高級隨機碎片",
["desc"]="有機率隨機獲得優秀,稀有或史詩英雄碎片。"
+ },
+ [27]={
+
+ },
+ [1001]={
+
+ },
+ [1002]={
+
+ },
+ [1003]={
+
+ },
+ [1004]={
+
+ },
+ [1005]={
+
+ },
+ [1006]={
+
+ },
+ [1007]={
+
+ },
+ [1008]={
+
+ },
+ [1009]={
+
+ },
+ [1010]={
+
+ },
+ [1011]={
+
+ },
+ [1012]={
+
+ },
+ [1013]={
+
+ },
+ [1014]={
+
+ },
+ [1015]={
+
+ },
+ [1016]={
+
+ },
+ [1017]={
+
+ },
+ [1018]={
+
+ },
+ [1019]={
+
+ },
+ [1020]={
+
+ },
+ [1021]={
+
+ },
+ [1022]={
+
+ },
+ [1023]={
+
+ },
+ [1024]={
+
+ },
+ [1025]={
+
+ },
+ [1026]={
+
+ },
+ [1027]={
+
+ },
+ [1028]={
+
+ },
+ [1029]={
+
+ },
+ [1030]={
+
},
[12001]={
["name"]="舞孃碎片",
@@ -205,6 +298,6 @@ local item = {
}
}
local config = {
-data=item,count=51
+data=item,count=82
}
return config
\ No newline at end of file
diff --git a/lua/app/config/task_dungeon_armor.lua.meta b/lua/app/config/task_dungeon_armor.lua.meta
index 6375b5e2..a140bd01 100644
--- a/lua/app/config/task_dungeon_armor.lua.meta
+++ b/lua/app/config/task_dungeon_armor.lua.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 90bf18f3ae8c9fc40aecdb4a26b78186
+guid: df19c6d2297813746bdc70bdc31bb542
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/lua/app/global/global_const.lua b/lua/app/global/global_const.lua
index 0f1feed3..016a8d20 100644
--- a/lua/app/global/global_const.lua
+++ b/lua/app/global/global_const.lua
@@ -16,6 +16,7 @@ local CONST_PATHS = {
SummonConst = "app/module/summon/summon_const",
MailConst = "app/module/mail/mail_const",
GameSettingConst = "app/module/game_setting/game_setting_const",
+ CollectionConst = "app/module/collection/collection_const",
}
if EDITOR_MODE then
@@ -442,6 +443,26 @@ GConst.HERO_DEC_QLT = {
[7] = "frame_dec_7",
}
+GConst.HERO_FRAME_QLT = {
+ [1] = "hero_frame_1",
+ [2] = "hero_frame_2",
+ [3] = "hero_frame_3",
+ [4] = "hero_frame_4",
+ [5] = "hero_frame_5",
+ [6] = "hero_frame_6",
+ [7] = "hero_frame_7",
+}
+
+GConst.HERO_FRAME_BG_QLT = {
+ [1] = "hero_frame_bg_1",
+ [2] = "hero_frame_bg_2",
+ [3] = "hero_frame_bg_3",
+ [4] = "hero_frame_bg_4",
+ [5] = "hero_frame_bg_5",
+ [6] = "hero_frame_bg_6",
+ [7] = "hero_frame_bg_7",
+}
+
GConst.QLT_LABLE = {
DEFAULT = "equip_quality_1",
GRAY = "equip_quality_1",
diff --git a/lua/app/module/collect.meta b/lua/app/module/collect.meta
new file mode 100644
index 00000000..0b71d7ea
--- /dev/null
+++ b/lua/app/module/collect.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 11f22869e64b8de4ea9fd8c2dcfd6ef0
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/module/collection.meta b/lua/app/module/collection.meta
new file mode 100644
index 00000000..f9396508
--- /dev/null
+++ b/lua/app/module/collection.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ad4c8aad031f9754a962dab75f396870
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/module/collection/collection_const.lua b/lua/app/module/collection/collection_const.lua
new file mode 100644
index 00000000..c7931519
--- /dev/null
+++ b/lua/app/module/collection/collection_const.lua
@@ -0,0 +1,9 @@
+local CollectionConst = {}
+
+CollectionConst.TYPE = {
+ HERO = 1,
+ SKIN = 2,
+ PET = 3,
+}
+
+return CollectionConst
\ No newline at end of file
diff --git a/lua/app/module/collection/collection_const.lua.meta b/lua/app/module/collection/collection_const.lua.meta
new file mode 100644
index 00000000..0633b4b8
--- /dev/null
+++ b/lua/app/module/collection/collection_const.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 221f18fccfb8c1648a291f233b060790
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/module/collection/collection_manager.lua b/lua/app/module/collection/collection_manager.lua
new file mode 100644
index 00000000..30d6fe30
--- /dev/null
+++ b/lua/app/module/collection/collection_manager.lua
@@ -0,0 +1,27 @@
+local CollectionManager = class("CollectionManager", BaseModule)
+
+-- 请求领取英雄图鉴点数
+function CollectionManager:reqHeroPoint(id)
+ self:sendMessage(ProtoMsgType.FromMsgEnum.HeroCollectionPointReq, {hero_id = id}, {}, self.rspHeroPoint)
+end
+
+function CollectionManager:rspHeroPoint(result)
+ if result.err_code == GConst.ERROR_STR.SUCCESS then
+ DataManager.CollectionData:onGetedPointSuccess(GConst.CollectionConst.TYPE.HERO, result.reqData.hero_id, result.point)
+ EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.COLLECTION_GET_POINT_SUCCESS)
+ end
+end
+
+-- 请求领取英雄图鉴奖励
+function CollectionManager:reqHeroPointReward()
+ self:sendMessage(ProtoMsgType.FromMsgEnum.HeroCollectionUpgradeReq, {}, {}, self.rspHeroPointReward, BIReport.ITEM_GET_TYPE.COLLECTION_HERO_REWARD)
+end
+
+function CollectionManager:rspHeroPointReward(result)
+ if result.err_code == GConst.ERROR_STR.SUCCESS then
+ GFunc.showRewardBox(result.rewards)
+ DataManager.CollectionData:onGetedPointRewardSuccess(GConst.CollectionConst.TYPE.HERO)
+ end
+end
+
+return CollectionManager
\ No newline at end of file
diff --git a/lua/app/module/collection/collection_manager.lua.meta b/lua/app/module/collection/collection_manager.lua.meta
new file mode 100644
index 00000000..29fc4158
--- /dev/null
+++ b/lua/app/module/collection/collection_manager.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: bd6ae0e6d35622746b493a498e360de2
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/proto/proto_msg_type.lua b/lua/app/proto/proto_msg_type.lua
index a11a26f7..4def38d6 100644
--- a/lua/app/proto/proto_msg_type.lua
+++ b/lua/app/proto/proto_msg_type.lua
@@ -66,6 +66,8 @@ local ProtoMsgType = {
[1746319121] = "IdleInfoRsp",
[1751460231] = "PVPHeroesArrayReq",
[1751462064] = "PVPHeroesArrayRsp",
+ [1870101082] = "HeroCollectionUpgradeReq",
+ [1870102915] = "HeroCollectionUpgradeRsp",
[1901321540] = "PipedReq",
[2060508030] = "ChangeAvatarFrameReq",
[2060509863] = "ChangeAvatarFrameRsp",
@@ -132,6 +134,8 @@ local ProtoMsgType = {
[3359971516] = "ChapterGoldChallengeSettlementRsp",
[3363939655] = "TaskDailyAdReq",
[3363941488] = "TaskDailyAdRsp",
+ [3415436922] = "HeroCollectionPointReq",
+ [3415438755] = "HeroCollectionPointRsp",
[3421550443] = "GlobalGiftReq",
[3421552276] = "GlobalGiftRsp",
[3421843875] = "TaskDailyRewardReq",
@@ -235,6 +239,8 @@ local ProtoMsgType = {
IdleInfoRsp = 1746319121,
PVPHeroesArrayReq = 1751460231,
PVPHeroesArrayRsp = 1751462064,
+ HeroCollectionUpgradeReq = 1870101082,
+ HeroCollectionUpgradeRsp = 1870102915,
PipedReq = 1901321540,
ChangeAvatarFrameReq = 2060508030,
ChangeAvatarFrameRsp = 2060509863,
@@ -301,6 +307,8 @@ local ProtoMsgType = {
ChapterGoldChallengeSettlementRsp = 3359971516,
TaskDailyAdReq = 3363939655,
TaskDailyAdRsp = 3363941488,
+ HeroCollectionPointReq = 3415436922,
+ HeroCollectionPointRsp = 3415438755,
GlobalGiftReq = 3421550443,
GlobalGiftRsp = 3421552276,
TaskDailyRewardReq = 3421843875,
@@ -404,6 +412,8 @@ local ProtoMsgType = {
IdleInfoRsp = "IdleInfoRsp",
PVPHeroesArrayReq = "PVPHeroesArrayReq",
PVPHeroesArrayRsp = "PVPHeroesArrayRsp",
+ HeroCollectionUpgradeReq = "HeroCollectionUpgradeReq",
+ HeroCollectionUpgradeRsp = "HeroCollectionUpgradeRsp",
PipedReq = "PipedReq",
ChangeAvatarFrameReq = "ChangeAvatarFrameReq",
ChangeAvatarFrameRsp = "ChangeAvatarFrameRsp",
@@ -470,6 +480,8 @@ local ProtoMsgType = {
ChapterGoldChallengeSettlementRsp = "ChapterGoldChallengeSettlementRsp",
TaskDailyAdReq = "TaskDailyAdReq",
TaskDailyAdRsp = "TaskDailyAdRsp",
+ HeroCollectionPointReq = "HeroCollectionPointReq",
+ HeroCollectionPointRsp = "HeroCollectionPointRsp",
GlobalGiftReq = "GlobalGiftReq",
GlobalGiftRsp = "GlobalGiftRsp",
TaskDailyRewardReq = "TaskDailyRewardReq",
diff --git a/lua/app/ui/collect.meta b/lua/app/ui/collect.meta
new file mode 100644
index 00000000..00a3c0d8
--- /dev/null
+++ b/lua/app/ui/collect.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c56c88e137c922f48a8bc2472bc0186c
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/ui/collection.meta b/lua/app/ui/collection.meta
new file mode 100644
index 00000000..351dd514
--- /dev/null
+++ b/lua/app/ui/collection.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1726806ea8c73cd40b698682913da137
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/ui/collection/cell.meta b/lua/app/ui/collection/cell.meta
new file mode 100644
index 00000000..91e5d7c7
--- /dev/null
+++ b/lua/app/ui/collection/cell.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 5bff7037a20c37b428f586d9f0e3d53c
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/ui/collection/cell/collection_hero_cell.lua b/lua/app/ui/collection/cell/collection_hero_cell.lua
new file mode 100644
index 00000000..35312654
--- /dev/null
+++ b/lua/app/ui/collection/cell/collection_hero_cell.lua
@@ -0,0 +1,74 @@
+local CollectionHeroCell = class("CollectionHeroCell", BaseCell)
+
+function CollectionHeroCell:init()
+ local uiMap = self:getUIMap()
+ self.imgQlt = uiMap["collection_hero_cell.img_qlt"]
+ self.imgType = uiMap["collection_hero_cell.img_qlt.img_type"]
+ self.txLevel = uiMap["collection_hero_cell.tx_level"]
+ self.txName = uiMap["collection_hero_cell.tx_name"]
+ self.txMax = uiMap["collection_hero_cell.tx_max"]
+ self.btnCollect = uiMap["collection_hero_cell.btn_collect"]
+ self.imgIcon = uiMap["collection_hero_cell.btn_collect.img_icon"]
+ self.txValue = uiMap["collection_hero_cell.btn_collect.tx_value"]
+ self.spineRoot = uiMap["collection_hero_cell.spine_root.spine_hero"]
+
+ self.btnCollect:addClickListener(function()
+ if DataManager.CollectionData:getCanCollectPoint(GConst.CollectionConst.TYPE.HERO, self.heroData.id) > 0 then
+ ModuleManager.CollectionManager:reqHeroPoint(self.heroData.id)
+ EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.COLLECTION_CLICK_GET_POINT, self.imgIcon:getPosition())
+ else
+ GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.BATTLE_DESC_8))
+ end
+ end)
+ self:bind(DataManager.CollectionData, "dirtyHero", function()
+ self:refreshCollectPoint()
+ end)
+end
+
+function CollectionHeroCell:refresh(data)
+ self.heroData = data
+ local entity = DataManager.HeroData:getHeroById(self.heroData.id)
+
+ if self.spineHero then
+ self.spineHero:destroy()
+ self.spineHero = nil
+ end
+ SpineManager:loadHeroAsync(entity:getModelId(), self.spineRoot, function(spineObject)
+ spineObject:setDefaultMix(0)
+ self.spineHero = spineObject
+ end)
+ self.baseObject:setSprite(GConst.ATLAS_PATH.HERO, GConst.HERO_FRAME_QLT[self.heroData.qlt])
+ self.imgQlt:setSprite(GConst.ATLAS_PATH.HERO, GConst.HERO_FRAME_BG_QLT[self.heroData.qlt])
+ self.imgType:setSprite(GConst.ATLAS_PATH.ICON_HERO, GConst.HeroConst.MATCH_ICON_NAME[self.heroData.position])
+ self.txName:setText(ModuleManager.HeroManager:getHeroName(self.heroData.id))
+ local heroEntity = DataManager.HeroData:getHeroById(self.heroData.id)
+ if heroEntity then
+ self.txLevel:setText(I18N:getGlobalText(I18N.GlobalConst.HERO_DESC_1, heroEntity:getLv()))
+ else
+ self.txLevel:setText(I18N:getGlobalText(I18N.GlobalConst.HERO_DESC_1, 0))
+ end
+ self.txMax:setVisible(heroEntity and heroEntity:isMaxLv())
+ self.txMax:setText(I18N:getGlobalText(I18N.GlobalConst.COLLECTION_DESC_2))
+
+ self:refreshCollectPoint()
+end
+
+-- 刷新收集点数状态
+function CollectionHeroCell:refreshCollectPoint()
+ local canGetValue = DataManager.CollectionData:getCanCollectPoint(GConst.CollectionConst.TYPE.HERO, self.heroData.id)
+ local heroEntity = DataManager.HeroData:getHeroById(self.heroData.id)
+ if canGetValue > 0 then
+ self.txValue:setText("+" .. canGetValue)
+ self.txLevel:setText(""..I18N:getGlobalText(I18N.GlobalConst.HERO_DESC_1, heroEntity:getLv()).."")
+ GFunc.getShakeSeq(self.txLevel, false, 1, true)
+ self.btnCollect:setSprite(GConst.ATLAS_PATH.COMMON, "common_btn_green_3")
+ else
+ self.txValue:setText("+" .. heroEntity:getCollectionPoint())
+ self.txLevel:setText(I18N:getGlobalText(I18N.GlobalConst.HERO_DESC_1, heroEntity:getLv()))
+ GFunc.getShakeSeq(self.txLevel, true)
+ self.btnCollect:setSprite(GConst.ATLAS_PATH.COMMON, "common_btn_grey_3")
+ end
+ GFunc.centerTxAndImg(self.txValue, self.imgIcon, 2)
+end
+
+return CollectionHeroCell
\ No newline at end of file
diff --git a/lua/app/ui/collection/cell/collection_hero_cell.lua.meta b/lua/app/ui/collection/cell/collection_hero_cell.lua.meta
new file mode 100644
index 00000000..9524831e
--- /dev/null
+++ b/lua/app/ui/collection/cell/collection_hero_cell.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: ae283986db9430a4c93e36cf10c35276
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/collection/cell/collection_reward_cell.lua b/lua/app/ui/collection/cell/collection_reward_cell.lua
new file mode 100644
index 00000000..a3a695e6
--- /dev/null
+++ b/lua/app/ui/collection/cell/collection_reward_cell.lua
@@ -0,0 +1,59 @@
+local CollectionRewardCell = class("CollectionRewardCell", BaseCell)
+
+function CollectionRewardCell:init()
+ local uiMap = self:getUIMap()
+
+ self.imgProg = uiMap["collection_reward_cell.progress.img_prog"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER)
+ self.txValue = uiMap["collection_reward_cell.progress.tx_value"]
+ self.txDesc = uiMap["collection_reward_cell.reward_info.tx_desc"]
+ self.maskReward = uiMap["collection_reward_cell.reward_info.mask"]
+ self.tagProg = uiMap["collection_reward_cell.cur_prog"]
+ self.imgTag = uiMap["collection_reward_cell.cur_prog.img_icon"]
+ self.txTag = uiMap["collection_reward_cell.cur_prog.tx_value"]
+ self.rewards = {}
+ for i = 1, 4 do
+ table.insert(self.rewards, uiMap["collect_reward_cell.reward_info.rewards.reward_cell_" .. i]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.REWARD_CELL))
+ end
+end
+
+function CollectionRewardCell:refresh(type, id)
+ local curPoint = DataManager.CollectionData:getCurCollectPoint(type)
+ local rewardList = DataManager.CollectionData:getRewardList(type)[id]
+ self.txValue:setText(rewardList.point)
+ self.txTag:setText(curPoint)
+
+ local prog = DataManager.CollectionData:getRewardTargetProgress(type, id)
+ if DataManager.CollectionData:getCurTargetId(type) == id then
+ self.imgProg.value = prog
+ self.tagProg:setVisible(true)
+ -- 高度超框处理
+ local rootHeight = self.baseObject:fastGetSizeDeltaY()
+ local posY = rootHeight * prog
+
+ if id == 1 or id == #DataManager.CollectionData:getRewardList(type) then
+ local tagHeight = self.tagProg:fastGetSizeDeltaY()
+ if posY < tagHeight / 2 then
+ posY = tagHeight / 2
+ end
+ end
+ self.tagProg:setAnchoredPositionY(posY)
+ else
+ self.imgProg.value = prog
+ self.tagProg:setVisible(false)
+ end
+
+ if DataManager.CollectionData:isRewardReceived(type, id) then
+ self.maskReward:setVisible(false)
+ self.txDesc:setText(I18N:getGlobalText(I18N.GlobalConst.COLLECTION_DESC_5))
+ else
+ self.maskReward:setVisible(true)
+ self.txDesc:setText(I18N:getGlobalText(I18N.GlobalConst.COLLECTION_DESC_6))
+ end
+ for idx, reward in pairs(self.rewards) do
+ reward:refreshByConfig(rewardList.reward[idx])
+ end
+
+ GFunc.centerImgAndTx(self.imgTag, self.txTag, 5)
+end
+
+return CollectionRewardCell
\ No newline at end of file
diff --git a/lua/app/ui/collection/cell/collection_reward_cell.lua.meta b/lua/app/ui/collection/cell/collection_reward_cell.lua.meta
new file mode 100644
index 00000000..f26559af
--- /dev/null
+++ b/lua/app/ui/collection/cell/collection_reward_cell.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 2cc9b8daf8ade214ab8c02d7747555e4
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/collection/collection_reward_ui.lua b/lua/app/ui/collection/collection_reward_ui.lua
new file mode 100644
index 00000000..ca1fdf1e
--- /dev/null
+++ b/lua/app/ui/collection/collection_reward_ui.lua
@@ -0,0 +1,59 @@
+local CollectionRewardUI = class("CollectionRewardUI", BaseUI)
+
+function CollectionRewardUI:isFullScreen()
+ return true
+end
+
+function CollectionRewardUI:showCommonBG()
+ return false
+end
+
+function CollectionRewardUI:getPrefabPath()
+ return "assets/prefabs/ui/collection/collection_reward_ui.prefab"
+end
+
+function CollectionRewardUI:onPressBackspace()
+ self:closeUI()
+end
+
+function CollectionRewardUI:ctor(params)
+ self.collectType = params
+end
+
+function CollectionRewardUI:onCover()
+end
+
+function CollectionRewardUI:onReshow()
+end
+
+function CollectionRewardUI:onClose()
+end
+
+function CollectionRewardUI:onLoadRootComplete()
+ local uiMap = self.root:genAllChildren()
+
+ self.scrollrectComp = uiMap["collect_reward_ui.scrollrect"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE)
+ uiMap["collect_reward_ui.banner.btn_close"]:addClickListener(function()
+ self:closeUI()
+ end)
+end
+
+function CollectionRewardUI:onRefresh()
+ local datas = DataManager.CollectionData:getRewardList(self.collectType)
+ self.scrollrectComp:addInitCallback(function()
+ return "app/ui/collection/cell/collection_reward_cell"
+ end)
+ self.scrollrectComp:addRefreshCallback(function(index, cell)
+ cell:refresh(self.collectType, #datas - index + 1)
+ end)
+ self.scrollrectComp:clearCells()
+ self.scrollrectComp:refillCells(#datas)
+ local selectIdx = DataManager.CollectionData:getCurTargetId(self.collectType)
+ selectIdx = #datas - selectIdx + 1
+ if selectIdx - 2 >= 0 then
+ selectIdx = selectIdx - 2
+ end
+ self.scrollrectComp:moveToIndex(selectIdx)
+end
+
+return CollectionRewardUI
\ No newline at end of file
diff --git a/lua/app/ui/collection/collection_reward_ui.lua.meta b/lua/app/ui/collection/collection_reward_ui.lua.meta
new file mode 100644
index 00000000..14b56d00
--- /dev/null
+++ b/lua/app/ui/collection/collection_reward_ui.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 9cac2676e7e230540b6a03223d6b8b44
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/collection/collection_ui.lua b/lua/app/ui/collection/collection_ui.lua
new file mode 100644
index 00000000..7ef4c294
--- /dev/null
+++ b/lua/app/ui/collection/collection_ui.lua
@@ -0,0 +1,166 @@
+local CollectionUI = class("CollectionUI", BaseUI)
+
+function CollectionUI:isFullScreen()
+ return true
+end
+
+function CollectionUI:showCommonBG()
+ return false
+end
+
+function CollectionUI:getPrefabPath()
+ return "assets/prefabs/ui/collection/collection_ui.prefab"
+end
+
+function CollectionUI:onPressBackspace()
+ self:closeUI()
+end
+
+function CollectionUI:ctor(params)
+ self.collectType = params
+end
+
+function CollectionUI:onCover()
+end
+
+function CollectionUI:onReshow()
+end
+
+function CollectionUI:onClose()
+ if self.animFly then
+ self.animFly:Kill()
+ self.animFly = nil
+ end
+ if self.showRewardNodeSid then
+ self:unscheduleGlobal(self.showRewardNodeSid)
+ end
+end
+
+function CollectionUI:onLoadRootComplete()
+ local uiMap = self.root:genAllChildren()
+
+ self.txTitle = uiMap["collect_ui.tx_title"]
+ self.btnHelp = uiMap["collect_ui.tx_title.btn_help"]
+ self.btnClose = uiMap["collect_ui.banner.btn_close"]
+ self.scrollrectComp = uiMap["collect_ui.scrollrect"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE)
+ self.rewardsNode = uiMap["collection_ui.rewards"]
+ self.btnRewards = uiMap["collection_ui.rewards.point.btn_rewards"]
+ self.txTotalValue = uiMap["collect_ui.rewards.btn_rewards.tx_total"]
+ self.btnGet = uiMap["collection_ui.rewards.btn_get"]
+ self.imgGet = uiMap["collection_ui.rewards.btn_get.img_icon"]
+ self.txGet = uiMap["collection_ui.rewards.btn_get.tx_get"]
+ self.txDesc = uiMap["collect_ui.rewards.tx_desc"]
+ self.txStage = uiMap["collect_ui.rewards.tx_stage"]
+ self.imgProg = uiMap["collect_ui.rewards.prog.img_prog"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER)
+ self.flyEndTarget = uiMap["collection_ui.rewards.point"]
+ self.flyIcon = uiMap["collection_ui.fly_icon"]
+
+ self.txTitle:setText(I18N:getGlobalText(I18N.GlobalConst.COLLECTION_DESC_1))
+
+ self.btnRewards:addClickListener(function()
+ UIManager:showUI("app/ui/collection/collection_reward_ui", self.collectType)
+ end)
+ self.btnGet:addClickListener(function()
+ ModuleManager.CollectionManager:reqHeroPointReward()
+ end)
+ self.btnClose:addClickListener(function()
+ self:closeUI()
+ end)
+ self.btnHelp:addClickListener(function()
+ local params = {
+ type = GConst.TipsConst.HELP_TIPS_TYPE.ARENA,
+ title = I18N:getGlobalText(I18N.GlobalConst.COLLECTION_DESC_11),
+ desc = I18N:getGlobalText(I18N.GlobalConst.COLLECTION_DESC_7),
+ }
+ ModuleManager.TipsManager:showHelpTips(params)
+ end)
+ self:bind(DataManager.CollectionData, "dirtyHero", function()
+ self:refreshCollectPoint()
+ self:showFlyAnim()
+ end)
+ self:addEventListener(EventManager.CUSTOM_EVENT.COLLECTION_CLICK_GET_POINT, function(pos)
+ self.flyFromPos = pos
+ end)
+end
+
+function CollectionUI:onRefresh()
+ self:showCollectList()
+ self:refreshCollectPoint()
+end
+
+function CollectionUI:showCollectList()
+ local datas = DataManager.CollectionData:getCollectList(self.collectType)
+ self.scrollrectComp:addInitCallback(function()
+ return "app/ui/collection/cell/collection_hero_cell"
+ end)
+ self.scrollrectComp:addRefreshCallback(function(index, cell)
+ cell:refresh(datas[index])
+ end)
+ self.scrollrectComp:clearCells()
+ self.scrollrectComp:refillCells(#datas)
+ self.flyIcon:setActive(false)
+end
+
+-- 刷新收集点数状态
+function CollectionUI:refreshCollectPoint()
+ local showId = DataManager.CollectionData:getCanGetOrCollectingTargetId(self.collectType)
+ -- Logger.logHighlight("展示档位:"..showId)
+ if showId then
+ local target = DataManager.CollectionData:getTargetPoint(self.collectType, showId)
+ local owned = DataManager.CollectionData:getTargetOwnedPoint(self.collectType, showId)
+ self.txStage:setText(owned.."/"..target)
+ self.imgProg.value = owned / target
+ if DataManager.CollectionData:isMeetTargetPoint(self.collectType, showId) then
+ -- 可领取
+ self.txGet:setText(I18N:getGlobalText(I18N.GlobalConst.BTN_CLAIM))
+ self.txDesc:setText(I18N:getGlobalText(I18N.GlobalConst.COLLECTION_DESC_9))
+ self.imgGet:setSprite(GConst.ATLAS_PATH.HERO, "hero_dec_7")
+ self.btnGet:setSprite(GConst.ATLAS_PATH.COMMON, "common_btn_green_2")
+ self.btnGet:setTouchEnable(true)
+ else
+ -- 进行中
+ self.txGet:setText(I18N:getGlobalText(I18N.GlobalConst.COLLECTION_DESC_3))
+ self.txDesc:setText(I18N:getGlobalText(I18N.GlobalConst.COLLECTION_DESC_4, target - owned))
+ self.imgGet:setSprite(GConst.ATLAS_PATH.HERO, "hero_dec_8")
+ self.btnGet:setSprite(GConst.ATLAS_PATH.COMMON, "common_btn_grey_2")
+ self.btnGet:setTouchEnable(false)
+ end
+ else
+ -- 已全部领完所有目标
+ self.txGet:setText(I18N:getGlobalText(I18N.GlobalConst.BTN_CLAIM))
+ self.txDesc:setText(I18N:getGlobalText(I18N.GlobalConst.COLLECTION_DESC_8))
+ self.btnGet:setSprite(GConst.ATLAS_PATH.COMMON, "common_btn_grey_2")
+ self.btnGet:setTouchEnable(false)
+ end
+
+ local total = DataManager.CollectionData:getTotalCollectPoint(self.collectType)
+ local cur = DataManager.CollectionData:getCurCollectPoint(self.collectType)
+ self.txTotalValue:setText(cur.."/"..total)
+
+ GFunc.centerImgAndTx(self.imgGet, self.txGet, 5)
+end
+
+function CollectionUI:showFlyAnim()
+ if not self.flyFromPos then
+ return
+ end
+
+ self.flyIcon:setLocalScale(0.4, 0.4, 0.4)
+ self.flyIcon:setPosition(self.flyFromPos.x, self.flyFromPos.y, self.flyFromPos.z)
+ self.flyIcon:setActive(true)
+ if self.animFly then
+ self.animFly:Kill()
+ self.animFly = nil
+ end
+ self.animFly = self.root:createBindTweenSequence()
+ self.animFly:Insert(0, self.flyIcon:getTransform():DOScale(0.8, 0.2))
+ self.animFly:Insert(0.2, self.flyIcon:getTransform():DOMove(self.flyEndTarget:getPosition(), 1))
+ self.animFly:Insert(0.4, self.flyIcon:getTransform():DOScale(0.4, 0.4))
+ self.animFly:OnComplete(function()
+ self.flyIcon:setActive(false)
+ self.flyFromPos = nil
+ self.animFly = nil
+ end)
+end
+
+return CollectionUI
\ No newline at end of file
diff --git a/lua/app/ui/collection/collection_ui.lua.meta b/lua/app/ui/collection/collection_ui.lua.meta
new file mode 100644
index 00000000..db11f09d
--- /dev/null
+++ b/lua/app/ui/collection/collection_ui.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 7a787b40463f3c044b751be6d9d268a0
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/hero/hero_comp.lua b/lua/app/ui/hero/hero_comp.lua
index afab5ff9..984d348b 100644
--- a/lua/app/ui/hero/hero_comp.lua
+++ b/lua/app/ui/hero/hero_comp.lua
@@ -50,6 +50,12 @@ function HeroComp:init()
self.largeHeroCell:getBaseObject():setAnchoredPositionX(OUT_SCREEN_X)
end)
+ self.btnCollection = self.uiMap["hero_ui.btn_collect"]
+ self.btnCollection:addClickListener(function()
+ UIManager:showUI("app/ui/collection/collection_ui", GConst.CollectionConst.TYPE.HERO)
+ end)
+ self.uiMap["hero_ui.btn_collect.tx_collect"]:setText(I18N:getGlobalText(I18N.GlobalConst.COLLECTION_DESC_10))
+
for index, obj in ipairs(self.heroNodeList) do
obj:addClickListener(function()
local heroId = self.curFormation[index]
@@ -85,6 +91,7 @@ function HeroComp:refreshStageFormation()
self.txTitle:setText(I18N:getGlobalText(I18N.GlobalConst.MAIN_BTN_2))
self.rimgTopBG:setTexture("assets/arts/textures/background/hero/hero_bg_1.png")
self.curFormation = DataManager.FormationData:getStageFormation()
+ self.btnCollection:setVisible(DataManager.CollectionData:isOpen(GConst.CollectionConst.TYPE.HERO))
self.onClickUseFunc = function(id, type)
ModuleManager.FormationManager:upHeroToStageFormation(id, type)
@@ -98,6 +105,7 @@ function HeroComp:refreshArenaFightFormation()
self.txTitle:setText(I18N:getGlobalText(I18N.GlobalConst.ARENA_DESC_10))
self.rimgTopBG:setTexture("assets/arts/textures/background/arena/arena_bg_2.png")
self.curFormation = DataManager.FormationData:getArenaAttackFormation()
+ self.btnCollection:setVisible(false)
self.onClickUseFunc = function(id, type)
DataManager.FormationData:upHeroToFormation(self.battleType, type, id)
@@ -112,6 +120,7 @@ function HeroComp:refreshArenaDefendFormation()
self.txTitle:setText(I18N:getGlobalText(I18N.GlobalConst.ARENA_DESC_9))
self.rimgTopBG:setTexture("assets/arts/textures/background/arena/arena_bg_2.png")
self.curFormation = DataManager.FormationData:getArenaDefendFormation()
+ self.btnCollection:setVisible(false)
self.onClickUseFunc = function(id, type)
DataManager.FormationData:upHeroToFormation(self.battleType, type, id)
diff --git a/lua/app/userdata/collect.meta b/lua/app/userdata/collect.meta
new file mode 100644
index 00000000..76b4d022
--- /dev/null
+++ b/lua/app/userdata/collect.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: efb0d3e8c0cc1c74fbac7623ffa7ae82
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/userdata/collection.meta b/lua/app/userdata/collection.meta
new file mode 100644
index 00000000..c9a744e6
--- /dev/null
+++ b/lua/app/userdata/collection.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 0ebe91bd05891a14f8a14e71e85ada09
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/userdata/collection/collection_base_entity.lua b/lua/app/userdata/collection/collection_base_entity.lua
new file mode 100644
index 00000000..be57be25
--- /dev/null
+++ b/lua/app/userdata/collection/collection_base_entity.lua
@@ -0,0 +1,92 @@
+local CollectionBaseEntity = class("CollectionBaseEntity", BaseData)
+
+-- 需要继承重写的部分 ***********************************************************
+
+-- 初始化服务器数据
+function CollectionBaseEntity:init(data)
+end
+
+-- 获取当前收集值
+function CollectionBaseEntity:getCurCollectPoint()
+ return nil
+end
+
+-- 获取当前已领取奖励图鉴等级
+function CollectionBaseEntity:getCurCollectLevel()
+ return nil
+end
+
+-- 获取总收集值
+function CollectionBaseEntity:getTotalCollectPoint()
+ return nil
+end
+
+-- 获取收集目标列表
+function CollectionBaseEntity:getCollectList()
+ return nil
+end
+
+-- 获取收集奖励列表
+function CollectionBaseEntity:getRewardList()
+ return nil
+end
+
+-- 获取当前所在档位id
+function CollectionBaseEntity:getCurTargetId()
+ return nil
+end
+
+-- 获取档位的总目标值
+function CollectionBaseEntity:getGearTotalValue(id)
+ return nil
+end
+
+-- 获取当前收集值在档位的值
+function CollectionBaseEntity:getGearTotalValue(id)
+ return nil
+end
+
+-- 获取奖励档位收集进度
+function CollectionBaseEntity:getRewardTargetProgress(id)
+ return nil
+end
+
+-- 获取当前可领奖or正在进行中的目标
+function CollectionBaseEntity:getCanGetOrCollectingTargetId()
+ return nil
+end
+
+-- 获取收集目标点数
+function CollectionBaseEntity:getTargetPoint(id)
+ return nil
+end
+
+-- 获取基于目标收集点数的当前收集值
+function CollectionBaseEntity:getTargetOwnedPoint(id)
+ return nil
+end
+
+-- 获取可领取收集值
+function CollectionBaseEntity:getCanCollectPoint()
+ return nil
+end
+
+-- 奖励是否已领取
+function CollectionBaseEntity:isRewardReceived(id)
+ return nil
+end
+
+-- 是否满足奖励领取条件
+function CollectionBaseEntity:isMeetTargetPoint(id)
+ return nil
+end
+
+-- 领取收集点数成功
+function CollectionBaseEntity:onGetedPointSuccess(id, point)
+end
+
+-- 领取图鉴奖励成功
+function CollectionBaseEntity:onGetedPointRewardSuccess()
+end
+
+return CollectionBaseEntity
\ No newline at end of file
diff --git a/lua/app/userdata/collection/collection_base_entity.lua.meta b/lua/app/userdata/collection/collection_base_entity.lua.meta
new file mode 100644
index 00000000..30bccb43
--- /dev/null
+++ b/lua/app/userdata/collection/collection_base_entity.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: b390f1e69773bbc4b8a6c84deb1fe030
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/userdata/collection/collection_data.lua b/lua/app/userdata/collection/collection_data.lua
new file mode 100644
index 00000000..1095177d
--- /dev/null
+++ b/lua/app/userdata/collection/collection_data.lua
@@ -0,0 +1,143 @@
+local CollectionData = class("CollectionData", BaseData)
+
+function CollectionData:ctor()
+ self.data.dirtyHero = false
+end
+
+function CollectionData:clear()
+end
+
+function CollectionData:init(data)
+ data = data or GConst.EMPTY_TABLE
+
+ self:initCollectHero(data.hero)
+end
+
+-- 初始化英雄图鉴数据
+function CollectionData:initCollectHero(data)
+ if data == nil then
+ return
+ end
+
+ if EDITOR_MODE then
+ Logger.logHighlight("更新英雄图鉴数据")
+ Logger.printTable(data)
+ end
+
+ self:initAllDataClass()
+ self.datas[GConst.CollectionConst.TYPE.HERO] = data
+ self.dataCollects[GConst.CollectionConst.TYPE.HERO]:init(data)
+ self:setDirty(GConst.CollectionConst.TYPE.HERO)
+end
+
+-- 初始化所有图鉴数据类
+function CollectionData:initAllDataClass()
+ if self.dataCollects == nil then
+ self.dataCollects = {}
+ self.dataCollects[GConst.CollectionConst.TYPE.HERO] = require "app/userdata/collection/collection_hero_entity":create()
+ end
+ if self.datas == nil then
+ self.datas = {}
+ end
+end
+
+function CollectionData:setDirty(type)
+ if type == GConst.CollectionConst.TYPE.HERO then
+ self.data.dirtyHero = not self.data.dirtyHero
+ end
+end
+
+function CollectionData:isOpen(type)
+ if not ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.COLLECT, true) then
+ return false
+ end
+ if type and (not self.datas or not self.datas[type]) then
+ return false
+ end
+ return true
+end
+
+function CollectionData:getCollectEntity(type)
+ return self.dataCollects[type]
+end
+
+-- 获取当前收集值
+function CollectionData:getCurCollectPoint(type)
+ return self.dataCollects[type]:getCurCollectPoint()
+end
+
+-- 获取当前已领取奖励图鉴等级
+function CollectionData:getCurCollectLevel(type)
+ return self.dataCollects[type]:getCurCollectLevel()
+end
+
+-- 获取总收集值
+function CollectionData:getTotalCollectPoint(type)
+ return self.dataCollects[type]:getTotalCollectPoint()
+end
+
+-- 获取收集目标列表
+function CollectionData:getCollectList(type)
+ return self.dataCollects[type]:getCollectList()
+end
+
+-- 获取收集奖励列表
+function CollectionData:getRewardList(type)
+ return self.dataCollects[type]:getRewardList()
+end
+
+-- 获取当前所在档位id
+function CollectionData:getCurTargetId(type)
+ return self.dataCollects[type]:getCurTargetId()
+end
+
+-- 获取奖励档位收集进度
+function CollectionData:getRewardTargetProgress(type, id)
+ return self.dataCollects[type]:getRewardTargetProgress(id)
+end
+
+-- 获取当前可领奖or正在进行中的目标
+function CollectionData:getCanGetOrCollectingTargetId(type)
+ return self.dataCollects[type]:getCanGetOrCollectingTargetId()
+end
+
+-- 获取收集目标点数
+function CollectionData:getTargetPoint(type, id)
+ return self.dataCollects[type]:getTargetPoint(id)
+end
+
+-- 获取基于目标收集点数的当前收集值
+function CollectionData:getTargetOwnedPoint(type, id)
+ return self.dataCollects[type]:getTargetOwnedPoint(id)
+end
+
+-- 获取可领取收集值
+function CollectionData:getCanCollectPoint(type, id)
+ return self.dataCollects[type]:getCanCollectPoint(id)
+end
+
+-- 奖励是否已领取
+function CollectionData:isRewardReceived(type, id)
+ return self.dataCollects[type]:isRewardReceived(id)
+end
+
+-- 是否满足奖励领取条件
+function CollectionData:isMeetTargetPoint(type, id)
+ return self.dataCollects[type]:isMeetTargetPoint(id)
+end
+
+-- 事件 -----------------------------------------------------------------------------------------------
+
+-- 领取收集点数成功
+function CollectionData:onGetedPointSuccess(type, heroId, point)
+ self.dataCollects[type]:onGetedPointSuccess(heroId, point)
+ self:setDirty(type)
+end
+
+-- 领取图鉴奖励成功
+function CollectionData:onGetedPointRewardSuccess(type)
+ self.dataCollects[type]:onGetedPointRewardSuccess()
+ self:setDirty(type)
+end
+
+return CollectionData
\ No newline at end of file
diff --git a/lua/app/userdata/collection/collection_data.lua.meta b/lua/app/userdata/collection/collection_data.lua.meta
new file mode 100644
index 00000000..05010fe6
--- /dev/null
+++ b/lua/app/userdata/collection/collection_data.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 34d7a4f42cb3c4841978d0fb80db6bd7
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/userdata/collection/collection_hero_entity.lua b/lua/app/userdata/collection/collection_hero_entity.lua
new file mode 100644
index 00000000..10df3ec0
--- /dev/null
+++ b/lua/app/userdata/collection/collection_hero_entity.lua
@@ -0,0 +1,216 @@
+local CollectBaseEntity = require "app/userdata/collection/collection_base_entity"
+local CollectionHeroEntity = class("CollectionHeroEntity", CollectBaseEntity)
+
+-- 英雄图鉴数据
+
+-- 初始化服务器数据
+function CollectionHeroEntity:init(data)
+ self.curlevel = data.level
+ self.curPoint = data.point
+end
+
+-- 获取当前收集值
+function CollectionHeroEntity:getCurCollectPoint()
+ return self.curPoint
+end
+
+-- 获取当前已领取奖励图鉴等级
+function CollectionHeroEntity:getCurCollectLevel()
+ return self.curlevel
+end
+
+-- 获取总收集值
+function CollectionHeroEntity:getTotalCollectPoint()
+ return self:getRewardList()[#self:getRewardList()].point
+end
+
+-- 获取收集目标列表
+function CollectionHeroEntity:getCollectList()
+ if self.heroList == nil then
+ self.heroList = {}
+ for id, data in pairs(ConfigManager:getConfig("hero")) do
+ data.id = id
+ table.insert(self.heroList, data)
+ end
+ table.sort(self.heroList, function(a, b)
+ if a.qlt ~= b.qlt then
+ return a.qlt > b.qlt
+ end
+ return a.id > b.id
+ end)
+ -- Logger.printTable(self.heroList)
+ end
+ return self.heroList
+end
+
+-- 获取收集奖励列表
+function CollectionHeroEntity:getRewardList()
+ if self.cfgRewards == nil then
+ self.cfgRewards = ConfigManager:getConfig("collection")
+ end
+
+ return self.cfgRewards
+end
+
+-- 获取当前收集点数所在档位id
+function CollectionHeroEntity:getCurTargetId()
+ for id, data in pairs(self:getRewardList()) do
+ local prog = self:getRewardTargetProgress(id)
+ if prog >= 0 and prog < 1 then
+ -- 在进度条范围内
+ return id
+ end
+ end
+end
+
+-- 获取奖励档位收集进度
+function CollectionHeroEntity:getRewardTargetProgress(id)
+ local cur = self:getCurCollectPoint()
+ local rangeMin = self:getTargetMinPoint(id)
+ local rangeMax = self:getTargetMaxPoint(id)
+ -- Logger.logHighlight(id.."档位范围:"..rangeMin.."->"..rangeMax)
+
+ if cur >= rangeMax then
+ -- 超过进度条
+ return 1
+ elseif cur < rangeMin then
+ --低于进度条
+ return -1
+ elseif cur == rangeMin then
+ -- 进度最低值
+ return 0
+ else
+ -- 在进度条范围内
+ return (cur - rangeMin) / (rangeMax - rangeMin)
+ end
+end
+
+-- 获取当前可领奖or正在进行中的目标
+function CollectionHeroEntity:getCanGetOrCollectingTargetId()
+ for id, data in pairs(self:getRewardList()) do
+ if not self:isMeetTargetPoint(id) then
+ return id
+ end
+
+ if not self:isRewardReceived(id) then
+ return id
+ end
+ end
+ return nil
+end
+
+-- 获取收集目标点数
+function CollectionHeroEntity:getTargetPoint(id)
+ local targetPoint = self:getRewardList()[id].point
+ local lastTarget = self:getLastTarget(id)
+ if lastTarget then
+ return targetPoint - lastTarget.point
+ end
+ return targetPoint
+end
+
+-- 获取基于目标收集点数的当前收集值
+function CollectionHeroEntity:getTargetOwnedPoint(id)
+ local curPoint = self:getCurCollectPoint()
+ local lastTarget = self:getLastTarget(id)
+ if lastTarget then
+ return curPoint - lastTarget.point
+ end
+ return curPoint
+end
+
+-- 获取可领取收集值
+function CollectionHeroEntity:getCanCollectPoint(id)
+ -- 基础奖励值 * 升级可领取次数
+ -- 小于等于0为无点数,反之有可领取点数
+
+ local result = 0
+ local heroEntity = DataManager.HeroData:getHeroById(id)
+ if heroEntity then
+ local curLevel = heroEntity:getLv()
+ local collectedLevel = heroEntity:getCollectionLevel()
+ result = (curLevel - collectedLevel) * heroEntity:getCollectionPoint()
+ end
+ return result
+end
+
+-- 获取一级可领取收集值
+function CollectionHeroEntity:getOneLevelCanCollectPoint(id)
+ local heroEntity = DataManager.HeroData:getHeroById(id)
+ if heroEntity then
+ return heroEntity:getCollectionPoint()
+ end
+end
+
+-- 奖励是否已领取
+function CollectionHeroEntity:isRewardReceived(id)
+ return self.curlevel >= id
+end
+
+-- 是否满足奖励领取条件
+function CollectionHeroEntity:isMeetTargetPoint(id)
+ return self.curPoint >= self:getRewardList()[id].point
+end
+
+-- 领取收集点数成功
+function CollectionHeroEntity:onGetedPointSuccess(id, point)
+ DataManager.HeroData:getHeroById(id):updateCollectionLevel()
+ self.curPoint = point
+end
+
+-- 领取图鉴奖励成功
+function CollectionHeroEntity:onGetedPointRewardSuccess()
+ self.curlevel = self.curlevel + 1
+end
+
+-- 独有逻辑 -----------------------------------------------------------------------------------------------
+
+-- 获取档位范围最低值
+function CollectionHeroEntity:getTargetMinPoint(id)
+ local rangeMin = 0
+ local curPoint = self:getRewardList()[id].point
+ local lastTarget = self:getLastTarget(id)
+ if lastTarget then
+ rangeMin = curPoint - math.floor((curPoint - lastTarget.point) / 2)
+ end
+ return rangeMin
+end
+
+-- 获取档位范围最高值
+function CollectionHeroEntity:getTargetMaxPoint(id)
+ local rangeMax = 0
+ local curPoint = self:getRewardList()[id].point
+ local nextTarget = self:getNextTarget(id)
+ if nextTarget then
+ rangeMax = curPoint + math.floor((nextTarget.point - curPoint) / 2)
+ else
+ rangeMax = curPoint
+ end
+ return rangeMax
+end
+
+-- 获取上一个低档位
+function CollectionHeroEntity:getLastTarget(targetId)
+ local result = nil
+ for id, data in pairs(self:getRewardList()) do
+ if id == targetId then
+ return result
+ end
+ result = data
+ end
+end
+
+-- 获取下一个高档位
+function CollectionHeroEntity:getNextTarget(targetId)
+ local finded = false
+ for id, data in pairs(self:getRewardList()) do
+ if finded then
+ return data
+ end
+ if id == targetId then
+ finded = true
+ end
+ end
+end
+
+return CollectionHeroEntity
\ No newline at end of file
diff --git a/lua/app/userdata/collection/collection_hero_entity.lua.meta b/lua/app/userdata/collection/collection_hero_entity.lua.meta
new file mode 100644
index 00000000..28648d2d
--- /dev/null
+++ b/lua/app/userdata/collection/collection_hero_entity.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 5f7fd6b82afd7a447a1abafe52103641
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/userdata/hero/hero_data.lua b/lua/app/userdata/hero/hero_data.lua
index 7d77350f..e4c01d52 100644
--- a/lua/app/userdata/hero/hero_data.lua
+++ b/lua/app/userdata/hero/hero_data.lua
@@ -71,7 +71,7 @@ function HeroData:addHero(heroStruct)
end
function HeroData:getEntity(heroStruct)
- return HeroEntity:create(heroStruct.id, heroStruct.level)
+ return HeroEntity:create(heroStruct.id, heroStruct.level, heroStruct.collection_level)
end
function HeroData:getHeroById(id)
@@ -79,7 +79,7 @@ function HeroData:getHeroById(id)
return
end
if not self.heroes[id] then
- self.heroes[id] = self:getEntity({id = id, level = 0})
+ self.heroes[id] = self:getEntity({id = id, level = 0, collection_level = 0})
end
return self.heroes[id]
end
diff --git a/lua/app/userdata/hero/hero_entity.lua b/lua/app/userdata/hero/hero_entity.lua
index ee7a1867..fa9ad706 100644
--- a/lua/app/userdata/hero/hero_entity.lua
+++ b/lua/app/userdata/hero/hero_entity.lua
@@ -1,10 +1,11 @@
local HeroEntity = class("HeroEntity", BaseData)
local ATTR_NAME = GConst.BattleConst.ATTR_NAME
-function HeroEntity:ctor(cfgId, lv)
+function HeroEntity:ctor(cfgId, lv, collectionLevel)
self.id = cfgId
self.cfgId = cfgId
self.data.lv = lv
+ self.data.collectionLevel = collectionLevel
self.attrDirty = false
self.config = ConfigManager:getConfig("hero")[self.cfgId]
self.beginLv = self.config.begin_lv -- 初始等级
@@ -45,6 +46,16 @@ function HeroEntity:getLv()
return self.data.lv
end
+-- 获取英雄已领取图鉴点数的等级
+function HeroEntity:getCollectionLevel()
+ return self.data.collectionLevel
+end
+
+-- 更新英雄图鉴已领取等级
+function HeroEntity:updateCollectionLevel()
+ self.data.collectionLevel = self:getLv()
+end
+
function HeroEntity:getQlt()
return self.config.qlt
end
@@ -57,6 +68,11 @@ function HeroEntity:getMatchType()
return self.config.position
end
+-- 英雄每级可领取图鉴点数
+function HeroEntity:getCollectionPoint()
+ return self.config.collection_point
+end
+
function HeroEntity:setAttrDirty()
self.attrDirty = true
end